diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
index f92875a..0cefe11 100644
--- a/.github/copilot-instructions.md
+++ b/.github/copilot-instructions.md
@@ -5,6 +5,7 @@ Always reference these instructions first and fallback to search or bash command
## Working Effectively
### Environment Setup
+
- **Node.js**: MUST use version 22.14.0 (specified in `mobile-app/.nvmrc`)
- Install: `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash`
- Setup: `export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"`
@@ -17,19 +18,21 @@ Always reference these instructions first and fallback to search or bash command
### Bootstrap and Build Process
#### Complete OpenAPI Generation Workflow
+
- **NEVER CANCEL**: Full workflow takes ~3 minutes. Set timeout to 5+ minutes.
- Command: `./generate-openapi.sh` (from repository root)
- This script orchestrates:
1. Go dependencies installation (~20 seconds)
2. Swagger 2.0 generation via `swag init` (~1 second)
- 3. OpenAPI 3.0.3 conversion (~1 second)
- 4. npm install for mobile app (~2 minutes)
+ 3. npm install for mobile app (~2 minutes)
+ 4. OpenAPI 3.0.0 conversion (~1 second)
5. TypeScript schema generation (~1 second each)
6. Mock server validation (~1 second)
#### Go API Development
+
- **Dependencies**: `cd api && go mod tidy` (~20 seconds)
-- **Generate docs**: `cd api && swag init` (~1 second)
+- **Generate docs**: `cd api && swag init` (~1 second)
- **Build**: `cd api && go build -o api-server main.go` (~8 seconds)
- **Run**: `cd api && ./api-server` (starts on port 8080)
- **Test**: Available endpoints:
@@ -38,25 +41,28 @@ Always reference these instructions first and fallback to search or bash command
- Posts endpoints may fail in sandboxed environments (expected)
#### Mobile App Development
+
- **ALWAYS use Node.js 22.14.0**: `nvm use 22.14.0` before any npm commands
- **Dependencies**: `cd mobile-app && npm ci` (~15 seconds)
- **Development server**: `cd mobile-app && npx expo start` (~5 seconds to start)
- QR code for mobile testing
- Web development available but has known limitation with react-native-maps
-- **Schema generation**:
+- **Schema generation**:
- Example: `npm run gen-schema:example` (~1 second)
- API: `npm run gen-schema` (~1 second)
### Validation and Testing
#### Linting and Formatting - NEVER CANCEL: Run all before committing
+
- **Mobile app directory linting**: `cd mobile-app && npm run ls-lint` (~1 second)
-- **ESLint**: `cd mobile-app && npm run lint` (~4 seconds)
+- **ESLint**: `cd mobile-app && npm run lint` (~4 seconds)
- **Prettier check**: `cd mobile-app && npm run format:check` (~1 second)
- **TypeScript checking**: `cd mobile-app && npm run test:ts` (~4 seconds)
- **Root directory linting**: `npx @ls-lint/ls-lint` (~1 second)
#### Mock Server Testing
+
- **Start mock**: `cd mobile-app && npm run mock` (port 8080)
- **Test endpoints**:
- `curl http://localhost:8080/health` (returns {})
@@ -66,6 +72,7 @@ Always reference these instructions first and fallback to search or bash command
### Known Limitations and Workarounds
#### Web Build Limitation
+
- **Issue**: `expo export --platform web` fails due to react-native-maps importing native modules
- **Workaround**: This is expected behavior. App has platform-specific files:
- `maps.tsx` - Web fallback (displays text message)
@@ -73,6 +80,7 @@ Always reference these instructions first and fallback to search or bash command
- **Development**: Use `npx expo start` for mobile development (works perfectly)
#### External API Dependencies
+
- Posts endpoints (`/api/v1/posts`) depend on jsonplaceholder.typicode.com
- In sandboxed environments, these will return error responses (expected behavior)
- Health endpoint always works for testing API functionality
@@ -80,11 +88,13 @@ Always reference these instructions first and fallback to search or bash command
### Timeout Values and Timing Expectations
#### NEVER CANCEL - Critical Build Operations
+
- **Complete OpenAPI workflow**: 5+ minutes timeout (includes npm install)
- **npm ci**: 3+ minutes timeout (includes dependency resolution)
- **go mod tidy**: 2+ minutes timeout (first time, includes downloads)
#### Quick Operations (under 30 seconds)
+
- Individual linting/formatting checks: 30 seconds timeout
- Schema generation: 30 seconds timeout
- Go builds: 30 seconds timeout
@@ -93,6 +103,7 @@ Always reference these instructions first and fallback to search or bash command
### Manual Validation Scenarios
#### Complete API Workflow
+
1. Generate OpenAPI specs: `./generate-openapi.sh`
2. Start API server: `cd api && ./api-server`
3. Test health endpoint: `curl http://localhost:8080/api/v1/health`
@@ -100,7 +111,8 @@ Always reference these instructions first and fallback to search or bash command
5. Stop server and start mock: `cd mobile-app && npm run mock`
6. Test mock endpoints: `curl http://localhost:8080/posts`
-#### Complete Mobile App Workflow
+#### Complete Mobile App Workflow
+
1. Ensure Node.js 22.14.0: `nvm use 22.14.0`
2. Install dependencies: `cd mobile-app && npm ci`
3. Generate schemas: `npm run gen-schema:example && npm run gen-schema`
@@ -109,6 +121,7 @@ Always reference these instructions first and fallback to search or bash command
6. Verify QR code and mobile development options appear
### CI/CD Integration
+
- GitHub Actions configured with 60-minute timeouts (appropriate)
- Mobile app workflow: schema generation, linting, formatting, type checking
- Project workflow: OpenAPI generation and validation
@@ -117,6 +130,7 @@ Always reference these instructions first and fallback to search or bash command
### Important File Locations
#### Configuration Files
+
- `mobile-app/.nvmrc` - Required Node.js version (22.14.0)
- `mobile-app/package.json` - Mobile app dependencies and scripts
- `api/go.mod` - Go dependencies
@@ -124,12 +138,14 @@ Always reference these instructions first and fallback to search or bash command
- `generate-openapi.sh` - Complete OpenAPI workflow script
#### Generated Files (Do Not Edit)
+
- `api/docs/swagger.json` - Generated Swagger 2.0 specification
-- `openapi-specifications/api.swagger.json` - Generated OpenAPI 3.0.3 specification
+- `openapi-specifications/api.swagger.json` - Generated OpenAPI 3.0.0 specification
- `mobile-app/schema/api.d.ts` - Generated TypeScript definitions
- `mobile-app/schema/example.d.ts` - Generated example TypeScript definitions
#### Key Source Directories
+
- `api/` - Go API server with Gin framework
- `mobile-app/app/` - React Native app with Expo Router
- `mobile-app/components/` - Reusable UI components with Gluestack-UI
@@ -138,16 +154,19 @@ Always reference these instructions first and fallback to search or bash command
### Troubleshooting Common Issues
#### "Module not found" errors in mobile app
+
- Ensure Node.js 22.14.0: `nvm use 22.14.0`
- Regenerate schemas: `npm run gen-schema:example && npm run gen-schema`
- Clear cache: `npx expo start --clear`
#### Go build failures
+
- Generate swagger docs first: `cd api && swag init`
- Install swag tool: `go install github.com/swaggo/swag/cmd/swag@latest`
- Ensure PATH includes Go bin: `export PATH=$PATH:$(go env GOPATH)/bin`
#### Web bundle failures with react-native-maps
+
- This is expected behavior due to native module imports
- Use mobile development workflow instead: `npx expo start` (without web)
-- App automatically uses platform-specific map implementations
\ No newline at end of file
+- App automatically uses platform-specific map implementations
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..f92f84d
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,5 @@
+{
+ "cSpell.words": [
+ "charimachi"
+ ]
+}
\ No newline at end of file
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1c99a11
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+.PHONY: run
+
+run_api_dev:
+ cd api && go mod tidy && \
+ ( \
+ kill -9 $$(lsof -ti :8080 2>/dev/null) 2>/dev/null; \
+ trap 'echo "SIGINT received, killing server..."; kill -9 $$(lsof -ti tcp:8080 2>/dev/null) 2>/dev/null; exit' INT; \
+ go run . & \
+ sleep 2; \
+ (open http://localhost:8080/swagger/index.html || xdg-open http://localhost:8080/swagger/index.html); \
+ wait \
+ )
+
+
+run_mobile_app:
+ cd mobile-app && npm install && npm start
\ No newline at end of file
diff --git a/README.md b/README.md
index ff3ec02..fa904af 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,39 @@
-# ChariMachi
+# CHARIMACHI
-
+
+
+
+
+
+
+
+[動画](https://drive.google.com/file/d/1YiH47TsoH7ZssMZgoyyxL8HFdFj577jk/view?usp=sharing)
## 概要
-自転車の車道通行を目的とした適切なルート提案アプリ
+安全、快適な車道通行ルートを提案する 自転車専用ナビアプリ CHARIMACHI
+
+自転車利用者が安心して車道を走行できるよう支援するナビゲーションアプリを開発しました。自転車での移動を安全かつ快適に走行できるルートを検索・提示し、通行に適した道を優先的に案内します。さらに、交通安全に関する注意喚起として、事故が多発している場所や違反率が高い場所へのピン止めなどをすることで、事故や違反が身近にあるという認識を高め、車道通行の重要性理解を促進します。
+注意喚起をするだけのサービスでは、重要性を理解されていない方々への普及は難しいと考え、日常的につかうナビゲーションアプリとすることで、安全な走行環境を提供しつつ、自転車の車道通行を社会に定着させることを目指します。
+
+## なぜこのサービスを作るのか
+
+車道通行が根付かない要因として、事故や違反が身近にあるという認識が薄く、注意喚起を目にする機会も少ないため、その重要性を十分に理解していないこと、さらに安全に通行できない車道が存在し、安全・快適に自転車を走行できるルートが確認できないことにあると考えました。本サービスではこの二点の課題解決を目指します。
+
+### 安全かつ快適とはどのような道か
+
+- 自転車専用帯が確保されている
+- 歩道内に自転車帯が確保されている
+- 車道の幅が広い
+- 信号待ちの回数が少ない
+- 路駐・路停車が少ない
+- 大型車両の通行量が多くない
+
+(最後2項目は今回実装できないかもしれない要件)
## 機能
@@ -13,11 +42,13 @@
- 出発地・到着地の候補検索
- ルート描画
- 自転車専用帯優先
- - 取締強化交差点注意(オープンデータ)
- 信号まち回避
- 混雑車道回避
+ - 注意喚起
+ - 取締強化交差点注意(オープンデータ)
+ - 事故が多い地点(今回実装を見送る可能性あり)
- 経由地点表示
-- 動時間表示
+- 所要時間表示
- about画面・制作元・出典
- (駐輪所経由モード)
- (バス停回避モード)
@@ -26,28 +57,46 @@
### 自転車専用帯優先
-- [OpenStreetMap](https://www.openstreetmap.org/)
+- [OpenRouteService](https://openrouteservice.org)
### 取締強化交差点注意(オープンデータ)
- [東京都オープンデータカタログ - 交通規制情報](https://catalog.data.metro.tokyo.lg.jp/dataset/t000022d1700000024/resource/fb207998-df4c-434c-9280-1d7c2fbfdf1d)
+### 違反率別注意交差点(オープンデータ)
+
+- [交通量統計表](https://catalog.data.metro.tokyo.lg.jp/dataset/t000022d0000000035)
+
+ 事前にファイル読み込み
+
+ - [(偶数年調査)主要交差点(区部)](https://catalog.data.metro.tokyo.lg.jp/dataset/t000022d0000000035/resource/b315688c-ac19-4b0d-b4be-de6414af7666)
+
+ - [(偶数年調査)主要交差点(多摩部)](https://catalog.data.metro.tokyo.lg.jp/dataset/t000022d0000000035/resource/ddaaa1ac-0d4a-4406-9e7c-f6d66aa74c55)
+
+- [Overpass API](https://overpass-api.de/api/interpreter)
+
+ 交通量統計表の交差点ポイントを座標化
+
+
### 信号まち回避
-- [OpenStreetMap](https://www.openstreetmap.org/)
+- [OpenStreetMap](https://www.openstreetmap.org/) ?
### 混雑車道回避
-- [警視庁 - 交差点区部統計データ](https://www.keishicho.metro.tokyo.lg.jp/about_mpd/jokyo_tokei/tokei_jokyo/ryo.files/02_kousatenkubu_csv.zip)
-- [国土交通省 - 道路統計データ](https://www.mlit.go.jp/road/ir/ir-data/ir-data.html)
+- [警視庁 - 交差点区部統計データ](https://www.keishicho.metro.tokyo.lg.jp/about_mpd/jokyo_tokei/tokei_jokyo/ryo.files/02_kousatenkubu_csv.zip) ?
+- [国土交通省 - 道路統計データ](https://www.mlit.go.jp/road/ir/ir-data/ir-data.html) ?
### (駐輪所経由モード)
-- [東京都オープンデータカタログ - 駐輪場情報](https://catalog.data.metro.tokyo.lg.jp/dataset?q=title%3A+%E9%A7%90%E8%BC%AA%E5%A0%B4&sort=score+desc%2C+metadata_modified+desc)
+- [東京都オープンデータカタログ - 駐輪場情報](https://catalog.data.metro.tokyo.lg.jp/dataset?q=title%3A+%E9%A7%90%E8%BC%AA%E5%A0%B4&sort=score+desc%2C+metadata_modified+desc) ?
### (バス停回避モード)
- [公共交通オープンデータ - 都営バス停留所データ](https://ckan.odpt.org/dataset/b_busstop-toei/resource/f340278d-aefe-47ea-bc8f-15ebe48c286d)
+
+ 必要情報のみ抜き出し加工
+ CC BY 4.0(クレジット明示必要)
## 構成図
@@ -59,6 +108,8 @@ flowchart LR
GoServer <--元ルートデータ--> OpenRouteService
+
+ GoServer <--オープンデータ加工--> OpenData
ClientApp[クライアントアプリ(Expo)] --描画--> OSM[OpenStreetMap]
@@ -86,10 +137,6 @@ participant OSM as OpenStreetMap
---
-## template-mobile-app
-
-Templates for mobile app development.
-
### [mobile-app](./mobile-app)
This is a template for mobile app development using:
@@ -119,7 +166,7 @@ To generate the OpenAPI definitions, run the following command from the reposito
This script will:
1. Generate Swagger 2.0 documentation using `swag init` in the API directory
-2. Convert the Swagger 2.0 specification to OpenAPI 3.0.3 format
+2. Convert the Swagger 2.0 specification to OpenAPI 3.0.0 format
3. Place the result in `openapi-specifications/api.swagger.json`
4. Verify that React Native type generation and mock server commands work correctly
diff --git a/api/.gitignore b/api/.gitignore
index f6c0877..436162d 100644
--- a/api/.gitignore
+++ b/api/.gitignore
@@ -39,3 +39,5 @@ main
# generated files
docs
+
+.env
\ No newline at end of file
diff --git a/api/README.md b/api/README.md
index 16c77c4..895aad6 100644
--- a/api/README.md
+++ b/api/README.md
@@ -12,7 +12,7 @@ This is a template API implementation using Go and the Gin framework, with autom
- RESTful API endpoints
- Automatic Swagger/OpenAPI documentation
-- **Automated Swagger 2.0 to OpenAPI 3.0.3 conversion** (pure Go implementation)
+- **Automated Swagger 2.0 to OpenAPI 3.0.0 conversion** (pure Go implementation)
- CORS support
- Health check endpoint
- Example integration with external API (JSONPlaceholder)
@@ -49,7 +49,7 @@ This is a template API implementation using Go and the Gin framework, with autom
### Running the API
-1. Generate OpenAPI 3.0.3 documentation:
+1. Generate OpenAPI 3.0.0 documentation:
```bash
# From repository root directory
./generate-openapi.sh
@@ -57,7 +57,11 @@ This is a template API implementation using Go and the Gin framework, with autom
2. Start the server:
```bash
- go run main.go
+ # Manually from the api directory
+ go run .
+
+ # Makefile from root directory
+ make run_api_dev
```
The API will be available at `http://localhost:8080`
@@ -65,26 +69,29 @@ The API will be available at `http://localhost:8080`
### API Endpoints
- `GET /api/v1/health` - Health check
-- `GET /api/v1/posts` - Get all posts from JSONPlaceholder
-- `GET /api/v1/posts/{id}` - Get a specific post by ID
+- `GET /api/v1/posts` - (Sample) Get all posts from JSONPlaceholder
+- `GET /api/v1/posts/{id}` - (Sample) Get a specific post by ID
- `GET /swagger/index.html` - Swagger UI documentation
+- `POST /api/v1/directions/bicycle` - 自転車ルート検索
+- `GET /api/v1/search?q={検索キーワード}` - 目的地候補取得
+ - ここから取得 https://wiki.openstreetmap.org/wiki/JA:Nominatim
### Swagger Documentation
The API automatically generates OpenAPI/Swagger documentation through the following workflow:
1. **Swagger 2.0 Generation**: `swag init` generates Swagger 2.0 format in `docs/swagger.json`
-2. **Conversion to OpenAPI 3.0.3**: A Go converter transforms it to OpenAPI 3.0.3 format
+2. **Conversion to OpenAPI 3.0.0**: A Go converter transforms it to OpenAPI 3.0.0 format
3. **Output**: Final specification is placed in `../openapi-specifications/api.swagger.json`
The documentation is:
- Served at `/swagger/index.html` when the server is running (Swagger 2.0 format)
-- Available as OpenAPI 3.0.3 in `../openapi-specifications/api.swagger.json` for tooling
+- Available as OpenAPI 3.0.0 in `../openapi-specifications/api.swagger.json` for tooling
### Development
-To regenerate OpenAPI 3.0.3 documentation after making changes:
+To regenerate OpenAPI 3.0.0 documentation after making changes:
**Complete workflow (Recommended):**
@@ -96,9 +103,7 @@ To regenerate OpenAPI 3.0.3 documentation after making changes:
This script will:
1. Run `swag init` to generate Swagger 2.0 documentation in `api/docs/`
-2. Convert Swagger 2.0 to OpenAPI 3.0.3 format using a Go converter
-3. Place the result in `openapi-specifications/api.swagger.json`
-4. Test that `npm run gen-schema` and `npm run mock` work correctly
+2. Test that `npm run gen-schema` and `npm run mock` work correctly
**Manual steps:**
@@ -106,10 +111,7 @@ This script will:
# 1. Generate Swagger 2.0
cd api && swag init && cd ..
-# 2. Convert to OpenAPI 3.0.3
-go run convert-swagger.go
-
-# 3. Test React Native tooling
+# 2. Test React Native tooling
cd mobile-app
npm run gen-schema # Generate TypeScript definitions
npm run mock # Start mock server on port 3001
diff --git a/api/data/bus_stops.json b/api/data/bus_stops.json
new file mode 100644
index 0000000..fb3a0bf
--- /dev/null
+++ b/api/data/bus_stops.json
@@ -0,0 +1,103462 @@
+[
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoRokuchome.993.2",
+ "name": "東陽六丁目",
+ "latitude": 35.675119,
+ "longitude": 139.812199,
+ "polygon": [
+ [
+ 139.8120891098901,
+ 35.67520909009009
+ ],
+ [
+ 139.81230889010988,
+ 35.67520909009009
+ ],
+ [
+ 139.81230889010988,
+ 35.67502890990991
+ ],
+ [
+ 139.8120891098901,
+ 35.67502890990991
+ ],
+ [
+ 139.8120891098901,
+ 35.67520909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.2",
+ "name": "池袋駅東口",
+ "latitude": 35.729054,
+ "longitude": 139.712241,
+ "polygon": [
+ [
+ 139.71213110989012,
+ 35.72914409009009
+ ],
+ [
+ 139.7123508901099,
+ 35.72914409009009
+ ],
+ [
+ 139.7123508901099,
+ 35.72896390990991
+ ],
+ [
+ 139.71213110989012,
+ 35.72896390990991
+ ],
+ [
+ 139.71213110989012,
+ 35.72914409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Otakibashi.282.1",
+ "name": "小滝橋",
+ "latitude": 35.709997,
+ "longitude": 139.694521,
+ "polygon": [
+ [
+ 139.69441110989013,
+ 35.71008709009009
+ ],
+ [
+ 139.6946308901099,
+ 35.71008709009009
+ ],
+ [
+ 139.6946308901099,
+ 35.70990690990991
+ ],
+ [
+ 139.69441110989013,
+ 35.70990690990991
+ ],
+ [
+ 139.69441110989013,
+ 35.71008709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaAoyamaItchomeApato.10.2",
+ "name": "北青山一丁目アパート前",
+ "latitude": 35.674876,
+ "longitude": 139.721992,
+ "polygon": [
+ [
+ 139.72188210989012,
+ 35.67496609009009
+ ],
+ [
+ 139.72210189010988,
+ 35.67496609009009
+ ],
+ [
+ 139.72210189010988,
+ 35.67478590990991
+ ],
+ [
+ 139.72188210989012,
+ 35.67478590990991
+ ],
+ [
+ 139.72188210989012,
+ 35.67496609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaSanchome.5.1",
+ "name": "渋谷三丁目",
+ "latitude": 35.658472,
+ "longitude": 139.707404,
+ "polygon": [
+ [
+ 139.7072941098901,
+ 35.65856209009009
+ ],
+ [
+ 139.70751389010988,
+ 35.65856209009009
+ ],
+ [
+ 139.70751389010988,
+ 35.65838190990991
+ ],
+ [
+ 139.7072941098901,
+ 35.65838190990991
+ ],
+ [
+ 139.7072941098901,
+ 35.65856209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AiikuClinic.1.1",
+ "name": "愛育クリニック前",
+ "latitude": 35.653697,
+ "longitude": 139.726017,
+ "polygon": [
+ [
+ 139.72590710989013,
+ 35.65378709009009
+ ],
+ [
+ 139.7261268901099,
+ 35.65378709009009
+ ],
+ [
+ 139.7261268901099,
+ 35.65360690990991
+ ],
+ [
+ 139.72590710989013,
+ 35.65360690990991
+ ],
+ [
+ 139.72590710989013,
+ 35.65378709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AiikuClinic.1.2",
+ "name": "愛育クリニック前",
+ "latitude": 35.654095,
+ "longitude": 139.726541,
+ "polygon": [
+ [
+ 139.72643110989011,
+ 35.65418509009009
+ ],
+ [
+ 139.72665089010988,
+ 35.65418509009009
+ ],
+ [
+ 139.72665089010988,
+ 35.65400490990991
+ ],
+ [
+ 139.72643110989011,
+ 35.65400490990991
+ ],
+ [
+ 139.72643110989011,
+ 35.65418509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AotoShako.3.1",
+ "name": "青戸車庫前",
+ "latitude": 35.744787,
+ "longitude": 139.843847,
+ "polygon": [
+ [
+ 139.84373710989013,
+ 35.74487709009009
+ ],
+ [
+ 139.8439568901099,
+ 35.74487709009009
+ ],
+ [
+ 139.8439568901099,
+ 35.74469690990991
+ ],
+ [
+ 139.84373710989013,
+ 35.74469690990991
+ ],
+ [
+ 139.84373710989013,
+ 35.74487709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AotoShako.3.2",
+ "name": "青戸車庫前",
+ "latitude": 35.745259,
+ "longitude": 139.844403,
+ "polygon": [
+ [
+ 139.84429310989012,
+ 35.74534909009009
+ ],
+ [
+ 139.84451289010988,
+ 35.74534909009009
+ ],
+ [
+ 139.84451289010988,
+ 35.74516890990991
+ ],
+ [
+ 139.84429310989012,
+ 35.74516890990991
+ ],
+ [
+ 139.84429310989012,
+ 35.74534909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AotoShako.3.3",
+ "name": "青戸車庫前",
+ "latitude": 35.743838,
+ "longitude": 139.84335,
+ "polygon": [
+ [
+ 139.8432401098901,
+ 35.74392809009009
+ ],
+ [
+ 139.84345989010987,
+ 35.74392809009009
+ ],
+ [
+ 139.84345989010987,
+ 35.74374790990991
+ ],
+ [
+ 139.8432401098901,
+ 35.74374790990991
+ ],
+ [
+ 139.8432401098901,
+ 35.74392809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkadoShogakko.19.2",
+ "name": "赤土小学校前",
+ "latitude": 35.74215,
+ "longitude": 139.768823,
+ "polygon": [
+ [
+ 139.76871310989011,
+ 35.74224009009009
+ ],
+ [
+ 139.76893289010988,
+ 35.74224009009009
+ ],
+ [
+ 139.76893289010988,
+ 35.74205990990991
+ ],
+ [
+ 139.76871310989011,
+ 35.74205990990991
+ ],
+ [
+ 139.76871310989011,
+ 35.74224009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AomonoYokocho.4.1",
+ "name": "青物横丁",
+ "latitude": 35.608974,
+ "longitude": 139.741666,
+ "polygon": [
+ [
+ 139.74155610989013,
+ 35.609064090090094
+ ],
+ [
+ 139.7417758901099,
+ 35.609064090090094
+ ],
+ [
+ 139.7417758901099,
+ 35.60888390990991
+ ],
+ [
+ 139.74155610989013,
+ 35.60888390990991
+ ],
+ [
+ 139.74155610989013,
+ 35.609064090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AomonoYokocho.4.2",
+ "name": "青物横丁",
+ "latitude": 35.610292,
+ "longitude": 139.74317,
+ "polygon": [
+ [
+ 139.7430601098901,
+ 35.61038209009009
+ ],
+ [
+ 139.74327989010987,
+ 35.61038209009009
+ ],
+ [
+ 139.74327989010987,
+ 35.61020190990991
+ ],
+ [
+ 139.7430601098901,
+ 35.61020190990991
+ ],
+ [
+ 139.7430601098901,
+ 35.61038209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaSanchome.5.2",
+ "name": "渋谷三丁目",
+ "latitude": 35.658075,
+ "longitude": 139.707523,
+ "polygon": [
+ [
+ 139.70741310989013,
+ 35.65816509009009
+ ],
+ [
+ 139.7076328901099,
+ 35.65816509009009
+ ],
+ [
+ 139.7076328901099,
+ 35.657984909909906
+ ],
+ [
+ 139.70741310989013,
+ 35.657984909909906
+ ],
+ [
+ 139.70741310989013,
+ 35.65816509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaSanchome.5.3",
+ "name": "渋谷三丁目",
+ "latitude": 35.658091,
+ "longitude": 139.707973,
+ "polygon": [
+ [
+ 139.70786310989013,
+ 35.65818109009009
+ ],
+ [
+ 139.7080828901099,
+ 35.65818109009009
+ ],
+ [
+ 139.7080828901099,
+ 35.65800090990991
+ ],
+ [
+ 139.70786310989013,
+ 35.65800090990991
+ ],
+ [
+ 139.70786310989013,
+ 35.65818109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamagakuinShotobu.6.1",
+ "name": "青山学院初等部前",
+ "latitude": 35.657698,
+ "longitude": 139.710593,
+ "polygon": [
+ [
+ 139.7104831098901,
+ 35.657788090090094
+ ],
+ [
+ 139.71070289010987,
+ 35.657788090090094
+ ],
+ [
+ 139.71070289010987,
+ 35.65760790990991
+ ],
+ [
+ 139.7104831098901,
+ 35.65760790990991
+ ],
+ [
+ 139.7104831098901,
+ 35.657788090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Asakusabashi.36.5",
+ "name": "浅草橋",
+ "latitude": 35.694918,
+ "longitude": 139.783205,
+ "polygon": [
+ [
+ 139.78309510989013,
+ 35.69500809009009
+ ],
+ [
+ 139.7833148901099,
+ 35.69500809009009
+ ],
+ [
+ 139.7833148901099,
+ 35.69482790990991
+ ],
+ [
+ 139.78309510989013,
+ 35.69482790990991
+ ],
+ [
+ 139.78309510989013,
+ 35.69500809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamagakuinShotobu.6.2",
+ "name": "青山学院初等部前",
+ "latitude": 35.657636,
+ "longitude": 139.711813,
+ "polygon": [
+ [
+ 139.71170310989012,
+ 35.65772609009009
+ ],
+ [
+ 139.7119228901099,
+ 35.65772609009009
+ ],
+ [
+ 139.7119228901099,
+ 35.657545909909906
+ ],
+ [
+ 139.71170310989012,
+ 35.657545909909906
+ ],
+ [
+ 139.71170310989012,
+ 35.65772609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamagakuinChutobu.7.1",
+ "name": "青山学院中等部前",
+ "latitude": 35.658995,
+ "longitude": 139.713843,
+ "polygon": [
+ [
+ 139.71373310989011,
+ 35.65908509009009
+ ],
+ [
+ 139.71395289010988,
+ 35.65908509009009
+ ],
+ [
+ 139.71395289010988,
+ 35.65890490990991
+ ],
+ [
+ 139.71373310989011,
+ 35.65890490990991
+ ],
+ [
+ 139.71373310989011,
+ 35.65908509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaAoyamaItchomeApato.10.1",
+ "name": "北青山一丁目アパート前",
+ "latitude": 35.675023,
+ "longitude": 139.722286,
+ "polygon": [
+ [
+ 139.7221761098901,
+ 35.67511309009009
+ ],
+ [
+ 139.72239589010988,
+ 35.67511309009009
+ ],
+ [
+ 139.72239589010988,
+ 35.67493290990991
+ ],
+ [
+ 139.7221761098901,
+ 35.67493290990991
+ ],
+ [
+ 139.7221761098901,
+ 35.67511309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamagakuinChutobu.7.2",
+ "name": "青山学院中等部前",
+ "latitude": 35.658706,
+ "longitude": 139.71349,
+ "polygon": [
+ [
+ 139.71338010989012,
+ 35.65879609009009
+ ],
+ [
+ 139.7135998901099,
+ 35.65879609009009
+ ],
+ [
+ 139.7135998901099,
+ 35.65861590990991
+ ],
+ [
+ 139.71338010989012,
+ 35.65861590990991
+ ],
+ [
+ 139.71338010989012,
+ 35.65879609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Aoyamagakuin.8.1",
+ "name": "青山学院前",
+ "latitude": 35.662088,
+ "longitude": 139.708771,
+ "polygon": [
+ [
+ 139.70866110989013,
+ 35.66217809009009
+ ],
+ [
+ 139.7088808901099,
+ 35.66217809009009
+ ],
+ [
+ 139.7088808901099,
+ 35.66199790990991
+ ],
+ [
+ 139.70866110989013,
+ 35.66199790990991
+ ],
+ [
+ 139.70866110989013,
+ 35.66217809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Aoyamagakuin.8.2",
+ "name": "青山学院前",
+ "latitude": 35.662214,
+ "longitude": 139.709503,
+ "polygon": [
+ [
+ 139.70939310989013,
+ 35.66230409009009
+ ],
+ [
+ 139.7096128901099,
+ 35.66230409009009
+ ],
+ [
+ 139.7096128901099,
+ 35.66212390990991
+ ],
+ [
+ 139.70939310989013,
+ 35.66212390990991
+ ],
+ [
+ 139.70939310989013,
+ 35.66230409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaSaijo.9.1",
+ "name": "青山斎場",
+ "latitude": 35.667594,
+ "longitude": 139.724322,
+ "polygon": [
+ [
+ 139.72421210989012,
+ 35.66768409009009
+ ],
+ [
+ 139.72443189010988,
+ 35.66768409009009
+ ],
+ [
+ 139.72443189010988,
+ 35.66750390990991
+ ],
+ [
+ 139.72421210989012,
+ 35.66750390990991
+ ],
+ [
+ 139.72421210989012,
+ 35.66768409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaSaijo.9.2",
+ "name": "青山斎場",
+ "latitude": 35.666688,
+ "longitude": 139.724266,
+ "polygon": [
+ [
+ 139.72415610989012,
+ 35.66677809009009
+ ],
+ [
+ 139.72437589010988,
+ 35.66677809009009
+ ],
+ [
+ 139.72437589010988,
+ 35.66659790990991
+ ],
+ [
+ 139.72415610989012,
+ 35.66659790990991
+ ],
+ [
+ 139.72415610989012,
+ 35.66677809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaRikkyoShita.11.1",
+ "name": "青山陸橋下",
+ "latitude": 35.664645,
+ "longitude": 139.72035,
+ "polygon": [
+ [
+ 139.7202401098901,
+ 35.66473509009009
+ ],
+ [
+ 139.72045989010988,
+ 35.66473509009009
+ ],
+ [
+ 139.72045989010988,
+ 35.66455490990991
+ ],
+ [
+ 139.7202401098901,
+ 35.66455490990991
+ ],
+ [
+ 139.7202401098901,
+ 35.66473509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaRikkyoShita.11.2",
+ "name": "青山陸橋下",
+ "latitude": 35.664659,
+ "longitude": 139.720601,
+ "polygon": [
+ [
+ 139.7204911098901,
+ 35.66474909009009
+ ],
+ [
+ 139.72071089010987,
+ 35.66474909009009
+ ],
+ [
+ 139.72071089010987,
+ 35.66456890990991
+ ],
+ [
+ 139.7204911098901,
+ 35.66456890990991
+ ],
+ [
+ 139.7204911098901,
+ 35.66474909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkasakaArkHills.16.2",
+ "name": "赤坂アークヒルズ前",
+ "latitude": 35.667871,
+ "longitude": 139.740116,
+ "polygon": [
+ [
+ 139.74000610989012,
+ 35.66796109009009
+ ],
+ [
+ 139.74022589010988,
+ 35.66796109009009
+ ],
+ [
+ 139.74022589010988,
+ 35.66778090990991
+ ],
+ [
+ 139.74000610989012,
+ 35.66778090990991
+ ],
+ [
+ 139.74000610989012,
+ 35.66796109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaItchomeStation.12.1",
+ "name": "青山一丁目駅前",
+ "latitude": 35.673943,
+ "longitude": 139.723591,
+ "polygon": [
+ [
+ 139.72348110989012,
+ 35.67403309009009
+ ],
+ [
+ 139.72370089010988,
+ 35.67403309009009
+ ],
+ [
+ 139.72370089010988,
+ 35.67385290990991
+ ],
+ [
+ 139.72348110989012,
+ 35.67385290990991
+ ],
+ [
+ 139.72348110989012,
+ 35.67403309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaItchomeStation.12.2",
+ "name": "青山一丁目駅前",
+ "latitude": 35.673926,
+ "longitude": 139.723292,
+ "polygon": [
+ [
+ 139.7231821098901,
+ 35.67401609009009
+ ],
+ [
+ 139.72340189010987,
+ 35.67401609009009
+ ],
+ [
+ 139.72340189010987,
+ 35.67383590990991
+ ],
+ [
+ 139.7231821098901,
+ 35.67383590990991
+ ],
+ [
+ 139.7231821098901,
+ 35.67401609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaItchomeStation.12.3",
+ "name": "青山一丁目駅前",
+ "latitude": 35.672985,
+ "longitude": 139.725326,
+ "polygon": [
+ [
+ 139.7252161098901,
+ 35.67307509009009
+ ],
+ [
+ 139.72543589010988,
+ 35.67307509009009
+ ],
+ [
+ 139.72543589010988,
+ 35.67289490990991
+ ],
+ [
+ 139.7252161098901,
+ 35.67289490990991
+ ],
+ [
+ 139.7252161098901,
+ 35.67307509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaItchomeStation.12.4",
+ "name": "青山一丁目駅前",
+ "latitude": 35.672055,
+ "longitude": 139.725412,
+ "polygon": [
+ [
+ 139.72530210989012,
+ 35.67214509009009
+ ],
+ [
+ 139.7255218901099,
+ 35.67214509009009
+ ],
+ [
+ 139.7255218901099,
+ 35.67196490990991
+ ],
+ [
+ 139.72530210989012,
+ 35.67196490990991
+ ],
+ [
+ 139.72530210989012,
+ 35.67214509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaIkiikiPlazaIriguchi.14.1",
+ "name": "青山いきいきプラザ入口",
+ "latitude": 35.671337,
+ "longitude": 139.724662,
+ "polygon": [
+ [
+ 139.7245521098901,
+ 35.67142709009009
+ ],
+ [
+ 139.72477189010988,
+ 35.67142709009009
+ ],
+ [
+ 139.72477189010988,
+ 35.67124690990991
+ ],
+ [
+ 139.7245521098901,
+ 35.67124690990991
+ ],
+ [
+ 139.7245521098901,
+ 35.67142709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AoyamaIkiikiPlazaIriguchi.14.2",
+ "name": "青山いきいきプラザ入口",
+ "latitude": 35.669485,
+ "longitude": 139.723583,
+ "polygon": [
+ [
+ 139.7234731098901,
+ 35.66957509009009
+ ],
+ [
+ 139.72369289010987,
+ 35.66957509009009
+ ],
+ [
+ 139.72369289010987,
+ 35.66939490990991
+ ],
+ [
+ 139.7234731098901,
+ 35.66939490990991
+ ],
+ [
+ 139.7234731098901,
+ 35.66957509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkasakaArkHills.16.3",
+ "name": "赤坂アークヒルズ前",
+ "latitude": 35.668011,
+ "longitude": 139.739665,
+ "polygon": [
+ [
+ 139.73955510989012,
+ 35.66810109009009
+ ],
+ [
+ 139.73977489010989,
+ 35.66810109009009
+ ],
+ [
+ 139.73977489010989,
+ 35.66792090990991
+ ],
+ [
+ 139.73955510989012,
+ 35.66792090990991
+ ],
+ [
+ 139.73955510989012,
+ 35.66810109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Akashicho.18.1",
+ "name": "明石町",
+ "latitude": 35.668886,
+ "longitude": 139.77859,
+ "polygon": [
+ [
+ 139.77848010989013,
+ 35.66897609009009
+ ],
+ [
+ 139.7786998901099,
+ 35.66897609009009
+ ],
+ [
+ 139.7786998901099,
+ 35.66879590990991
+ ],
+ [
+ 139.77848010989013,
+ 35.66879590990991
+ ],
+ [
+ 139.77848010989013,
+ 35.66897609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IwakuraOnsen.125.1",
+ "name": "岩蔵温泉",
+ "latitude": 35.826436,
+ "longitude": 139.289852,
+ "polygon": [
+ [
+ 139.2897421098901,
+ 35.82652609009009
+ ],
+ [
+ 139.28996189010988,
+ 35.82652609009009
+ ],
+ [
+ 139.28996189010988,
+ 35.82634590990991
+ ],
+ [
+ 139.2897421098901,
+ 35.82634590990991
+ ],
+ [
+ 139.2897421098901,
+ 35.82652609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Akashicho.18.2",
+ "name": "明石町",
+ "latitude": 35.668488,
+ "longitude": 139.778642,
+ "polygon": [
+ [
+ 139.7785321098901,
+ 35.668578090090094
+ ],
+ [
+ 139.77875189010987,
+ 35.668578090090094
+ ],
+ [
+ 139.77875189010987,
+ 35.66839790990991
+ ],
+ [
+ 139.7785321098901,
+ 35.66839790990991
+ ],
+ [
+ 139.7785321098901,
+ 35.668578090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkadoShogakko.19.1",
+ "name": "赤土小学校前",
+ "latitude": 35.743067,
+ "longitude": 139.769147,
+ "polygon": [
+ [
+ 139.76903710989012,
+ 35.743157090090094
+ ],
+ [
+ 139.7692568901099,
+ 35.743157090090094
+ ],
+ [
+ 139.7692568901099,
+ 35.74297690990991
+ ],
+ [
+ 139.76903710989012,
+ 35.74297690990991
+ ],
+ [
+ 139.76903710989012,
+ 35.743157090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaNanachome.44.1",
+ "name": "浅草七丁目",
+ "latitude": 35.718098,
+ "longitude": 139.801738,
+ "polygon": [
+ [
+ 139.80162810989012,
+ 35.71818809009009
+ ],
+ [
+ 139.80184789010988,
+ 35.71818809009009
+ ],
+ [
+ 139.80184789010988,
+ 35.71800790990991
+ ],
+ [
+ 139.80162810989012,
+ 35.71800790990991
+ ],
+ [
+ 139.80162810989012,
+ 35.71818809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Akanita.20.1",
+ "name": "赤仁田",
+ "latitude": 35.818458,
+ "longitude": 139.237546,
+ "polygon": [
+ [
+ 139.23743610989013,
+ 35.81854809009009
+ ],
+ [
+ 139.2376558901099,
+ 35.81854809009009
+ ],
+ [
+ 139.2376558901099,
+ 35.81836790990991
+ ],
+ [
+ 139.23743610989013,
+ 35.81836790990991
+ ],
+ [
+ 139.23743610989013,
+ 35.81854809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Akanita.20.2",
+ "name": "赤仁田",
+ "latitude": 35.818624,
+ "longitude": 139.238062,
+ "polygon": [
+ [
+ 139.23795210989013,
+ 35.81871409009009
+ ],
+ [
+ 139.2381718901099,
+ 35.81871409009009
+ ],
+ [
+ 139.2381718901099,
+ 35.81853390990991
+ ],
+ [
+ 139.23795210989013,
+ 35.81853390990991
+ ],
+ [
+ 139.23795210989013,
+ 35.81871409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkabaneStationHigashiguchi.21.1",
+ "name": "赤羽駅東口",
+ "latitude": 35.779103,
+ "longitude": 139.721572,
+ "polygon": [
+ [
+ 139.72146210989013,
+ 35.77919309009009
+ ],
+ [
+ 139.7216818901099,
+ 35.77919309009009
+ ],
+ [
+ 139.7216818901099,
+ 35.77901290990991
+ ],
+ [
+ 139.72146210989013,
+ 35.77901290990991
+ ],
+ [
+ 139.72146210989013,
+ 35.77919309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkabanebashiStation.22.5",
+ "name": "赤羽橋駅前",
+ "latitude": 35.654355,
+ "longitude": 139.74427,
+ "polygon": [
+ [
+ 139.74416010989012,
+ 35.65444509009009
+ ],
+ [
+ 139.74437989010988,
+ 35.65444509009009
+ ],
+ [
+ 139.74437989010988,
+ 35.65426490990991
+ ],
+ [
+ 139.74416010989012,
+ 35.65426490990991
+ ],
+ [
+ 139.74416010989012,
+ 35.65444509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkabanebashiStation.22.6",
+ "name": "赤羽橋駅前",
+ "latitude": 35.654181,
+ "longitude": 139.744159,
+ "polygon": [
+ [
+ 139.7440491098901,
+ 35.65427109009009
+ ],
+ [
+ 139.74426889010988,
+ 35.65427109009009
+ ],
+ [
+ 139.74426889010988,
+ 35.65409090990991
+ ],
+ [
+ 139.7440491098901,
+ 35.65409090990991
+ ],
+ [
+ 139.7440491098901,
+ 35.65427109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkabanebashiStation.22.7",
+ "name": "赤羽橋駅前",
+ "latitude": 35.654228,
+ "longitude": 139.743781,
+ "polygon": [
+ [
+ 139.74367110989013,
+ 35.654318090090094
+ ],
+ [
+ 139.7438908901099,
+ 35.654318090090094
+ ],
+ [
+ 139.7438908901099,
+ 35.65413790990991
+ ],
+ [
+ 139.74367110989013,
+ 35.65413790990991
+ ],
+ [
+ 139.74367110989013,
+ 35.654318090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkabaneNichome.23.1",
+ "name": "赤羽二丁目",
+ "latitude": 35.782227,
+ "longitude": 139.722378,
+ "polygon": [
+ [
+ 139.7222681098901,
+ 35.78231709009009
+ ],
+ [
+ 139.72248789010987,
+ 35.78231709009009
+ ],
+ [
+ 139.72248789010987,
+ 35.78213690990991
+ ],
+ [
+ 139.7222681098901,
+ 35.78213690990991
+ ],
+ [
+ 139.7222681098901,
+ 35.78231709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkabaneNichome.23.2",
+ "name": "赤羽二丁目",
+ "latitude": 35.782832,
+ "longitude": 139.722613,
+ "polygon": [
+ [
+ 139.7225031098901,
+ 35.78292209009009
+ ],
+ [
+ 139.72272289010988,
+ 35.78292209009009
+ ],
+ [
+ 139.72272289010988,
+ 35.78274190990991
+ ],
+ [
+ 139.7225031098901,
+ 35.78274190990991
+ ],
+ [
+ 139.7225031098901,
+ 35.78292209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Akafudo.24.1",
+ "name": "赤不動",
+ "latitude": 35.763812,
+ "longitude": 139.792639,
+ "polygon": [
+ [
+ 139.79252910989013,
+ 35.76390209009009
+ ],
+ [
+ 139.7927488901099,
+ 35.76390209009009
+ ],
+ [
+ 139.7927488901099,
+ 35.76372190990991
+ ],
+ [
+ 139.79252910989013,
+ 35.76372190990991
+ ],
+ [
+ 139.79252910989013,
+ 35.76390209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Akafudo.24.2",
+ "name": "赤不動",
+ "latitude": 35.76362,
+ "longitude": 139.792509,
+ "polygon": [
+ [
+ 139.7923991098901,
+ 35.76371009009009
+ ],
+ [
+ 139.79261889010988,
+ 35.76371009009009
+ ],
+ [
+ 139.79261889010988,
+ 35.76352990990991
+ ],
+ [
+ 139.7923991098901,
+ 35.76352990990991
+ ],
+ [
+ 139.7923991098901,
+ 35.76371009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkihabaraStation.27.1",
+ "name": "秋葉原駅前",
+ "latitude": 35.69908,
+ "longitude": 139.773688,
+ "polygon": [
+ [
+ 139.7735781098901,
+ 35.69917009009009
+ ],
+ [
+ 139.77379789010988,
+ 35.69917009009009
+ ],
+ [
+ 139.77379789010988,
+ 35.69898990990991
+ ],
+ [
+ 139.7735781098901,
+ 35.69898990990991
+ ],
+ [
+ 139.7735781098901,
+ 35.69917009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkihabaraStation.27.4",
+ "name": "秋葉原駅前",
+ "latitude": 35.698846,
+ "longitude": 139.773649,
+ "polygon": [
+ [
+ 139.77353910989012,
+ 35.69893609009009
+ ],
+ [
+ 139.7737588901099,
+ 35.69893609009009
+ ],
+ [
+ 139.7737588901099,
+ 35.69875590990991
+ ],
+ [
+ 139.77353910989012,
+ 35.69875590990991
+ ],
+ [
+ 139.77353910989012,
+ 35.69893609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Akebonobashi.28.1",
+ "name": "曙橋",
+ "latitude": 35.69208,
+ "longitude": 139.720904,
+ "polygon": [
+ [
+ 139.7207941098901,
+ 35.69217009009009
+ ],
+ [
+ 139.72101389010987,
+ 35.69217009009009
+ ],
+ [
+ 139.72101389010987,
+ 35.69198990990991
+ ],
+ [
+ 139.7207941098901,
+ 35.69198990990991
+ ],
+ [
+ 139.7207941098901,
+ 35.69217009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Akebonobashi.28.2",
+ "name": "曙橋",
+ "latitude": 35.692515,
+ "longitude": 139.721886,
+ "polygon": [
+ [
+ 139.72177610989013,
+ 35.69260509009009
+ ],
+ [
+ 139.7219958901099,
+ 35.69260509009009
+ ],
+ [
+ 139.7219958901099,
+ 35.69242490990991
+ ],
+ [
+ 139.72177610989013,
+ 35.69242490990991
+ ],
+ [
+ 139.72177610989013,
+ 35.69260509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsagayaStation.29.1",
+ "name": "阿佐ヶ谷駅前",
+ "latitude": 35.704467,
+ "longitude": 139.636422,
+ "polygon": [
+ [
+ 139.63631210989013,
+ 35.70455709009009
+ ],
+ [
+ 139.6365318901099,
+ 35.70455709009009
+ ],
+ [
+ 139.6365318901099,
+ 35.70437690990991
+ ],
+ [
+ 139.63631210989013,
+ 35.70437690990991
+ ],
+ [
+ 139.63631210989013,
+ 35.70455709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsagayaMinamiItchome.30.1",
+ "name": "阿佐ヶ谷南一丁目",
+ "latitude": 35.701366,
+ "longitude": 139.636037,
+ "polygon": [
+ [
+ 139.6359271098901,
+ 35.70145609009009
+ ],
+ [
+ 139.63614689010987,
+ 35.70145609009009
+ ],
+ [
+ 139.63614689010987,
+ 35.70127590990991
+ ],
+ [
+ 139.6359271098901,
+ 35.70127590990991
+ ],
+ [
+ 139.6359271098901,
+ 35.70145609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsagayaMinamiItchome.30.2",
+ "name": "阿佐ヶ谷南一丁目",
+ "latitude": 35.702041,
+ "longitude": 139.636018,
+ "polygon": [
+ [
+ 139.63590810989012,
+ 35.70213109009009
+ ],
+ [
+ 139.6361278901099,
+ 35.70213109009009
+ ],
+ [
+ 139.6361278901099,
+ 35.70195090990991
+ ],
+ [
+ 139.63590810989012,
+ 35.70195090990991
+ ],
+ [
+ 139.63590810989012,
+ 35.70213109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKaminarimon.32.1",
+ "name": "浅草雷門",
+ "latitude": 35.711106,
+ "longitude": 139.79535,
+ "polygon": [
+ [
+ 139.79524010989013,
+ 35.71119609009009
+ ],
+ [
+ 139.7954598901099,
+ 35.71119609009009
+ ],
+ [
+ 139.7954598901099,
+ 35.71101590990991
+ ],
+ [
+ 139.79524010989013,
+ 35.71101590990991
+ ],
+ [
+ 139.79524010989013,
+ 35.71119609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sannohashi.587.2",
+ "name": "三ノ橋",
+ "latitude": 35.649521,
+ "longitude": 139.736965,
+ "polygon": [
+ [
+ 139.73685510989012,
+ 35.64961109009009
+ ],
+ [
+ 139.73707489010988,
+ 35.64961109009009
+ ],
+ [
+ 139.73707489010988,
+ 35.64943090990991
+ ],
+ [
+ 139.73685510989012,
+ 35.64943090990991
+ ],
+ [
+ 139.73685510989012,
+ 35.64961109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKaminarimon.32.2",
+ "name": "浅草雷門",
+ "latitude": 35.711142,
+ "longitude": 139.795039,
+ "polygon": [
+ [
+ 139.79492910989012,
+ 35.71123209009009
+ ],
+ [
+ 139.79514889010989,
+ 35.71123209009009
+ ],
+ [
+ 139.79514889010989,
+ 35.71105190990991
+ ],
+ [
+ 139.79492910989012,
+ 35.71105190990991
+ ],
+ [
+ 139.79492910989012,
+ 35.71123209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKaminarimon.32.3",
+ "name": "浅草雷門",
+ "latitude": 35.710941,
+ "longitude": 139.795197,
+ "polygon": [
+ [
+ 139.79508710989012,
+ 35.71103109009009
+ ],
+ [
+ 139.79530689010988,
+ 35.71103109009009
+ ],
+ [
+ 139.79530689010988,
+ 35.71085090990991
+ ],
+ [
+ 139.79508710989012,
+ 35.71085090990991
+ ],
+ [
+ 139.79508710989012,
+ 35.71103109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKaminarimon.32.4",
+ "name": "浅草雷門",
+ "latitude": 35.710902,
+ "longitude": 139.795536,
+ "polygon": [
+ [
+ 139.79542610989012,
+ 35.71099209009009
+ ],
+ [
+ 139.79564589010988,
+ 35.71099209009009
+ ],
+ [
+ 139.79564589010988,
+ 35.71081190990991
+ ],
+ [
+ 139.79542610989012,
+ 35.71081190990991
+ ],
+ [
+ 139.79542610989012,
+ 35.71099209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKaminarimon.32.5",
+ "name": "浅草雷門",
+ "latitude": 35.71022,
+ "longitude": 139.796312,
+ "polygon": [
+ [
+ 139.79620210989012,
+ 35.71031009009009
+ ],
+ [
+ 139.79642189010988,
+ 35.71031009009009
+ ],
+ [
+ 139.79642189010988,
+ 35.71012990990991
+ ],
+ [
+ 139.79620210989012,
+ 35.71012990990991
+ ],
+ [
+ 139.79620210989012,
+ 35.71031009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKaminarimon.32.6",
+ "name": "浅草雷門",
+ "latitude": 35.710218,
+ "longitude": 139.7961,
+ "polygon": [
+ [
+ 139.7959901098901,
+ 35.71030809009009
+ ],
+ [
+ 139.79620989010988,
+ 35.71030809009009
+ ],
+ [
+ 139.79620989010988,
+ 35.71012790990991
+ ],
+ [
+ 139.7959901098901,
+ 35.71012790990991
+ ],
+ [
+ 139.7959901098901,
+ 35.71030809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKaminarimon.32.8",
+ "name": "浅草雷門",
+ "latitude": 35.710735,
+ "longitude": 139.796788,
+ "polygon": [
+ [
+ 139.7966781098901,
+ 35.71082509009009
+ ],
+ [
+ 139.79689789010988,
+ 35.71082509009009
+ ],
+ [
+ 139.79689789010988,
+ 35.71064490990991
+ ],
+ [
+ 139.7966781098901,
+ 35.71064490990991
+ ],
+ [
+ 139.7966781098901,
+ 35.71082509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKeisatsusho.33.1",
+ "name": "浅草警察署前",
+ "latitude": 35.719064,
+ "longitude": 139.799491,
+ "polygon": [
+ [
+ 139.7993811098901,
+ 35.71915409009009
+ ],
+ [
+ 139.79960089010987,
+ 35.71915409009009
+ ],
+ [
+ 139.79960089010987,
+ 35.71897390990991
+ ],
+ [
+ 139.7993811098901,
+ 35.71897390990991
+ ],
+ [
+ 139.7993811098901,
+ 35.71915409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKeisatsusho.33.2",
+ "name": "浅草警察署前",
+ "latitude": 35.719057,
+ "longitude": 139.799661,
+ "polygon": [
+ [
+ 139.7995511098901,
+ 35.71914709009009
+ ],
+ [
+ 139.79977089010987,
+ 35.71914709009009
+ ],
+ [
+ 139.79977089010987,
+ 35.71896690990991
+ ],
+ [
+ 139.7995511098901,
+ 35.71896690990991
+ ],
+ [
+ 139.7995511098901,
+ 35.71914709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawadoteSoshajo.66.3",
+ "name": "荒川土手操車所前",
+ "latitude": 35.768802,
+ "longitude": 139.763211,
+ "polygon": [
+ [
+ 139.76310110989013,
+ 35.76889209009009
+ ],
+ [
+ 139.7633208901099,
+ 35.76889209009009
+ ],
+ [
+ 139.7633208901099,
+ 35.76871190990991
+ ],
+ [
+ 139.76310110989013,
+ 35.76871190990991
+ ],
+ [
+ 139.76310110989013,
+ 35.76889209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKoenRokku.34.1",
+ "name": "浅草公園六区",
+ "latitude": 35.713668,
+ "longitude": 139.792234,
+ "polygon": [
+ [
+ 139.79212410989012,
+ 35.71375809009009
+ ],
+ [
+ 139.7923438901099,
+ 35.71375809009009
+ ],
+ [
+ 139.7923438901099,
+ 35.71357790990991
+ ],
+ [
+ 139.79212410989012,
+ 35.71357790990991
+ ],
+ [
+ 139.79212410989012,
+ 35.71375809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKoenRokku.34.2",
+ "name": "浅草公園六区",
+ "latitude": 35.713415,
+ "longitude": 139.792201,
+ "polygon": [
+ [
+ 139.79209110989012,
+ 35.71350509009009
+ ],
+ [
+ 139.7923108901099,
+ 35.71350509009009
+ ],
+ [
+ 139.7923108901099,
+ 35.71332490990991
+ ],
+ [
+ 139.79209110989012,
+ 35.71332490990991
+ ],
+ [
+ 139.79209110989012,
+ 35.71350509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKoenRokku.34.5",
+ "name": "浅草公園六区",
+ "latitude": 35.714128,
+ "longitude": 139.792593,
+ "polygon": [
+ [
+ 139.79248310989013,
+ 35.71421809009009
+ ],
+ [
+ 139.7927028901099,
+ 35.71421809009009
+ ],
+ [
+ 139.7927028901099,
+ 35.71403790990991
+ ],
+ [
+ 139.79248310989013,
+ 35.71403790990991
+ ],
+ [
+ 139.79248310989013,
+ 35.71421809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKotobukicho.35.6",
+ "name": "浅草寿町",
+ "latitude": 35.710312,
+ "longitude": 139.791459,
+ "polygon": [
+ [
+ 139.79134910989012,
+ 35.71040209009009
+ ],
+ [
+ 139.7915688901099,
+ 35.71040209009009
+ ],
+ [
+ 139.7915688901099,
+ 35.71022190990991
+ ],
+ [
+ 139.79134910989012,
+ 35.71022190990991
+ ],
+ [
+ 139.79134910989012,
+ 35.71040209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKotobukicho.35.8",
+ "name": "浅草寿町",
+ "latitude": 35.709161,
+ "longitude": 139.793101,
+ "polygon": [
+ [
+ 139.79299110989012,
+ 35.70925109009009
+ ],
+ [
+ 139.7932108901099,
+ 35.70925109009009
+ ],
+ [
+ 139.7932108901099,
+ 35.70907090990991
+ ],
+ [
+ 139.79299110989012,
+ 35.70907090990991
+ ],
+ [
+ 139.79299110989012,
+ 35.70925109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKotobukicho.35.9",
+ "name": "浅草寿町",
+ "latitude": 35.709911,
+ "longitude": 139.790836,
+ "polygon": [
+ [
+ 139.79072610989013,
+ 35.71000109009009
+ ],
+ [
+ 139.7909458901099,
+ 35.71000109009009
+ ],
+ [
+ 139.7909458901099,
+ 35.70982090990991
+ ],
+ [
+ 139.79072610989013,
+ 35.70982090990991
+ ],
+ [
+ 139.79072610989013,
+ 35.71000109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKotobukicho.35.10",
+ "name": "浅草寿町",
+ "latitude": 35.709704,
+ "longitude": 139.790545,
+ "polygon": [
+ [
+ 139.79043510989013,
+ 35.70979409009009
+ ],
+ [
+ 139.7906548901099,
+ 35.70979409009009
+ ],
+ [
+ 139.7906548901099,
+ 35.70961390990991
+ ],
+ [
+ 139.79043510989013,
+ 35.70961390990991
+ ],
+ [
+ 139.79043510989013,
+ 35.70979409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKotobukicho.35.11",
+ "name": "浅草寿町",
+ "latitude": 35.709147,
+ "longitude": 139.793175,
+ "polygon": [
+ [
+ 139.7930651098901,
+ 35.70923709009009
+ ],
+ [
+ 139.79328489010987,
+ 35.70923709009009
+ ],
+ [
+ 139.79328489010987,
+ 35.70905690990991
+ ],
+ [
+ 139.7930651098901,
+ 35.70905690990991
+ ],
+ [
+ 139.7930651098901,
+ 35.70923709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaItchome.38.1",
+ "name": "浅草一丁目",
+ "latitude": 35.711918,
+ "longitude": 139.791945,
+ "polygon": [
+ [
+ 139.79183510989012,
+ 35.71200809009009
+ ],
+ [
+ 139.79205489010988,
+ 35.71200809009009
+ ],
+ [
+ 139.79205489010988,
+ 35.71182790990991
+ ],
+ [
+ 139.79183510989012,
+ 35.71182790990991
+ ],
+ [
+ 139.79183510989012,
+ 35.71200809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKotobukicho.35.12",
+ "name": "浅草寿町",
+ "latitude": 35.710221,
+ "longitude": 139.791733,
+ "polygon": [
+ [
+ 139.7916231098901,
+ 35.71031109009009
+ ],
+ [
+ 139.79184289010988,
+ 35.71031109009009
+ ],
+ [
+ 139.79184289010988,
+ 35.71013090990991
+ ],
+ [
+ 139.7916231098901,
+ 35.71013090990991
+ ],
+ [
+ 139.7916231098901,
+ 35.71031109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Asakusabashi.36.1",
+ "name": "浅草橋",
+ "latitude": 35.694518,
+ "longitude": 139.784092,
+ "polygon": [
+ [
+ 139.7839821098901,
+ 35.69460809009009
+ ],
+ [
+ 139.78420189010987,
+ 35.69460809009009
+ ],
+ [
+ 139.78420189010987,
+ 35.69442790990991
+ ],
+ [
+ 139.7839821098901,
+ 35.69442790990991
+ ],
+ [
+ 139.7839821098901,
+ 35.69460809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Asakusabashi.36.2",
+ "name": "浅草橋",
+ "latitude": 35.694427,
+ "longitude": 139.783621,
+ "polygon": [
+ [
+ 139.78351110989013,
+ 35.69451709009009
+ ],
+ [
+ 139.7837308901099,
+ 35.69451709009009
+ ],
+ [
+ 139.7837308901099,
+ 35.69433690990991
+ ],
+ [
+ 139.78351110989013,
+ 35.69433690990991
+ ],
+ [
+ 139.78351110989013,
+ 35.69451709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Etchujima.170.1",
+ "name": "越中島",
+ "latitude": 35.669547,
+ "longitude": 139.791413,
+ "polygon": [
+ [
+ 139.79130310989012,
+ 35.66963709009009
+ ],
+ [
+ 139.7915228901099,
+ 35.66963709009009
+ ],
+ [
+ 139.7915228901099,
+ 35.66945690990991
+ ],
+ [
+ 139.79130310989012,
+ 35.66945690990991
+ ],
+ [
+ 139.79130310989012,
+ 35.66963709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusabashiStation.37.3",
+ "name": "浅草橋駅前",
+ "latitude": 35.697953,
+ "longitude": 139.786852,
+ "polygon": [
+ [
+ 139.78674210989013,
+ 35.69804309009009
+ ],
+ [
+ 139.7869618901099,
+ 35.69804309009009
+ ],
+ [
+ 139.7869618901099,
+ 35.69786290990991
+ ],
+ [
+ 139.78674210989013,
+ 35.69786290990991
+ ],
+ [
+ 139.78674210989013,
+ 35.69804309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusabashiStation.37.4",
+ "name": "浅草橋駅前",
+ "latitude": 35.696762,
+ "longitude": 139.785812,
+ "polygon": [
+ [
+ 139.7857021098901,
+ 35.69685209009009
+ ],
+ [
+ 139.78592189010988,
+ 35.69685209009009
+ ],
+ [
+ 139.78592189010988,
+ 35.69667190990991
+ ],
+ [
+ 139.7857021098901,
+ 35.69667190990991
+ ],
+ [
+ 139.7857021098901,
+ 35.69685209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaItchome.38.2",
+ "name": "浅草一丁目",
+ "latitude": 35.711437,
+ "longitude": 139.792595,
+ "polygon": [
+ [
+ 139.79248510989012,
+ 35.71152709009009
+ ],
+ [
+ 139.7927048901099,
+ 35.71152709009009
+ ],
+ [
+ 139.7927048901099,
+ 35.711346909909906
+ ],
+ [
+ 139.79248510989012,
+ 35.711346909909906
+ ],
+ [
+ 139.79248510989012,
+ 35.71152709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaItchome.38.3",
+ "name": "浅草一丁目",
+ "latitude": 35.711159,
+ "longitude": 139.793215,
+ "polygon": [
+ [
+ 139.79310510989012,
+ 35.71124909009009
+ ],
+ [
+ 139.7933248901099,
+ 35.71124909009009
+ ],
+ [
+ 139.7933248901099,
+ 35.71106890990991
+ ],
+ [
+ 139.79310510989012,
+ 35.71106890990991
+ ],
+ [
+ 139.79310510989012,
+ 35.71124909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaItchome.38.4",
+ "name": "浅草一丁目",
+ "latitude": 35.712192,
+ "longitude": 139.792272,
+ "polygon": [
+ [
+ 139.7921621098901,
+ 35.71228209009009
+ ],
+ [
+ 139.79238189010988,
+ 35.71228209009009
+ ],
+ [
+ 139.79238189010988,
+ 35.71210190990991
+ ],
+ [
+ 139.7921621098901,
+ 35.71210190990991
+ ],
+ [
+ 139.7921621098901,
+ 35.71228209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaNichome.39.1",
+ "name": "浅草二丁目",
+ "latitude": 35.716116,
+ "longitude": 139.796968,
+ "polygon": [
+ [
+ 139.7968581098901,
+ 35.71620609009009
+ ],
+ [
+ 139.79707789010988,
+ 35.71620609009009
+ ],
+ [
+ 139.79707789010988,
+ 35.71602590990991
+ ],
+ [
+ 139.7968581098901,
+ 35.71602590990991
+ ],
+ [
+ 139.7968581098901,
+ 35.71620609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaNichome.39.2",
+ "name": "浅草二丁目",
+ "latitude": 35.716095,
+ "longitude": 139.797738,
+ "polygon": [
+ [
+ 139.79762810989013,
+ 35.71618509009009
+ ],
+ [
+ 139.7978478901099,
+ 35.71618509009009
+ ],
+ [
+ 139.7978478901099,
+ 35.71600490990991
+ ],
+ [
+ 139.79762810989013,
+ 35.71600490990991
+ ],
+ [
+ 139.79762810989013,
+ 35.71618509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuAsakusa.40.1",
+ "name": "奥浅草",
+ "latitude": 35.716725,
+ "longitude": 139.794623,
+ "polygon": [
+ [
+ 139.79451310989012,
+ 35.71681509009009
+ ],
+ [
+ 139.79473289010988,
+ 35.71681509009009
+ ],
+ [
+ 139.79473289010988,
+ 35.71663490990991
+ ],
+ [
+ 139.79451310989012,
+ 35.71663490990991
+ ],
+ [
+ 139.79451310989012,
+ 35.71681509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuAsakusa.40.2",
+ "name": "奥浅草",
+ "latitude": 35.716897,
+ "longitude": 139.794627,
+ "polygon": [
+ [
+ 139.7945171098901,
+ 35.71698709009009
+ ],
+ [
+ 139.79473689010987,
+ 35.71698709009009
+ ],
+ [
+ 139.79473689010987,
+ 35.71680690990991
+ ],
+ [
+ 139.7945171098901,
+ 35.71680690990991
+ ],
+ [
+ 139.7945171098901,
+ 35.71698709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuAsakusa.40.3",
+ "name": "奥浅草",
+ "latitude": 35.717112,
+ "longitude": 139.793712,
+ "polygon": [
+ [
+ 139.79360210989012,
+ 35.71720209009009
+ ],
+ [
+ 139.79382189010988,
+ 35.71720209009009
+ ],
+ [
+ 139.79382189010988,
+ 35.71702190990991
+ ],
+ [
+ 139.79360210989012,
+ 35.71702190990991
+ ],
+ [
+ 139.79360210989012,
+ 35.71720209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuAsakusa.40.4",
+ "name": "奥浅草",
+ "latitude": 35.717369,
+ "longitude": 139.794377,
+ "polygon": [
+ [
+ 139.79426710989011,
+ 35.71745909009009
+ ],
+ [
+ 139.79448689010988,
+ 35.71745909009009
+ ],
+ [
+ 139.79448689010988,
+ 35.71727890990991
+ ],
+ [
+ 139.79426710989011,
+ 35.71727890990991
+ ],
+ [
+ 139.79426710989011,
+ 35.71745909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaRokuchome.43.2",
+ "name": "浅草六丁目",
+ "latitude": 35.716992,
+ "longitude": 139.799026,
+ "polygon": [
+ [
+ 139.79891610989011,
+ 35.71708209009009
+ ],
+ [
+ 139.79913589010988,
+ 35.71708209009009
+ ],
+ [
+ 139.79913589010988,
+ 35.71690190990991
+ ],
+ [
+ 139.79891610989011,
+ 35.71690190990991
+ ],
+ [
+ 139.79891610989011,
+ 35.71708209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaYonchome.41.1",
+ "name": "浅草四丁目",
+ "latitude": 35.719587,
+ "longitude": 139.795122,
+ "polygon": [
+ [
+ 139.7950121098901,
+ 35.71967709009009
+ ],
+ [
+ 139.79523189010987,
+ 35.71967709009009
+ ],
+ [
+ 139.79523189010987,
+ 35.71949690990991
+ ],
+ [
+ 139.7950121098901,
+ 35.71949690990991
+ ],
+ [
+ 139.7950121098901,
+ 35.71967709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaYonchome.41.2",
+ "name": "浅草四丁目",
+ "latitude": 35.719947,
+ "longitude": 139.795422,
+ "polygon": [
+ [
+ 139.79531210989012,
+ 35.72003709009009
+ ],
+ [
+ 139.79553189010988,
+ 35.72003709009009
+ ],
+ [
+ 139.79553189010988,
+ 35.71985690990991
+ ],
+ [
+ 139.79531210989012,
+ 35.71985690990991
+ ],
+ [
+ 139.79531210989012,
+ 35.72003709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaGochome.42.1",
+ "name": "浅草五丁目",
+ "latitude": 35.721261,
+ "longitude": 139.796422,
+ "polygon": [
+ [
+ 139.79631210989012,
+ 35.72135109009009
+ ],
+ [
+ 139.7965318901099,
+ 35.72135109009009
+ ],
+ [
+ 139.7965318901099,
+ 35.72117090990991
+ ],
+ [
+ 139.79631210989012,
+ 35.72117090990991
+ ],
+ [
+ 139.79631210989012,
+ 35.72135109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiRyutsuCenter.52.2",
+ "name": "足立流通センター",
+ "latitude": 35.798158,
+ "longitude": 139.765757,
+ "polygon": [
+ [
+ 139.76564710989012,
+ 35.79824809009009
+ ],
+ [
+ 139.7658668901099,
+ 35.79824809009009
+ ],
+ [
+ 139.7658668901099,
+ 35.79806790990991
+ ],
+ [
+ 139.76564710989012,
+ 35.79806790990991
+ ],
+ [
+ 139.76564710989012,
+ 35.79824809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaGochome.42.2",
+ "name": "浅草五丁目",
+ "latitude": 35.72159,
+ "longitude": 139.796996,
+ "polygon": [
+ [
+ 139.79688610989012,
+ 35.72168009009009
+ ],
+ [
+ 139.7971058901099,
+ 35.72168009009009
+ ],
+ [
+ 139.7971058901099,
+ 35.72149990990991
+ ],
+ [
+ 139.79688610989012,
+ 35.72149990990991
+ ],
+ [
+ 139.79688610989012,
+ 35.72168009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaRokuchome.43.1",
+ "name": "浅草六丁目",
+ "latitude": 35.716359,
+ "longitude": 139.798691,
+ "polygon": [
+ [
+ 139.7985811098901,
+ 35.71644909009009
+ ],
+ [
+ 139.79880089010987,
+ 35.71644909009009
+ ],
+ [
+ 139.79880089010987,
+ 35.71626890990991
+ ],
+ [
+ 139.7985811098901,
+ 35.71626890990991
+ ],
+ [
+ 139.7985811098901,
+ 35.71644909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaNanachome.44.2",
+ "name": "浅草七丁目",
+ "latitude": 35.718676,
+ "longitude": 139.801994,
+ "polygon": [
+ [
+ 139.80188410989012,
+ 35.71876609009009
+ ],
+ [
+ 139.8021038901099,
+ 35.71876609009009
+ ],
+ [
+ 139.8021038901099,
+ 35.71858590990991
+ ],
+ [
+ 139.80188410989012,
+ 35.71858590990991
+ ],
+ [
+ 139.80188410989012,
+ 35.71876609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AzabudaiHills.45.1",
+ "name": "麻布台ヒルズ",
+ "latitude": 35.660098,
+ "longitude": 139.740848,
+ "polygon": [
+ [
+ 139.74073810989012,
+ 35.66018809009009
+ ],
+ [
+ 139.74095789010988,
+ 35.66018809009009
+ ],
+ [
+ 139.74095789010988,
+ 35.66000790990991
+ ],
+ [
+ 139.74073810989012,
+ 35.66000790990991
+ ],
+ [
+ 139.74073810989012,
+ 35.66018809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AzabudaiHills.45.2",
+ "name": "麻布台ヒルズ",
+ "latitude": 35.66025,
+ "longitude": 139.739968,
+ "polygon": [
+ [
+ 139.73985810989012,
+ 35.66034009009009
+ ],
+ [
+ 139.7400778901099,
+ 35.66034009009009
+ ],
+ [
+ 139.7400778901099,
+ 35.66015990990991
+ ],
+ [
+ 139.73985810989012,
+ 35.66015990990991
+ ],
+ [
+ 139.73985810989012,
+ 35.66034009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Asukayama.46.1",
+ "name": "飛鳥山",
+ "latitude": 35.749994,
+ "longitude": 139.736354,
+ "polygon": [
+ [
+ 139.73624410989012,
+ 35.75008409009009
+ ],
+ [
+ 139.7364638901099,
+ 35.75008409009009
+ ],
+ [
+ 139.7364638901099,
+ 35.74990390990991
+ ],
+ [
+ 139.73624410989012,
+ 35.74990390990991
+ ],
+ [
+ 139.73624410989012,
+ 35.75008409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Asukayama.46.2",
+ "name": "飛鳥山",
+ "latitude": 35.750325,
+ "longitude": 139.73634,
+ "polygon": [
+ [
+ 139.73623010989013,
+ 35.75041509009009
+ ],
+ [
+ 139.7364498901099,
+ 35.75041509009009
+ ],
+ [
+ 139.7364498901099,
+ 35.750234909909906
+ ],
+ [
+ 139.73623010989013,
+ 35.750234909909906
+ ],
+ [
+ 139.73623010989013,
+ 35.75041509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiUmedacho.48.1",
+ "name": "足立梅田町",
+ "latitude": 35.769467,
+ "longitude": 139.795565,
+ "polygon": [
+ [
+ 139.79545510989013,
+ 35.76955709009009
+ ],
+ [
+ 139.7956748901099,
+ 35.76955709009009
+ ],
+ [
+ 139.7956748901099,
+ 35.76937690990991
+ ],
+ [
+ 139.79545510989013,
+ 35.76937690990991
+ ],
+ [
+ 139.79545510989013,
+ 35.76955709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiUmedacho.48.2",
+ "name": "足立梅田町",
+ "latitude": 35.769334,
+ "longitude": 139.795645,
+ "polygon": [
+ [
+ 139.79553510989012,
+ 35.76942409009009
+ ],
+ [
+ 139.7957548901099,
+ 35.76942409009009
+ ],
+ [
+ 139.7957548901099,
+ 35.76924390990991
+ ],
+ [
+ 139.79553510989012,
+ 35.76924390990991
+ ],
+ [
+ 139.79553510989012,
+ 35.76942409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuItchome.49.1",
+ "name": "千住一丁目",
+ "latitude": 35.747383,
+ "longitude": 139.798976,
+ "polygon": [
+ [
+ 139.79886610989013,
+ 35.74747309009009
+ ],
+ [
+ 139.7990858901099,
+ 35.74747309009009
+ ],
+ [
+ 139.7990858901099,
+ 35.74729290990991
+ ],
+ [
+ 139.79886610989013,
+ 35.74729290990991
+ ],
+ [
+ 139.79886610989013,
+ 35.74747309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AzumabashiItchome.54.1",
+ "name": "吾妻橋一丁目",
+ "latitude": 35.707943,
+ "longitude": 139.800245,
+ "polygon": [
+ [
+ 139.8001351098901,
+ 35.70803309009009
+ ],
+ [
+ 139.80035489010987,
+ 35.70803309009009
+ ],
+ [
+ 139.80035489010987,
+ 35.70785290990991
+ ],
+ [
+ 139.8001351098901,
+ 35.70785290990991
+ ],
+ [
+ 139.8001351098901,
+ 35.70803309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuItchome.49.2",
+ "name": "千住一丁目",
+ "latitude": 35.746026,
+ "longitude": 139.79817,
+ "polygon": [
+ [
+ 139.79806010989012,
+ 35.74611609009009
+ ],
+ [
+ 139.79827989010988,
+ 35.74611609009009
+ ],
+ [
+ 139.79827989010988,
+ 35.74593590990991
+ ],
+ [
+ 139.79806010989012,
+ 35.74593590990991
+ ],
+ [
+ 139.79806010989012,
+ 35.74611609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiSeisokojo.50.1",
+ "name": "足立清掃工場前",
+ "latitude": 35.80402,
+ "longitude": 139.797032,
+ "polygon": [
+ [
+ 139.79692210989012,
+ 35.80411009009009
+ ],
+ [
+ 139.79714189010988,
+ 35.80411009009009
+ ],
+ [
+ 139.79714189010988,
+ 35.80392990990991
+ ],
+ [
+ 139.79692210989012,
+ 35.80392990990991
+ ],
+ [
+ 139.79692210989012,
+ 35.80411009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiSeisokojo.50.2",
+ "name": "足立清掃工場前",
+ "latitude": 35.80367,
+ "longitude": 139.79762,
+ "polygon": [
+ [
+ 139.7975101098901,
+ 35.80376009009009
+ ],
+ [
+ 139.79772989010988,
+ 35.80376009009009
+ ],
+ [
+ 139.79772989010988,
+ 35.80357990990991
+ ],
+ [
+ 139.7975101098901,
+ 35.80357990990991
+ ],
+ [
+ 139.7975101098901,
+ 35.80376009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaItchome.67.1",
+ "name": "荒川一丁目",
+ "latitude": 35.733276,
+ "longitude": 139.787252,
+ "polygon": [
+ [
+ 139.7871421098901,
+ 35.73336609009009
+ ],
+ [
+ 139.78736189010988,
+ 35.73336609009009
+ ],
+ [
+ 139.78736189010988,
+ 35.733185909909906
+ ],
+ [
+ 139.7871421098901,
+ 35.733185909909906
+ ],
+ [
+ 139.7871421098901,
+ 35.73336609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiKuyakushoMae.51.1",
+ "name": "足立区役所前",
+ "latitude": 35.775884,
+ "longitude": 139.803116,
+ "polygon": [
+ [
+ 139.8030061098901,
+ 35.77597409009009
+ ],
+ [
+ 139.80322589010987,
+ 35.77597409009009
+ ],
+ [
+ 139.80322589010987,
+ 35.77579390990991
+ ],
+ [
+ 139.8030061098901,
+ 35.77579390990991
+ ],
+ [
+ 139.8030061098901,
+ 35.77597409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiKuyakushoMae.51.2",
+ "name": "足立区役所前",
+ "latitude": 35.774912,
+ "longitude": 139.803394,
+ "polygon": [
+ [
+ 139.80328410989011,
+ 35.77500209009009
+ ],
+ [
+ 139.80350389010988,
+ 35.77500209009009
+ ],
+ [
+ 139.80350389010988,
+ 35.77482190990991
+ ],
+ [
+ 139.80328410989011,
+ 35.77482190990991
+ ],
+ [
+ 139.80328410989011,
+ 35.77500209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiRyutsuCenter.52.1",
+ "name": "足立流通センター",
+ "latitude": 35.798742,
+ "longitude": 139.765618,
+ "polygon": [
+ [
+ 139.7655081098901,
+ 35.79883209009009
+ ],
+ [
+ 139.76572789010987,
+ 35.79883209009009
+ ],
+ [
+ 139.76572789010987,
+ 35.79865190990991
+ ],
+ [
+ 139.7655081098901,
+ 35.79865190990991
+ ],
+ [
+ 139.7655081098901,
+ 35.79883209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AzumabashiItchome.54.2",
+ "name": "吾妻橋一丁目",
+ "latitude": 35.708285,
+ "longitude": 139.800767,
+ "polygon": [
+ [
+ 139.80065710989012,
+ 35.70837509009009
+ ],
+ [
+ 139.8008768901099,
+ 35.70837509009009
+ ],
+ [
+ 139.8008768901099,
+ 35.708194909909906
+ ],
+ [
+ 139.80065710989012,
+ 35.708194909909906
+ ],
+ [
+ 139.80065710989012,
+ 35.70837509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Amidabashi.56.1",
+ "name": "阿弥陀橋",
+ "latitude": 35.774861,
+ "longitude": 139.773285,
+ "polygon": [
+ [
+ 139.7731751098901,
+ 35.77495109009009
+ ],
+ [
+ 139.77339489010987,
+ 35.77495109009009
+ ],
+ [
+ 139.77339489010987,
+ 35.77477090990991
+ ],
+ [
+ 139.7731751098901,
+ 35.77477090990991
+ ],
+ [
+ 139.7731751098901,
+ 35.77495109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Amidabashi.56.2",
+ "name": "阿弥陀橋",
+ "latitude": 35.774622,
+ "longitude": 139.772724,
+ "polygon": [
+ [
+ 139.77261410989013,
+ 35.77471209009009
+ ],
+ [
+ 139.7728338901099,
+ 35.77471209009009
+ ],
+ [
+ 139.7728338901099,
+ 35.77453190990991
+ ],
+ [
+ 139.77261410989013,
+ 35.77453190990991
+ ],
+ [
+ 139.77261410989013,
+ 35.77471209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaKuyakusho.64.1",
+ "name": "荒川区役所前",
+ "latitude": 35.735052,
+ "longitude": 139.783764,
+ "polygon": [
+ [
+ 139.7836541098901,
+ 35.73514209009009
+ ],
+ [
+ 139.78387389010987,
+ 35.73514209009009
+ ],
+ [
+ 139.78387389010987,
+ 35.73496190990991
+ ],
+ [
+ 139.7836541098901,
+ 35.73496190990991
+ ],
+ [
+ 139.7836541098901,
+ 35.73514209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaKuyakusho.64.2",
+ "name": "荒川区役所前",
+ "latitude": 35.734815,
+ "longitude": 139.784066,
+ "polygon": [
+ [
+ 139.7839561098901,
+ 35.73490509009009
+ ],
+ [
+ 139.78417589010988,
+ 35.73490509009009
+ ],
+ [
+ 139.78417589010988,
+ 35.73472490990991
+ ],
+ [
+ 139.7839561098901,
+ 35.73472490990991
+ ],
+ [
+ 139.7839561098901,
+ 35.73490509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HaraChugakkoIriguchi.65.1",
+ "name": "原中学校入口",
+ "latitude": 35.749558,
+ "longitude": 139.78013,
+ "polygon": [
+ [
+ 139.78002010989013,
+ 35.74964809009009
+ ],
+ [
+ 139.7802398901099,
+ 35.74964809009009
+ ],
+ [
+ 139.7802398901099,
+ 35.74946790990991
+ ],
+ [
+ 139.78002010989013,
+ 35.74946790990991
+ ],
+ [
+ 139.78002010989013,
+ 35.74964809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HaraChugakkoIriguchi.65.2",
+ "name": "原中学校入口",
+ "latitude": 35.749625,
+ "longitude": 139.779688,
+ "polygon": [
+ [
+ 139.7795781098901,
+ 35.74971509009009
+ ],
+ [
+ 139.77979789010988,
+ 35.74971509009009
+ ],
+ [
+ 139.77979789010988,
+ 35.74953490990991
+ ],
+ [
+ 139.7795781098901,
+ 35.74953490990991
+ ],
+ [
+ 139.7795781098901,
+ 35.74971509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawadoteSoshajo.66.1",
+ "name": "荒川土手操車所前",
+ "latitude": 35.768802,
+ "longitude": 139.763211,
+ "polygon": [
+ [
+ 139.76310110989013,
+ 35.76889209009009
+ ],
+ [
+ 139.7633208901099,
+ 35.76889209009009
+ ],
+ [
+ 139.7633208901099,
+ 35.76871190990991
+ ],
+ [
+ 139.76310110989013,
+ 35.76871190990991
+ ],
+ [
+ 139.76310110989013,
+ 35.76889209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawadoteSoshajo.66.2",
+ "name": "荒川土手操車所前",
+ "latitude": 35.768953,
+ "longitude": 139.763353,
+ "polygon": [
+ [
+ 139.7632431098901,
+ 35.76904309009009
+ ],
+ [
+ 139.76346289010988,
+ 35.76904309009009
+ ],
+ [
+ 139.76346289010988,
+ 35.76886290990991
+ ],
+ [
+ 139.7632431098901,
+ 35.76886290990991
+ ],
+ [
+ 139.7632431098901,
+ 35.76904309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaItchome.67.2",
+ "name": "荒川一丁目",
+ "latitude": 35.733193,
+ "longitude": 139.787072,
+ "polygon": [
+ [
+ 139.7869621098901,
+ 35.73328309009009
+ ],
+ [
+ 139.78718189010988,
+ 35.73328309009009
+ ],
+ [
+ 139.78718189010988,
+ 35.73310290990991
+ ],
+ [
+ 139.7869621098901,
+ 35.73310290990991
+ ],
+ [
+ 139.7869621098901,
+ 35.73328309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaSanchome.68.1",
+ "name": "荒川三丁目",
+ "latitude": 35.735735,
+ "longitude": 139.780839,
+ "polygon": [
+ [
+ 139.7807291098901,
+ 35.73582509009009
+ ],
+ [
+ 139.78094889010987,
+ 35.73582509009009
+ ],
+ [
+ 139.78094889010987,
+ 35.73564490990991
+ ],
+ [
+ 139.7807291098901,
+ 35.73564490990991
+ ],
+ [
+ 139.7807291098901,
+ 35.73582509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaSanchome.68.2",
+ "name": "荒川三丁目",
+ "latitude": 35.735666,
+ "longitude": 139.781653,
+ "polygon": [
+ [
+ 139.78154310989012,
+ 35.73575609009009
+ ],
+ [
+ 139.7817628901099,
+ 35.73575609009009
+ ],
+ [
+ 139.7817628901099,
+ 35.73557590990991
+ ],
+ [
+ 139.78154310989012,
+ 35.73557590990991
+ ],
+ [
+ 139.78154310989012,
+ 35.73575609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaYonchome.69.1",
+ "name": "荒川四丁目",
+ "latitude": 35.736957,
+ "longitude": 139.777712,
+ "polygon": [
+ [
+ 139.77760210989013,
+ 35.73704709009009
+ ],
+ [
+ 139.7778218901099,
+ 35.73704709009009
+ ],
+ [
+ 139.7778218901099,
+ 35.73686690990991
+ ],
+ [
+ 139.77760210989013,
+ 35.73686690990991
+ ],
+ [
+ 139.77760210989013,
+ 35.73704709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaYonchome.69.2",
+ "name": "荒川四丁目",
+ "latitude": 35.736431,
+ "longitude": 139.775938,
+ "polygon": [
+ [
+ 139.7758281098901,
+ 35.73652109009009
+ ],
+ [
+ 139.77604789010988,
+ 35.73652109009009
+ ],
+ [
+ 139.77604789010988,
+ 35.73634090990991
+ ],
+ [
+ 139.7758281098901,
+ 35.73634090990991
+ ],
+ [
+ 139.7758281098901,
+ 35.73652109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaYonchome.69.3",
+ "name": "荒川四丁目",
+ "latitude": 35.737036,
+ "longitude": 139.775782,
+ "polygon": [
+ [
+ 139.7756721098901,
+ 35.737126090090094
+ ],
+ [
+ 139.77589189010988,
+ 35.737126090090094
+ ],
+ [
+ 139.77589189010988,
+ 35.73694590990991
+ ],
+ [
+ 139.7756721098901,
+ 35.73694590990991
+ ],
+ [
+ 139.7756721098901,
+ 35.737126090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Arata.72.1",
+ "name": "荒田",
+ "latitude": 35.81582,
+ "longitude": 139.270742,
+ "polygon": [
+ [
+ 139.27063210989013,
+ 35.81591009009009
+ ],
+ [
+ 139.2708518901099,
+ 35.81591009009009
+ ],
+ [
+ 139.2708518901099,
+ 35.81572990990991
+ ],
+ [
+ 139.27063210989013,
+ 35.81572990990991
+ ],
+ [
+ 139.27063210989013,
+ 35.81591009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaYonchome.69.4",
+ "name": "荒川四丁目",
+ "latitude": 35.736178,
+ "longitude": 139.776962,
+ "polygon": [
+ [
+ 139.77685210989011,
+ 35.73626809009009
+ ],
+ [
+ 139.77707189010988,
+ 35.73626809009009
+ ],
+ [
+ 139.77707189010988,
+ 35.73608790990991
+ ],
+ [
+ 139.77685210989011,
+ 35.73608790990991
+ ],
+ [
+ 139.77685210989011,
+ 35.73626809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaYonchome.69.5",
+ "name": "荒川四丁目",
+ "latitude": 35.736049,
+ "longitude": 139.776905,
+ "polygon": [
+ [
+ 139.77679510989012,
+ 35.73613909009009
+ ],
+ [
+ 139.77701489010988,
+ 35.73613909009009
+ ],
+ [
+ 139.77701489010988,
+ 35.73595890990991
+ ],
+ [
+ 139.77679510989012,
+ 35.73595890990991
+ ],
+ [
+ 139.77679510989012,
+ 35.73613909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaGochome.70.1",
+ "name": "荒川五丁目",
+ "latitude": 35.739274,
+ "longitude": 139.778264,
+ "polygon": [
+ [
+ 139.77815410989012,
+ 35.73936409009009
+ ],
+ [
+ 139.7783738901099,
+ 35.73936409009009
+ ],
+ [
+ 139.7783738901099,
+ 35.73918390990991
+ ],
+ [
+ 139.77815410989012,
+ 35.73918390990991
+ ],
+ [
+ 139.77815410989012,
+ 35.73936409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaGochome.70.2",
+ "name": "荒川五丁目",
+ "latitude": 35.739432,
+ "longitude": 139.778234,
+ "polygon": [
+ [
+ 139.77812410989011,
+ 35.73952209009009
+ ],
+ [
+ 139.77834389010988,
+ 35.73952209009009
+ ],
+ [
+ 139.77834389010988,
+ 35.73934190990991
+ ],
+ [
+ 139.77812410989011,
+ 35.73934190990991
+ ],
+ [
+ 139.77812410989011,
+ 35.73952209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Arakicho.71.1",
+ "name": "荒木町",
+ "latitude": 35.690817,
+ "longitude": 139.722555,
+ "polygon": [
+ [
+ 139.72244510989012,
+ 35.69090709009009
+ ],
+ [
+ 139.72266489010988,
+ 35.69090709009009
+ ],
+ [
+ 139.72266489010988,
+ 35.69072690990991
+ ],
+ [
+ 139.72244510989012,
+ 35.69072690990991
+ ],
+ [
+ 139.72244510989012,
+ 35.69090709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Arakicho.71.2",
+ "name": "荒木町",
+ "latitude": 35.690919,
+ "longitude": 139.722435,
+ "polygon": [
+ [
+ 139.7223251098901,
+ 35.69100909009009
+ ],
+ [
+ 139.72254489010987,
+ 35.69100909009009
+ ],
+ [
+ 139.72254489010987,
+ 35.69082890990991
+ ],
+ [
+ 139.7223251098901,
+ 35.69082890990991
+ ],
+ [
+ 139.7223251098901,
+ 35.69100909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Arata.72.2",
+ "name": "荒田",
+ "latitude": 35.815643,
+ "longitude": 139.270085,
+ "polygon": [
+ [
+ 139.2699751098901,
+ 35.81573309009009
+ ],
+ [
+ 139.27019489010988,
+ 35.81573309009009
+ ],
+ [
+ 139.27019489010988,
+ 35.81555290990991
+ ],
+ [
+ 139.2699751098901,
+ 35.81555290990991
+ ],
+ [
+ 139.2699751098901,
+ 35.81573309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeTennisNoMori.74.1",
+ "name": "有明テニスの森",
+ "latitude": 35.63613,
+ "longitude": 139.786652,
+ "polygon": [
+ [
+ 139.78654210989012,
+ 35.63622009009009
+ ],
+ [
+ 139.7867618901099,
+ 35.63622009009009
+ ],
+ [
+ 139.7867618901099,
+ 35.63603990990991
+ ],
+ [
+ 139.78654210989012,
+ 35.63603990990991
+ ],
+ [
+ 139.78654210989012,
+ 35.63622009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeTennisNoMori.74.2",
+ "name": "有明テニスの森",
+ "latitude": 35.636646,
+ "longitude": 139.788025,
+ "polygon": [
+ [
+ 139.78791510989012,
+ 35.63673609009009
+ ],
+ [
+ 139.7881348901099,
+ 35.63673609009009
+ ],
+ [
+ 139.7881348901099,
+ 35.63655590990991
+ ],
+ [
+ 139.78791510989012,
+ 35.63655590990991
+ ],
+ [
+ 139.78791510989012,
+ 35.63673609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeShoChuGakko.75.1",
+ "name": "有明小中学校前",
+ "latitude": 35.641376,
+ "longitude": 139.795584,
+ "polygon": [
+ [
+ 139.7954741098901,
+ 35.64146609009009
+ ],
+ [
+ 139.79569389010987,
+ 35.64146609009009
+ ],
+ [
+ 139.79569389010987,
+ 35.64128590990991
+ ],
+ [
+ 139.7954741098901,
+ 35.64128590990991
+ ],
+ [
+ 139.7954741098901,
+ 35.64146609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeShoChuGakko.75.2",
+ "name": "有明小中学校前",
+ "latitude": 35.641035,
+ "longitude": 139.795542,
+ "polygon": [
+ [
+ 139.79543210989013,
+ 35.64112509009009
+ ],
+ [
+ 139.7956518901099,
+ 35.64112509009009
+ ],
+ [
+ 139.7956518901099,
+ 35.64094490990991
+ ],
+ [
+ 139.79543210989013,
+ 35.64094490990991
+ ],
+ [
+ 139.79543210989013,
+ 35.64112509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeShoChuGakko.75.3",
+ "name": "有明小中学校前",
+ "latitude": 35.641031,
+ "longitude": 139.794491,
+ "polygon": [
+ [
+ 139.7943811098901,
+ 35.64112109009009
+ ],
+ [
+ 139.79460089010988,
+ 35.64112109009009
+ ],
+ [
+ 139.79460089010988,
+ 35.64094090990991
+ ],
+ [
+ 139.7943811098901,
+ 35.64094090990991
+ ],
+ [
+ 139.7943811098901,
+ 35.64112109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeShoChuGakko.75.4",
+ "name": "有明小中学校前",
+ "latitude": 35.64242,
+ "longitude": 139.793841,
+ "polygon": [
+ [
+ 139.7937311098901,
+ 35.64251009009009
+ ],
+ [
+ 139.79395089010987,
+ 35.64251009009009
+ ],
+ [
+ 139.79395089010987,
+ 35.64232990990991
+ ],
+ [
+ 139.7937311098901,
+ 35.64232990990991
+ ],
+ [
+ 139.7937311098901,
+ 35.64251009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeNichome.77.1",
+ "name": "有明二丁目",
+ "latitude": 35.639442,
+ "longitude": 139.792794,
+ "polygon": [
+ [
+ 139.7926841098901,
+ 35.63953209009009
+ ],
+ [
+ 139.79290389010987,
+ 35.63953209009009
+ ],
+ [
+ 139.79290389010987,
+ 35.63935190990991
+ ],
+ [
+ 139.7926841098901,
+ 35.63935190990991
+ ],
+ [
+ 139.7926841098901,
+ 35.63953209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeNichome.77.2",
+ "name": "有明二丁目",
+ "latitude": 35.638672,
+ "longitude": 139.791799,
+ "polygon": [
+ [
+ 139.79168910989011,
+ 35.63876209009009
+ ],
+ [
+ 139.79190889010988,
+ 35.63876209009009
+ ],
+ [
+ 139.79190889010988,
+ 35.63858190990991
+ ],
+ [
+ 139.79168910989011,
+ 35.63858190990991
+ ],
+ [
+ 139.79168910989011,
+ 35.63876209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IidabashiStation.78.5",
+ "name": "飯田橋駅前",
+ "latitude": 35.701551,
+ "longitude": 139.745988,
+ "polygon": [
+ [
+ 139.74587810989013,
+ 35.70164109009009
+ ],
+ [
+ 139.7460978901099,
+ 35.70164109009009
+ ],
+ [
+ 139.7460978901099,
+ 35.70146090990991
+ ],
+ [
+ 139.74587810989013,
+ 35.70146090990991
+ ],
+ [
+ 139.74587810989013,
+ 35.70164109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IidabashiStation.78.6",
+ "name": "飯田橋駅前",
+ "latitude": 35.701671,
+ "longitude": 139.746177,
+ "polygon": [
+ [
+ 139.7460671098901,
+ 35.70176109009009
+ ],
+ [
+ 139.74628689010987,
+ 35.70176109009009
+ ],
+ [
+ 139.74628689010987,
+ 35.70158090990991
+ ],
+ [
+ 139.7460671098901,
+ 35.70158090990991
+ ],
+ [
+ 139.7460671098901,
+ 35.70176109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Iidabashi.79.1",
+ "name": "飯田橋",
+ "latitude": 35.703257,
+ "longitude": 139.744333,
+ "polygon": [
+ [
+ 139.74422310989013,
+ 35.70334709009009
+ ],
+ [
+ 139.7444428901099,
+ 35.70334709009009
+ ],
+ [
+ 139.7444428901099,
+ 35.70316690990991
+ ],
+ [
+ 139.74422310989013,
+ 35.70316690990991
+ ],
+ [
+ 139.74422310989013,
+ 35.70334709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkenohataNichome.86.1",
+ "name": "池之端二丁目",
+ "latitude": 35.714984,
+ "longitude": 139.767435,
+ "polygon": [
+ [
+ 139.76732510989012,
+ 35.71507409009009
+ ],
+ [
+ 139.7675448901099,
+ 35.71507409009009
+ ],
+ [
+ 139.7675448901099,
+ 35.71489390990991
+ ],
+ [
+ 139.76732510989012,
+ 35.71489390990991
+ ],
+ [
+ 139.76732510989012,
+ 35.71507409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Iidabashi.79.2",
+ "name": "飯田橋",
+ "latitude": 35.703496,
+ "longitude": 139.744932,
+ "polygon": [
+ [
+ 139.74482210989012,
+ 35.70358609009009
+ ],
+ [
+ 139.7450418901099,
+ 35.70358609009009
+ ],
+ [
+ 139.7450418901099,
+ 35.70340590990991
+ ],
+ [
+ 139.74482210989012,
+ 35.70340590990991
+ ],
+ [
+ 139.74482210989012,
+ 35.70358609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Iidabashi.79.3",
+ "name": "飯田橋",
+ "latitude": 35.702878,
+ "longitude": 139.743308,
+ "polygon": [
+ [
+ 139.74319810989013,
+ 35.70296809009009
+ ],
+ [
+ 139.7434178901099,
+ 35.70296809009009
+ ],
+ [
+ 139.7434178901099,
+ 35.70278790990991
+ ],
+ [
+ 139.74319810989013,
+ 35.70278790990991
+ ],
+ [
+ 139.74319810989013,
+ 35.70296809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Iidabashi.79.4",
+ "name": "飯田橋",
+ "latitude": 35.702642,
+ "longitude": 139.743812,
+ "polygon": [
+ [
+ 139.7437021098901,
+ 35.70273209009009
+ ],
+ [
+ 139.74392189010987,
+ 35.70273209009009
+ ],
+ [
+ 139.74392189010987,
+ 35.70255190990991
+ ],
+ [
+ 139.7437021098901,
+ 35.70255190990991
+ ],
+ [
+ 139.7437021098901,
+ 35.70273209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToeiIidabashiStation.80.7",
+ "name": "都営飯田橋駅前",
+ "latitude": 35.703932,
+ "longitude": 139.746822,
+ "polygon": [
+ [
+ 139.74671210989013,
+ 35.70402209009009
+ ],
+ [
+ 139.7469318901099,
+ 35.70402209009009
+ ],
+ [
+ 139.7469318901099,
+ 35.70384190990991
+ ],
+ [
+ 139.74671210989013,
+ 35.70384190990991
+ ],
+ [
+ 139.74671210989013,
+ 35.70402209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IidabashiItchome.81.1",
+ "name": "飯田橋一丁目",
+ "latitude": 35.699141,
+ "longitude": 139.748958,
+ "polygon": [
+ [
+ 139.7488481098901,
+ 35.69923109009009
+ ],
+ [
+ 139.74906789010987,
+ 35.69923109009009
+ ],
+ [
+ 139.74906789010987,
+ 35.69905090990991
+ ],
+ [
+ 139.7488481098901,
+ 35.69905090990991
+ ],
+ [
+ 139.7488481098901,
+ 35.69923109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IidabashiItchome.81.2",
+ "name": "飯田橋一丁目",
+ "latitude": 35.69953,
+ "longitude": 139.74893,
+ "polygon": [
+ [
+ 139.74882010989012,
+ 35.69962009009009
+ ],
+ [
+ 139.74903989010988,
+ 35.69962009009009
+ ],
+ [
+ 139.74903989010988,
+ 35.69943990990991
+ ],
+ [
+ 139.74882010989012,
+ 35.69943990990991
+ ],
+ [
+ 139.74882010989012,
+ 35.69962009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiIkakenByoinNishimon.82.1",
+ "name": "東大医科研病院西門",
+ "latitude": 35.639622,
+ "longitude": 139.722671,
+ "polygon": [
+ [
+ 139.7225611098901,
+ 35.63971209009009
+ ],
+ [
+ 139.72278089010987,
+ 35.63971209009009
+ ],
+ [
+ 139.72278089010987,
+ 35.63953190990991
+ ],
+ [
+ 139.7225611098901,
+ 35.63953190990991
+ ],
+ [
+ 139.7225611098901,
+ 35.63971209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiIkakenByoinNishimon.82.2",
+ "name": "東大医科研病院西門",
+ "latitude": 35.640149,
+ "longitude": 139.722356,
+ "polygon": [
+ [
+ 139.7222461098901,
+ 35.64023909009009
+ ],
+ [
+ 139.72246589010987,
+ 35.64023909009009
+ ],
+ [
+ 139.72246589010987,
+ 35.64005890990991
+ ],
+ [
+ 139.7222461098901,
+ 35.64005890990991
+ ],
+ [
+ 139.7222461098901,
+ 35.64023909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ikazuchi.83.1",
+ "name": "雷",
+ "latitude": 35.655901,
+ "longitude": 139.88399,
+ "polygon": [
+ [
+ 139.88388010989013,
+ 35.65599109009009
+ ],
+ [
+ 139.8840998901099,
+ 35.65599109009009
+ ],
+ [
+ 139.8840998901099,
+ 35.65581090990991
+ ],
+ [
+ 139.88388010989013,
+ 35.65581090990991
+ ],
+ [
+ 139.88388010989013,
+ 35.65599109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ikazuchi.83.2",
+ "name": "雷",
+ "latitude": 35.656205,
+ "longitude": 139.884412,
+ "polygon": [
+ [
+ 139.88430210989011,
+ 35.65629509009009
+ ],
+ [
+ 139.88452189010988,
+ 35.65629509009009
+ ],
+ [
+ 139.88452189010988,
+ 35.65611490990991
+ ],
+ [
+ 139.88430210989011,
+ 35.65611490990991
+ ],
+ [
+ 139.88430210989011,
+ 35.65629509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkazuchiFudo.84.1",
+ "name": "雷不動前",
+ "latitude": 35.659029,
+ "longitude": 139.884493,
+ "polygon": [
+ [
+ 139.8843831098901,
+ 35.65911909009009
+ ],
+ [
+ 139.88460289010987,
+ 35.65911909009009
+ ],
+ [
+ 139.88460289010987,
+ 35.65893890990991
+ ],
+ [
+ 139.8843831098901,
+ 35.65893890990991
+ ],
+ [
+ 139.8843831098901,
+ 35.65911909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkazuchiFudo.84.2",
+ "name": "雷不動前",
+ "latitude": 35.660201,
+ "longitude": 139.88462,
+ "polygon": [
+ [
+ 139.88451010989013,
+ 35.66029109009009
+ ],
+ [
+ 139.8847298901099,
+ 35.66029109009009
+ ],
+ [
+ 139.8847298901099,
+ 35.66011090990991
+ ],
+ [
+ 139.88451010989013,
+ 35.66011090990991
+ ],
+ [
+ 139.88451010989013,
+ 35.66029109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ishijima.92.1",
+ "name": "石島",
+ "latitude": 35.68082,
+ "longitude": 139.811626,
+ "polygon": [
+ [
+ 139.8115161098901,
+ 35.68091009009009
+ ],
+ [
+ 139.81173589010987,
+ 35.68091009009009
+ ],
+ [
+ 139.81173589010987,
+ 35.68072990990991
+ ],
+ [
+ 139.8115161098901,
+ 35.68072990990991
+ ],
+ [
+ 139.8115161098901,
+ 35.68091009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkenohataNichome.86.2",
+ "name": "池之端二丁目",
+ "latitude": 35.715209,
+ "longitude": 139.767519,
+ "polygon": [
+ [
+ 139.7674091098901,
+ 35.71529909009009
+ ],
+ [
+ 139.76762889010988,
+ 35.71529909009009
+ ],
+ [
+ 139.76762889010988,
+ 35.71511890990991
+ ],
+ [
+ 139.7674091098901,
+ 35.71511890990991
+ ],
+ [
+ 139.7674091098901,
+ 35.71529909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.1",
+ "name": "池袋駅東口",
+ "latitude": 35.72909,
+ "longitude": 139.71202,
+ "polygon": [
+ [
+ 139.7119101098901,
+ 35.72918009009009
+ ],
+ [
+ 139.71212989010988,
+ 35.72918009009009
+ ],
+ [
+ 139.71212989010988,
+ 35.72899990990991
+ ],
+ [
+ 139.7119101098901,
+ 35.72899990990991
+ ],
+ [
+ 139.7119101098901,
+ 35.72918009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.3",
+ "name": "池袋駅東口",
+ "latitude": 35.729523,
+ "longitude": 139.713109,
+ "polygon": [
+ [
+ 139.71299910989012,
+ 35.72961309009009
+ ],
+ [
+ 139.71321889010989,
+ 35.72961309009009
+ ],
+ [
+ 139.71321889010989,
+ 35.72943290990991
+ ],
+ [
+ 139.71299910989012,
+ 35.72943290990991
+ ],
+ [
+ 139.71299910989012,
+ 35.72961309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.4",
+ "name": "池袋駅東口",
+ "latitude": 35.729609,
+ "longitude": 139.713017,
+ "polygon": [
+ [
+ 139.71290710989012,
+ 35.729699090090094
+ ],
+ [
+ 139.7131268901099,
+ 35.729699090090094
+ ],
+ [
+ 139.7131268901099,
+ 35.72951890990991
+ ],
+ [
+ 139.71290710989012,
+ 35.72951890990991
+ ],
+ [
+ 139.71290710989012,
+ 35.729699090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.5",
+ "name": "池袋駅東口",
+ "latitude": 35.729777,
+ "longitude": 139.713206,
+ "polygon": [
+ [
+ 139.71309610989013,
+ 35.72986709009009
+ ],
+ [
+ 139.7133158901099,
+ 35.72986709009009
+ ],
+ [
+ 139.7133158901099,
+ 35.72968690990991
+ ],
+ [
+ 139.71309610989013,
+ 35.72968690990991
+ ],
+ [
+ 139.71309610989013,
+ 35.72986709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.6",
+ "name": "池袋駅東口",
+ "latitude": 35.729612,
+ "longitude": 139.713464,
+ "polygon": [
+ [
+ 139.7133541098901,
+ 35.72970209009009
+ ],
+ [
+ 139.71357389010987,
+ 35.72970209009009
+ ],
+ [
+ 139.71357389010987,
+ 35.72952190990991
+ ],
+ [
+ 139.7133541098901,
+ 35.72952190990991
+ ],
+ [
+ 139.7133541098901,
+ 35.72970209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.7",
+ "name": "池袋駅東口",
+ "latitude": 35.729488,
+ "longitude": 139.713705,
+ "polygon": [
+ [
+ 139.71359510989012,
+ 35.729578090090094
+ ],
+ [
+ 139.7138148901099,
+ 35.729578090090094
+ ],
+ [
+ 139.7138148901099,
+ 35.72939790990991
+ ],
+ [
+ 139.71359510989012,
+ 35.72939790990991
+ ],
+ [
+ 139.71359510989012,
+ 35.729578090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.11",
+ "name": "池袋駅東口",
+ "latitude": 35.730832,
+ "longitude": 139.712674,
+ "polygon": [
+ [
+ 139.7125641098901,
+ 35.73092209009009
+ ],
+ [
+ 139.71278389010988,
+ 35.73092209009009
+ ],
+ [
+ 139.71278389010988,
+ 35.73074190990991
+ ],
+ [
+ 139.7125641098901,
+ 35.73074190990991
+ ],
+ [
+ 139.7125641098901,
+ 35.73092209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.12",
+ "name": "池袋駅東口",
+ "latitude": 35.730954,
+ "longitude": 139.712707,
+ "polygon": [
+ [
+ 139.7125971098901,
+ 35.73104409009009
+ ],
+ [
+ 139.71281689010988,
+ 35.73104409009009
+ ],
+ [
+ 139.71281689010988,
+ 35.73086390990991
+ ],
+ [
+ 139.7125971098901,
+ 35.73086390990991
+ ],
+ [
+ 139.7125971098901,
+ 35.73104409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.13",
+ "name": "池袋駅東口",
+ "latitude": 35.731063,
+ "longitude": 139.712739,
+ "polygon": [
+ [
+ 139.71262910989012,
+ 35.73115309009009
+ ],
+ [
+ 139.71284889010988,
+ 35.73115309009009
+ ],
+ [
+ 139.71284889010988,
+ 35.73097290990991
+ ],
+ [
+ 139.71262910989012,
+ 35.73097290990991
+ ],
+ [
+ 139.71262910989012,
+ 35.73115309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.14",
+ "name": "池袋駅東口",
+ "latitude": 35.731527,
+ "longitude": 139.713363,
+ "polygon": [
+ [
+ 139.7132531098901,
+ 35.73161709009009
+ ],
+ [
+ 139.71347289010987,
+ 35.73161709009009
+ ],
+ [
+ 139.71347289010987,
+ 35.73143690990991
+ ],
+ [
+ 139.7132531098901,
+ 35.73143690990991
+ ],
+ [
+ 139.7132531098901,
+ 35.73161709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.15",
+ "name": "池袋駅東口",
+ "latitude": 35.730774,
+ "longitude": 139.713106,
+ "polygon": [
+ [
+ 139.71299610989013,
+ 35.73086409009009
+ ],
+ [
+ 139.7132158901099,
+ 35.73086409009009
+ ],
+ [
+ 139.7132158901099,
+ 35.73068390990991
+ ],
+ [
+ 139.71299610989013,
+ 35.73068390990991
+ ],
+ [
+ 139.71299610989013,
+ 35.73086409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraSanchome.96.3",
+ "name": "石原三丁目",
+ "latitude": 35.701014,
+ "longitude": 139.804841,
+ "polygon": [
+ [
+ 139.80473110989013,
+ 35.70110409009009
+ ],
+ [
+ 139.8049508901099,
+ 35.70110409009009
+ ],
+ [
+ 139.8049508901099,
+ 35.70092390990991
+ ],
+ [
+ 139.80473110989013,
+ 35.70092390990991
+ ],
+ [
+ 139.80473110989013,
+ 35.70110409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.87.16",
+ "name": "池袋駅東口",
+ "latitude": 35.730957,
+ "longitude": 139.71307,
+ "polygon": [
+ [
+ 139.7129601098901,
+ 35.73104709009009
+ ],
+ [
+ 139.71317989010987,
+ 35.73104709009009
+ ],
+ [
+ 139.71317989010987,
+ 35.730866909909906
+ ],
+ [
+ 139.7129601098901,
+ 35.730866909909906
+ ],
+ [
+ 139.7129601098901,
+ 35.73104709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiIkebukuroNichome.89.1",
+ "name": "東池袋二丁目",
+ "latitude": 35.731637,
+ "longitude": 139.720569,
+ "polygon": [
+ [
+ 139.72045910989013,
+ 35.73172709009009
+ ],
+ [
+ 139.7206788901099,
+ 35.73172709009009
+ ],
+ [
+ 139.7206788901099,
+ 35.73154690990991
+ ],
+ [
+ 139.72045910989013,
+ 35.73154690990991
+ ],
+ [
+ 139.72045910989013,
+ 35.73172709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IwakuraOnsen.125.2",
+ "name": "岩蔵温泉",
+ "latitude": 35.826694,
+ "longitude": 139.290019,
+ "polygon": [
+ [
+ 139.28990910989012,
+ 35.826784090090094
+ ],
+ [
+ 139.29012889010988,
+ 35.826784090090094
+ ],
+ [
+ 139.29012889010988,
+ 35.82660390990991
+ ],
+ [
+ 139.28990910989012,
+ 35.82660390990991
+ ],
+ [
+ 139.28990910989012,
+ 35.826784090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiIkebukuroNichome.89.2",
+ "name": "東池袋二丁目",
+ "latitude": 35.731609,
+ "longitude": 139.720208,
+ "polygon": [
+ [
+ 139.72009810989013,
+ 35.73169909009009
+ ],
+ [
+ 139.7203178901099,
+ 35.73169909009009
+ ],
+ [
+ 139.7203178901099,
+ 35.73151890990991
+ ],
+ [
+ 139.72009810989013,
+ 35.73151890990991
+ ],
+ [
+ 139.72009810989013,
+ 35.73169909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ishikiribashi.91.1",
+ "name": "石切橋",
+ "latitude": 35.709139,
+ "longitude": 139.735208,
+ "polygon": [
+ [
+ 139.73509810989012,
+ 35.70922909009009
+ ],
+ [
+ 139.73531789010988,
+ 35.70922909009009
+ ],
+ [
+ 139.73531789010988,
+ 35.70904890990991
+ ],
+ [
+ 139.73509810989012,
+ 35.70904890990991
+ ],
+ [
+ 139.73509810989012,
+ 35.70922909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ishikiribashi.91.2",
+ "name": "石切橋",
+ "latitude": 35.708834,
+ "longitude": 139.73543,
+ "polygon": [
+ [
+ 139.73532010989013,
+ 35.70892409009009
+ ],
+ [
+ 139.7355398901099,
+ 35.70892409009009
+ ],
+ [
+ 139.7355398901099,
+ 35.70874390990991
+ ],
+ [
+ 139.73532010989013,
+ 35.70874390990991
+ ],
+ [
+ 139.73532010989013,
+ 35.70892409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ishijima.92.2",
+ "name": "石島",
+ "latitude": 35.680889,
+ "longitude": 139.81149,
+ "polygon": [
+ [
+ 139.8113801098901,
+ 35.68097909009009
+ ],
+ [
+ 139.81159989010987,
+ 35.68097909009009
+ ],
+ [
+ 139.81159989010987,
+ 35.68079890990991
+ ],
+ [
+ 139.8113801098901,
+ 35.68079890990991
+ ],
+ [
+ 139.8113801098901,
+ 35.68097909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaNakanochoKosaten.102.1",
+ "name": "市谷仲之町交差点",
+ "latitude": 35.694357,
+ "longitude": 139.72444,
+ "polygon": [
+ [
+ 139.7243301098901,
+ 35.69444709009009
+ ],
+ [
+ 139.72454989010987,
+ 35.69444709009009
+ ],
+ [
+ 139.72454989010987,
+ 35.694266909909906
+ ],
+ [
+ 139.7243301098901,
+ 35.694266909909906
+ ],
+ [
+ 139.7243301098901,
+ 35.69444709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ishihata.93.1",
+ "name": "石畑",
+ "latitude": 35.766865,
+ "longitude": 139.35839,
+ "polygon": [
+ [
+ 139.35828010989013,
+ 35.76695509009009
+ ],
+ [
+ 139.3584998901099,
+ 35.76695509009009
+ ],
+ [
+ 139.3584998901099,
+ 35.76677490990991
+ ],
+ [
+ 139.35828010989013,
+ 35.76677490990991
+ ],
+ [
+ 139.35828010989013,
+ 35.76695509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ishihata.93.2",
+ "name": "石畑",
+ "latitude": 35.767362,
+ "longitude": 139.356919,
+ "polygon": [
+ [
+ 139.35680910989012,
+ 35.76745209009009
+ ],
+ [
+ 139.3570288901099,
+ 35.76745209009009
+ ],
+ [
+ 139.3570288901099,
+ 35.76727190990991
+ ],
+ [
+ 139.35680910989012,
+ 35.76727190990991
+ ],
+ [
+ 139.35680910989012,
+ 35.76745209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraItchome.94.1",
+ "name": "石原一丁目",
+ "latitude": 35.700211,
+ "longitude": 139.798264,
+ "polygon": [
+ [
+ 139.7981541098901,
+ 35.70030109009009
+ ],
+ [
+ 139.79837389010987,
+ 35.70030109009009
+ ],
+ [
+ 139.79837389010987,
+ 35.70012090990991
+ ],
+ [
+ 139.7981541098901,
+ 35.70012090990991
+ ],
+ [
+ 139.7981541098901,
+ 35.70030109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraItchome.94.2",
+ "name": "石原一丁目",
+ "latitude": 35.70036,
+ "longitude": 139.797919,
+ "polygon": [
+ [
+ 139.79780910989012,
+ 35.700450090090094
+ ],
+ [
+ 139.7980288901099,
+ 35.700450090090094
+ ],
+ [
+ 139.7980288901099,
+ 35.70026990990991
+ ],
+ [
+ 139.79780910989012,
+ 35.70026990990991
+ ],
+ [
+ 139.79780910989012,
+ 35.700450090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraItchome.94.3",
+ "name": "石原一丁目",
+ "latitude": 35.69965,
+ "longitude": 139.797303,
+ "polygon": [
+ [
+ 139.79719310989012,
+ 35.69974009009009
+ ],
+ [
+ 139.79741289010988,
+ 35.69974009009009
+ ],
+ [
+ 139.79741289010988,
+ 35.69955990990991
+ ],
+ [
+ 139.79719310989012,
+ 35.69955990990991
+ ],
+ [
+ 139.79719310989012,
+ 35.69974009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraItchome.94.4",
+ "name": "石原一丁目",
+ "latitude": 35.699672,
+ "longitude": 139.797084,
+ "polygon": [
+ [
+ 139.79697410989013,
+ 35.69976209009009
+ ],
+ [
+ 139.7971938901099,
+ 35.69976209009009
+ ],
+ [
+ 139.7971938901099,
+ 35.69958190990991
+ ],
+ [
+ 139.79697410989013,
+ 35.69958190990991
+ ],
+ [
+ 139.79697410989013,
+ 35.69976209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraNichome.95.1",
+ "name": "石原二丁目",
+ "latitude": 35.700475,
+ "longitude": 139.80046,
+ "polygon": [
+ [
+ 139.8003501098901,
+ 35.70056509009009
+ ],
+ [
+ 139.80056989010987,
+ 35.70056509009009
+ ],
+ [
+ 139.80056989010987,
+ 35.70038490990991
+ ],
+ [
+ 139.8003501098901,
+ 35.70038490990991
+ ],
+ [
+ 139.8003501098901,
+ 35.70056509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraNichome.95.2",
+ "name": "石原二丁目",
+ "latitude": 35.700325,
+ "longitude": 139.800747,
+ "polygon": [
+ [
+ 139.80063710989012,
+ 35.70041509009009
+ ],
+ [
+ 139.80085689010988,
+ 35.70041509009009
+ ],
+ [
+ 139.80085689010988,
+ 35.70023490990991
+ ],
+ [
+ 139.80063710989012,
+ 35.70023490990991
+ ],
+ [
+ 139.80063710989012,
+ 35.70041509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraSanchome.96.1",
+ "name": "石原三丁目",
+ "latitude": 35.700521,
+ "longitude": 139.804418,
+ "polygon": [
+ [
+ 139.80430810989012,
+ 35.70061109009009
+ ],
+ [
+ 139.80452789010988,
+ 35.70061109009009
+ ],
+ [
+ 139.80452789010988,
+ 35.70043090990991
+ ],
+ [
+ 139.80430810989012,
+ 35.70043090990991
+ ],
+ [
+ 139.80430810989012,
+ 35.70061109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraSanchome.96.2",
+ "name": "石原三丁目",
+ "latitude": 35.70069,
+ "longitude": 139.8041,
+ "polygon": [
+ [
+ 139.80399010989012,
+ 35.70078009009009
+ ],
+ [
+ 139.8042098901099,
+ 35.70078009009009
+ ],
+ [
+ 139.8042098901099,
+ 35.70059990990991
+ ],
+ [
+ 139.80399010989012,
+ 35.70059990990991
+ ],
+ [
+ 139.80399010989012,
+ 35.70078009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraSanchome.96.4",
+ "name": "石原三丁目",
+ "latitude": 35.701195,
+ "longitude": 139.805031,
+ "polygon": [
+ [
+ 139.80492110989013,
+ 35.70128509009009
+ ],
+ [
+ 139.8051408901099,
+ 35.70128509009009
+ ],
+ [
+ 139.8051408901099,
+ 35.70110490990991
+ ],
+ [
+ 139.80492110989013,
+ 35.70110490990991
+ ],
+ [
+ 139.80492110989013,
+ 35.70128509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaNakanochoKosaten.102.2",
+ "name": "市谷仲之町交差点",
+ "latitude": 35.694906,
+ "longitude": 139.724901,
+ "polygon": [
+ [
+ 139.7247911098901,
+ 35.69499609009009
+ ],
+ [
+ 139.72501089010987,
+ 35.69499609009009
+ ],
+ [
+ 139.72501089010987,
+ 35.69481590990991
+ ],
+ [
+ 139.7247911098901,
+ 35.69481590990991
+ ],
+ [
+ 139.7247911098901,
+ 35.69499609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraYonchome.97.1",
+ "name": "石原四丁目",
+ "latitude": 35.700639,
+ "longitude": 139.806659,
+ "polygon": [
+ [
+ 139.8065491098901,
+ 35.70072909009009
+ ],
+ [
+ 139.80676889010988,
+ 35.70072909009009
+ ],
+ [
+ 139.80676889010988,
+ 35.70054890990991
+ ],
+ [
+ 139.8065491098901,
+ 35.70054890990991
+ ],
+ [
+ 139.8065491098901,
+ 35.70072909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IshiwaraYonchome.97.2",
+ "name": "石原四丁目",
+ "latitude": 35.700833,
+ "longitude": 139.806832,
+ "polygon": [
+ [
+ 139.80672210989013,
+ 35.70092309009009
+ ],
+ [
+ 139.8069418901099,
+ 35.70092309009009
+ ],
+ [
+ 139.8069418901099,
+ 35.70074290990991
+ ],
+ [
+ 139.80672210989013,
+ 35.70074290990991
+ ],
+ [
+ 139.80672210989013,
+ 35.70092309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IzumiItchome.98.1",
+ "name": "和泉一丁目",
+ "latitude": 35.676238,
+ "longitude": 139.65865,
+ "polygon": [
+ [
+ 139.6585401098901,
+ 35.67632809009009
+ ],
+ [
+ 139.65875989010988,
+ 35.67632809009009
+ ],
+ [
+ 139.65875989010988,
+ 35.67614790990991
+ ],
+ [
+ 139.6585401098901,
+ 35.67614790990991
+ ],
+ [
+ 139.6585401098901,
+ 35.67632809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IzumiItchome.98.2",
+ "name": "和泉一丁目",
+ "latitude": 35.675592,
+ "longitude": 139.659177,
+ "polygon": [
+ [
+ 139.65906710989012,
+ 35.67568209009009
+ ],
+ [
+ 139.65928689010988,
+ 35.67568209009009
+ ],
+ [
+ 139.65928689010988,
+ 35.67550190990991
+ ],
+ [
+ 139.65906710989012,
+ 35.67550190990991
+ ],
+ [
+ 139.65906710989012,
+ 35.67568209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeGochome.104.2",
+ "name": "一之江五丁目",
+ "latitude": 35.690603,
+ "longitude": 139.878412,
+ "polygon": [
+ [
+ 139.87830210989011,
+ 35.69069309009009
+ ],
+ [
+ 139.87852189010988,
+ 35.69069309009009
+ ],
+ [
+ 139.87852189010988,
+ 35.69051290990991
+ ],
+ [
+ 139.87830210989011,
+ 35.69051290990991
+ ],
+ [
+ 139.87830210989011,
+ 35.69069309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaStation.99.1",
+ "name": "市ヶ谷駅前",
+ "latitude": 35.691358,
+ "longitude": 139.736745,
+ "polygon": [
+ [
+ 139.73663510989013,
+ 35.69144809009009
+ ],
+ [
+ 139.7368548901099,
+ 35.69144809009009
+ ],
+ [
+ 139.7368548901099,
+ 35.69126790990991
+ ],
+ [
+ 139.73663510989013,
+ 35.69126790990991
+ ],
+ [
+ 139.73663510989013,
+ 35.69144809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaStation.99.2",
+ "name": "市ヶ谷駅前",
+ "latitude": 35.691229,
+ "longitude": 139.736915,
+ "polygon": [
+ [
+ 139.73680510989013,
+ 35.69131909009009
+ ],
+ [
+ 139.7370248901099,
+ 35.69131909009009
+ ],
+ [
+ 139.7370248901099,
+ 35.69113890990991
+ ],
+ [
+ 139.73680510989013,
+ 35.69113890990991
+ ],
+ [
+ 139.73680510989013,
+ 35.69131909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaStation.99.3",
+ "name": "市ヶ谷駅前",
+ "latitude": 35.69053,
+ "longitude": 139.735804,
+ "polygon": [
+ [
+ 139.73569410989012,
+ 35.69062009009009
+ ],
+ [
+ 139.73591389010988,
+ 35.69062009009009
+ ],
+ [
+ 139.73591389010988,
+ 35.69043990990991
+ ],
+ [
+ 139.73569410989012,
+ 35.69043990990991
+ ],
+ [
+ 139.73569410989012,
+ 35.69062009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaStation.99.4",
+ "name": "市ヶ谷駅前",
+ "latitude": 35.690279,
+ "longitude": 139.73558,
+ "polygon": [
+ [
+ 139.73547010989012,
+ 35.69036909009009
+ ],
+ [
+ 139.73568989010988,
+ 35.69036909009009
+ ],
+ [
+ 139.73568989010988,
+ 35.69018890990991
+ ],
+ [
+ 139.73547010989012,
+ 35.69018890990991
+ ],
+ [
+ 139.73547010989012,
+ 35.69036909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Boeisho.100.1",
+ "name": "防衛省前",
+ "latitude": 35.691178,
+ "longitude": 139.731248,
+ "polygon": [
+ [
+ 139.7311381098901,
+ 35.69126809009009
+ ],
+ [
+ 139.73135789010988,
+ 35.69126809009009
+ ],
+ [
+ 139.73135789010988,
+ 35.69108790990991
+ ],
+ [
+ 139.7311381098901,
+ 35.69108790990991
+ ],
+ [
+ 139.7311381098901,
+ 35.69126809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Boeisho.100.2",
+ "name": "防衛省前",
+ "latitude": 35.69095,
+ "longitude": 139.729901,
+ "polygon": [
+ [
+ 139.72979110989013,
+ 35.69104009009009
+ ],
+ [
+ 139.7300108901099,
+ 35.69104009009009
+ ],
+ [
+ 139.7300108901099,
+ 35.69085990990991
+ ],
+ [
+ 139.72979110989013,
+ 35.69085990990991
+ ],
+ [
+ 139.72979110989013,
+ 35.69104009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaTamachi.101.1",
+ "name": "市谷田町",
+ "latitude": 35.695185,
+ "longitude": 139.736687,
+ "polygon": [
+ [
+ 139.7365771098901,
+ 35.69527509009009
+ ],
+ [
+ 139.73679689010987,
+ 35.69527509009009
+ ],
+ [
+ 139.73679689010987,
+ 35.69509490990991
+ ],
+ [
+ 139.7365771098901,
+ 35.69509490990991
+ ],
+ [
+ 139.7365771098901,
+ 35.69527509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaTamachi.101.2",
+ "name": "市谷田町",
+ "latitude": 35.694793,
+ "longitude": 139.736992,
+ "polygon": [
+ [
+ 139.7368821098901,
+ 35.69488309009009
+ ],
+ [
+ 139.73710189010987,
+ 35.69488309009009
+ ],
+ [
+ 139.73710189010987,
+ 35.69470290990991
+ ],
+ [
+ 139.7368821098901,
+ 35.69470290990991
+ ],
+ [
+ 139.7368821098901,
+ 35.69488309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaTomihisacho.103.1",
+ "name": "市ヶ谷富久町",
+ "latitude": 35.69131,
+ "longitude": 139.717455,
+ "polygon": [
+ [
+ 139.71734510989012,
+ 35.69140009009009
+ ],
+ [
+ 139.71756489010988,
+ 35.69140009009009
+ ],
+ [
+ 139.71756489010988,
+ 35.69121990990991
+ ],
+ [
+ 139.71734510989012,
+ 35.69121990990991
+ ],
+ [
+ 139.71734510989012,
+ 35.69140009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchigayaTomihisacho.103.2",
+ "name": "市ヶ谷富久町",
+ "latitude": 35.691091,
+ "longitude": 139.71716,
+ "polygon": [
+ [
+ 139.71705010989012,
+ 35.69118109009009
+ ],
+ [
+ 139.7172698901099,
+ 35.69118109009009
+ ],
+ [
+ 139.7172698901099,
+ 35.69100090990991
+ ],
+ [
+ 139.71705010989012,
+ 35.69100090990991
+ ],
+ [
+ 139.71705010989012,
+ 35.69118109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeGochome.104.1",
+ "name": "一之江五丁目",
+ "latitude": 35.689868,
+ "longitude": 139.879246,
+ "polygon": [
+ [
+ 139.8791361098901,
+ 35.68995809009009
+ ],
+ [
+ 139.87935589010988,
+ 35.68995809009009
+ ],
+ [
+ 139.87935589010988,
+ 35.68977790990991
+ ],
+ [
+ 139.8791361098901,
+ 35.68977790990991
+ ],
+ [
+ 139.8791361098901,
+ 35.68995809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeGochome.104.3",
+ "name": "一之江五丁目",
+ "latitude": 35.690391,
+ "longitude": 139.878553,
+ "polygon": [
+ [
+ 139.87844310989013,
+ 35.69048109009009
+ ],
+ [
+ 139.8786628901099,
+ 35.69048109009009
+ ],
+ [
+ 139.8786628901099,
+ 35.69030090990991
+ ],
+ [
+ 139.87844310989013,
+ 35.69030090990991
+ ],
+ [
+ 139.87844310989013,
+ 35.69048109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NiihoriItchome.107.2",
+ "name": "新堀一丁目",
+ "latitude": 35.702016,
+ "longitude": 139.888487,
+ "polygon": [
+ [
+ 139.88837710989011,
+ 35.70210609009009
+ ],
+ [
+ 139.88859689010988,
+ 35.70210609009009
+ ],
+ [
+ 139.88859689010988,
+ 35.70192590990991
+ ],
+ [
+ 139.88837710989011,
+ 35.70192590990991
+ ],
+ [
+ 139.88837710989011,
+ 35.70210609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeKosokuIriguchi.105.1",
+ "name": "一之江高速入口",
+ "latitude": 35.69693,
+ "longitude": 139.882329,
+ "polygon": [
+ [
+ 139.88221910989012,
+ 35.69702009009009
+ ],
+ [
+ 139.88243889010988,
+ 35.69702009009009
+ ],
+ [
+ 139.88243889010988,
+ 35.69683990990991
+ ],
+ [
+ 139.88221910989012,
+ 35.69683990990991
+ ],
+ [
+ 139.88221910989012,
+ 35.69702009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeKosokuIriguchi.105.2",
+ "name": "一之江高速入口",
+ "latitude": 35.698359,
+ "longitude": 139.881791,
+ "polygon": [
+ [
+ 139.8816811098901,
+ 35.698449090090094
+ ],
+ [
+ 139.88190089010988,
+ 35.698449090090094
+ ],
+ [
+ 139.88190089010988,
+ 35.69826890990991
+ ],
+ [
+ 139.8816811098901,
+ 35.69826890990991
+ ],
+ [
+ 139.8816811098901,
+ 35.698449090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoebashiNishizume.106.1",
+ "name": "一之江橋西詰",
+ "latitude": 35.700616,
+ "longitude": 139.88188,
+ "polygon": [
+ [
+ 139.8817701098901,
+ 35.70070609009009
+ ],
+ [
+ 139.88198989010988,
+ 35.70070609009009
+ ],
+ [
+ 139.88198989010988,
+ 35.700525909909906
+ ],
+ [
+ 139.8817701098901,
+ 35.700525909909906
+ ],
+ [
+ 139.8817701098901,
+ 35.70070609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Edogawabashi.176.2",
+ "name": "江戸川橋",
+ "latitude": 35.711334,
+ "longitude": 139.731153,
+ "polygon": [
+ [
+ 139.73104310989012,
+ 35.71142409009009
+ ],
+ [
+ 139.7312628901099,
+ 35.71142409009009
+ ],
+ [
+ 139.7312628901099,
+ 35.71124390990991
+ ],
+ [
+ 139.73104310989012,
+ 35.71124390990991
+ ],
+ [
+ 139.73104310989012,
+ 35.71142409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoebashiNishizume.106.2",
+ "name": "一之江橋西詰",
+ "latitude": 35.701473,
+ "longitude": 139.881445,
+ "polygon": [
+ [
+ 139.88133510989013,
+ 35.70156309009009
+ ],
+ [
+ 139.8815548901099,
+ 35.70156309009009
+ ],
+ [
+ 139.8815548901099,
+ 35.70138290990991
+ ],
+ [
+ 139.88133510989013,
+ 35.70138290990991
+ ],
+ [
+ 139.88133510989013,
+ 35.70156309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NiihoriItchome.107.1",
+ "name": "新堀一丁目",
+ "latitude": 35.70224,
+ "longitude": 139.887621,
+ "polygon": [
+ [
+ 139.8875111098901,
+ 35.70233009009009
+ ],
+ [
+ 139.88773089010988,
+ 35.70233009009009
+ ],
+ [
+ 139.88773089010988,
+ 35.70214990990991
+ ],
+ [
+ 139.8875111098901,
+ 35.70214990990991
+ ],
+ [
+ 139.8875111098901,
+ 35.70233009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeNichome.108.1",
+ "name": "一之江二丁目",
+ "latitude": 35.693795,
+ "longitude": 139.882637,
+ "polygon": [
+ [
+ 139.8825271098901,
+ 35.69388509009009
+ ],
+ [
+ 139.88274689010987,
+ 35.69388509009009
+ ],
+ [
+ 139.88274689010987,
+ 35.69370490990991
+ ],
+ [
+ 139.8825271098901,
+ 35.69370490990991
+ ],
+ [
+ 139.8825271098901,
+ 35.69388509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeNichome.108.2",
+ "name": "一之江二丁目",
+ "latitude": 35.693641,
+ "longitude": 139.882403,
+ "polygon": [
+ [
+ 139.88229310989013,
+ 35.69373109009009
+ ],
+ [
+ 139.8825128901099,
+ 35.69373109009009
+ ],
+ [
+ 139.8825128901099,
+ 35.69355090990991
+ ],
+ [
+ 139.88229310989013,
+ 35.69355090990991
+ ],
+ [
+ 139.88229310989013,
+ 35.69373109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeYonchome.109.1",
+ "name": "一之江四丁目",
+ "latitude": 35.687887,
+ "longitude": 139.881994,
+ "polygon": [
+ [
+ 139.8818841098901,
+ 35.687977090090094
+ ],
+ [
+ 139.88210389010987,
+ 35.687977090090094
+ ],
+ [
+ 139.88210389010987,
+ 35.68779690990991
+ ],
+ [
+ 139.8818841098901,
+ 35.68779690990991
+ ],
+ [
+ 139.8818841098901,
+ 35.687977090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeYonchome.109.2",
+ "name": "一之江四丁目",
+ "latitude": 35.688564,
+ "longitude": 139.88096,
+ "polygon": [
+ [
+ 139.8808501098901,
+ 35.68865409009009
+ ],
+ [
+ 139.88106989010987,
+ 35.68865409009009
+ ],
+ [
+ 139.88106989010987,
+ 35.68847390990991
+ ],
+ [
+ 139.8808501098901,
+ 35.68847390990991
+ ],
+ [
+ 139.8808501098901,
+ 35.68865409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeNanachome.110.1",
+ "name": "一之江七丁目",
+ "latitude": 35.687236,
+ "longitude": 139.877141,
+ "polygon": [
+ [
+ 139.8770311098901,
+ 35.68732609009009
+ ],
+ [
+ 139.87725089010988,
+ 35.68732609009009
+ ],
+ [
+ 139.87725089010988,
+ 35.68714590990991
+ ],
+ [
+ 139.8770311098901,
+ 35.68714590990991
+ ],
+ [
+ 139.8770311098901,
+ 35.68732609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeNanachome.110.2",
+ "name": "一之江七丁目",
+ "latitude": 35.686976,
+ "longitude": 139.87714,
+ "polygon": [
+ [
+ 139.87703010989011,
+ 35.68706609009009
+ ],
+ [
+ 139.87724989010988,
+ 35.68706609009009
+ ],
+ [
+ 139.87724989010988,
+ 35.68688590990991
+ ],
+ [
+ 139.87703010989011,
+ 35.68688590990991
+ ],
+ [
+ 139.87703010989011,
+ 35.68706609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AzabujubanStation.111.1",
+ "name": "麻布十番駅前",
+ "latitude": 35.655673,
+ "longitude": 139.736946,
+ "polygon": [
+ [
+ 139.7368361098901,
+ 35.65576309009009
+ ],
+ [
+ 139.73705589010987,
+ 35.65576309009009
+ ],
+ [
+ 139.73705589010987,
+ 35.65558290990991
+ ],
+ [
+ 139.7368361098901,
+ 35.65558290990991
+ ],
+ [
+ 139.7368361098901,
+ 35.65576309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AzabujubanStation.111.3",
+ "name": "麻布十番駅前",
+ "latitude": 35.65456,
+ "longitude": 139.737166,
+ "polygon": [
+ [
+ 139.73705610989012,
+ 35.65465009009009
+ ],
+ [
+ 139.73727589010988,
+ 35.65465009009009
+ ],
+ [
+ 139.73727589010988,
+ 35.654469909909906
+ ],
+ [
+ 139.73705610989012,
+ 35.654469909909906
+ ],
+ [
+ 139.73705610989012,
+ 35.65465009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AzabujubanStation.111.4",
+ "name": "麻布十番駅前",
+ "latitude": 35.654359,
+ "longitude": 139.736794,
+ "polygon": [
+ [
+ 139.73668410989012,
+ 35.65444909009009
+ ],
+ [
+ 139.7369038901099,
+ 35.65444909009009
+ ],
+ [
+ 139.7369038901099,
+ 35.65426890990991
+ ],
+ [
+ 139.73668410989012,
+ 35.65426890990991
+ ],
+ [
+ 139.73668410989012,
+ 35.65444909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ippommatsu.114.1",
+ "name": "一本松",
+ "latitude": 35.747075,
+ "longitude": 139.783319,
+ "polygon": [
+ [
+ 139.78320910989012,
+ 35.74716509009009
+ ],
+ [
+ 139.7834288901099,
+ 35.74716509009009
+ ],
+ [
+ 139.7834288901099,
+ 35.74698490990991
+ ],
+ [
+ 139.78320910989012,
+ 35.74698490990991
+ ],
+ [
+ 139.78320910989012,
+ 35.74716509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ippommatsu.114.2",
+ "name": "一本松",
+ "latitude": 35.747383,
+ "longitude": 139.78368,
+ "polygon": [
+ [
+ 139.78357010989012,
+ 35.74747309009009
+ ],
+ [
+ 139.7837898901099,
+ 35.74747309009009
+ ],
+ [
+ 139.7837898901099,
+ 35.74729290990991
+ ],
+ [
+ 139.78357010989012,
+ 35.74729290990991
+ ],
+ [
+ 139.78357010989012,
+ 35.74747309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.InariJinja.115.1",
+ "name": "稲荷神社前(いなりじんじゃまえ(えどがわく))",
+ "latitude": 35.669494,
+ "longitude": 139.862034,
+ "polygon": [
+ [
+ 139.8619241098901,
+ 35.66958409009009
+ ],
+ [
+ 139.86214389010988,
+ 35.66958409009009
+ ],
+ [
+ 139.86214389010988,
+ 35.66940390990991
+ ],
+ [
+ 139.8619241098901,
+ 35.66940390990991
+ ],
+ [
+ 139.8619241098901,
+ 35.66958409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.InariJinja.115.2",
+ "name": "稲荷神社前(いなりじんじゃまえ(えどがわく))",
+ "latitude": 35.668963,
+ "longitude": 139.864301,
+ "polygon": [
+ [
+ 139.86419110989013,
+ 35.66905309009009
+ ],
+ [
+ 139.8644108901099,
+ 35.66905309009009
+ ],
+ [
+ 139.8644108901099,
+ 35.66887290990991
+ ],
+ [
+ 139.86419110989013,
+ 35.66887290990991
+ ],
+ [
+ 139.86419110989013,
+ 35.66905309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Inaridai.116.1",
+ "name": "稲荷台",
+ "latitude": 35.7624,
+ "longitude": 139.710141,
+ "polygon": [
+ [
+ 139.7100311098901,
+ 35.76249009009009
+ ],
+ [
+ 139.71025089010988,
+ 35.76249009009009
+ ],
+ [
+ 139.71025089010988,
+ 35.76230990990991
+ ],
+ [
+ 139.7100311098901,
+ 35.76230990990991
+ ],
+ [
+ 139.7100311098901,
+ 35.76249009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Inaridai.116.2",
+ "name": "稲荷台",
+ "latitude": 35.762556,
+ "longitude": 139.710066,
+ "polygon": [
+ [
+ 139.70995610989013,
+ 35.76264609009009
+ ],
+ [
+ 139.7101758901099,
+ 35.76264609009009
+ ],
+ [
+ 139.7101758901099,
+ 35.762465909909906
+ ],
+ [
+ 139.70995610989013,
+ 35.762465909909906
+ ],
+ [
+ 139.70995610989013,
+ 35.76264609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Imai.118.1",
+ "name": "今井",
+ "latitude": 35.682871,
+ "longitude": 139.888714,
+ "polygon": [
+ [
+ 139.8886041098901,
+ 35.68296109009009
+ ],
+ [
+ 139.88882389010988,
+ 35.68296109009009
+ ],
+ [
+ 139.88882389010988,
+ 35.68278090990991
+ ],
+ [
+ 139.8886041098901,
+ 35.68278090990991
+ ],
+ [
+ 139.8886041098901,
+ 35.68296109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Edagawa.166.2",
+ "name": "枝川",
+ "latitude": 35.658053,
+ "longitude": 139.802642,
+ "polygon": [
+ [
+ 139.8025321098901,
+ 35.65814309009009
+ ],
+ [
+ 139.80275189010987,
+ 35.65814309009009
+ ],
+ [
+ 139.80275189010987,
+ 35.65796290990991
+ ],
+ [
+ 139.8025321098901,
+ 35.65796290990991
+ ],
+ [
+ 139.8025321098901,
+ 35.65814309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Imai.118.2",
+ "name": "今井",
+ "latitude": 35.683459,
+ "longitude": 139.887548,
+ "polygon": [
+ [
+ 139.88743810989013,
+ 35.68354909009009
+ ],
+ [
+ 139.8876578901099,
+ 35.68354909009009
+ ],
+ [
+ 139.8876578901099,
+ 35.68336890990991
+ ],
+ [
+ 139.88743810989013,
+ 35.68336890990991
+ ],
+ [
+ 139.88743810989013,
+ 35.68354909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Imai.118.3",
+ "name": "今井",
+ "latitude": 35.682591,
+ "longitude": 139.888599,
+ "polygon": [
+ [
+ 139.88848910989012,
+ 35.68268109009009
+ ],
+ [
+ 139.88870889010988,
+ 35.68268109009009
+ ],
+ [
+ 139.88870889010988,
+ 35.68250090990991
+ ],
+ [
+ 139.88848910989012,
+ 35.68250090990991
+ ],
+ [
+ 139.88848910989012,
+ 35.68268109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Imado.119.1",
+ "name": "今戸",
+ "latitude": 35.721081,
+ "longitude": 139.80188,
+ "polygon": [
+ [
+ 139.80177010989013,
+ 35.72117109009009
+ ],
+ [
+ 139.8019898901099,
+ 35.72117109009009
+ ],
+ [
+ 139.8019898901099,
+ 35.72099090990991
+ ],
+ [
+ 139.80177010989013,
+ 35.72099090990991
+ ],
+ [
+ 139.80177010989013,
+ 35.72117109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Imado.119.2",
+ "name": "今戸",
+ "latitude": 35.720417,
+ "longitude": 139.80175,
+ "polygon": [
+ [
+ 139.80164010989012,
+ 35.72050709009009
+ ],
+ [
+ 139.80185989010988,
+ 35.72050709009009
+ ],
+ [
+ 139.80185989010988,
+ 35.72032690990991
+ ],
+ [
+ 139.80164010989012,
+ 35.72032690990991
+ ],
+ [
+ 139.80164010989012,
+ 35.72050709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Imokubo.120.1",
+ "name": "芋窪",
+ "latitude": 35.755279,
+ "longitude": 139.416156,
+ "polygon": [
+ [
+ 139.41604610989012,
+ 35.75536909009009
+ ],
+ [
+ 139.41626589010988,
+ 35.75536909009009
+ ],
+ [
+ 139.41626589010988,
+ 35.75518890990991
+ ],
+ [
+ 139.41604610989012,
+ 35.75518890990991
+ ],
+ [
+ 139.41604610989012,
+ 35.75536909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoKoen.132.10",
+ "name": "上野公園",
+ "latitude": 35.709627,
+ "longitude": 139.772073,
+ "polygon": [
+ [
+ 139.77196310989012,
+ 35.70971709009009
+ ],
+ [
+ 139.7721828901099,
+ 35.70971709009009
+ ],
+ [
+ 139.7721828901099,
+ 35.70953690990991
+ ],
+ [
+ 139.77196310989012,
+ 35.70953690990991
+ ],
+ [
+ 139.77196310989012,
+ 35.70971709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Imokubo.120.2",
+ "name": "芋窪",
+ "latitude": 35.755104,
+ "longitude": 139.4166,
+ "polygon": [
+ [
+ 139.4164901098901,
+ 35.75519409009009
+ ],
+ [
+ 139.41670989010987,
+ 35.75519409009009
+ ],
+ [
+ 139.41670989010987,
+ 35.75501390990991
+ ],
+ [
+ 139.4164901098901,
+ 35.75501390990991
+ ],
+ [
+ 139.4164901098901,
+ 35.75519409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IriyaKishimojin.121.1",
+ "name": "入谷鬼子母神",
+ "latitude": 35.720203,
+ "longitude": 139.783058,
+ "polygon": [
+ [
+ 139.78294810989013,
+ 35.72029309009009
+ ],
+ [
+ 139.7831678901099,
+ 35.72029309009009
+ ],
+ [
+ 139.7831678901099,
+ 35.72011290990991
+ ],
+ [
+ 139.78294810989013,
+ 35.72011290990991
+ ],
+ [
+ 139.78294810989013,
+ 35.72029309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IriyaKishimojin.121.2",
+ "name": "入谷鬼子母神",
+ "latitude": 35.71998,
+ "longitude": 139.78316,
+ "polygon": [
+ [
+ 139.78305010989013,
+ 35.72007009009009
+ ],
+ [
+ 139.7832698901099,
+ 35.72007009009009
+ ],
+ [
+ 139.7832698901099,
+ 35.71988990990991
+ ],
+ [
+ 139.78305010989013,
+ 35.71988990990991
+ ],
+ [
+ 139.78305010989013,
+ 35.72007009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IriyaNichome.122.1",
+ "name": "入谷二丁目",
+ "latitude": 35.718097,
+ "longitude": 139.789714,
+ "polygon": [
+ [
+ 139.78960410989012,
+ 35.71818709009009
+ ],
+ [
+ 139.7898238901099,
+ 35.71818709009009
+ ],
+ [
+ 139.7898238901099,
+ 35.71800690990991
+ ],
+ [
+ 139.78960410989012,
+ 35.71800690990991
+ ],
+ [
+ 139.78960410989012,
+ 35.71818709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IriyaNichome.122.2",
+ "name": "入谷二丁目",
+ "latitude": 35.717923,
+ "longitude": 139.789864,
+ "polygon": [
+ [
+ 139.7897541098901,
+ 35.71801309009009
+ ],
+ [
+ 139.78997389010988,
+ 35.71801309009009
+ ],
+ [
+ 139.78997389010988,
+ 35.71783290990991
+ ],
+ [
+ 139.7897541098901,
+ 35.71783290990991
+ ],
+ [
+ 139.7897541098901,
+ 35.71801309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Iwaido.124.1",
+ "name": "岩井堂",
+ "latitude": 35.832688,
+ "longitude": 139.297021,
+ "polygon": [
+ [
+ 139.29691110989012,
+ 35.83277809009009
+ ],
+ [
+ 139.29713089010988,
+ 35.83277809009009
+ ],
+ [
+ 139.29713089010988,
+ 35.83259790990991
+ ],
+ [
+ 139.29691110989012,
+ 35.83259790990991
+ ],
+ [
+ 139.29691110989012,
+ 35.83277809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Iwaido.124.2",
+ "name": "岩井堂",
+ "latitude": 35.832836,
+ "longitude": 139.296955,
+ "polygon": [
+ [
+ 139.2968451098901,
+ 35.83292609009009
+ ],
+ [
+ 139.29706489010988,
+ 35.83292609009009
+ ],
+ [
+ 139.29706489010988,
+ 35.83274590990991
+ ],
+ [
+ 139.2968451098901,
+ 35.83274590990991
+ ],
+ [
+ 139.2968451098901,
+ 35.83292609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Iwabuchimachi.126.1",
+ "name": "岩淵町",
+ "latitude": 35.782871,
+ "longitude": 139.725289,
+ "polygon": [
+ [
+ 139.72517910989012,
+ 35.78296109009009
+ ],
+ [
+ 139.7253988901099,
+ 35.78296109009009
+ ],
+ [
+ 139.7253988901099,
+ 35.78278090990991
+ ],
+ [
+ 139.72517910989012,
+ 35.78278090990991
+ ],
+ [
+ 139.72517910989012,
+ 35.78296109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Iwabuchimachi.126.2",
+ "name": "岩淵町",
+ "latitude": 35.78266,
+ "longitude": 139.725465,
+ "polygon": [
+ [
+ 139.72535510989013,
+ 35.78275009009009
+ ],
+ [
+ 139.7255748901099,
+ 35.78275009009009
+ ],
+ [
+ 139.7255748901099,
+ 35.78256990990991
+ ],
+ [
+ 139.72535510989013,
+ 35.78256990990991
+ ],
+ [
+ 139.72535510989013,
+ 35.78275009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IwamotochoStation.128.8",
+ "name": "岩本町駅前",
+ "latitude": 35.695657,
+ "longitude": 139.776409,
+ "polygon": [
+ [
+ 139.77629910989012,
+ 35.69574709009009
+ ],
+ [
+ 139.77651889010988,
+ 35.69574709009009
+ ],
+ [
+ 139.77651889010988,
+ 35.69556690990991
+ ],
+ [
+ 139.77629910989012,
+ 35.69556690990991
+ ],
+ [
+ 139.77629910989012,
+ 35.69574709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IwamotochoItchome.129.1",
+ "name": "岩本町一丁目",
+ "latitude": 35.692237,
+ "longitude": 139.777245,
+ "polygon": [
+ [
+ 139.7771351098901,
+ 35.69232709009009
+ ],
+ [
+ 139.77735489010988,
+ 35.69232709009009
+ ],
+ [
+ 139.77735489010988,
+ 35.69214690990991
+ ],
+ [
+ 139.7771351098901,
+ 35.69214690990991
+ ],
+ [
+ 139.7771351098901,
+ 35.69232709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoStation.131.1",
+ "name": "上野駅前",
+ "latitude": 35.71197,
+ "longitude": 139.777124,
+ "polygon": [
+ [
+ 139.7770141098901,
+ 35.71206009009009
+ ],
+ [
+ 139.77723389010987,
+ 35.71206009009009
+ ],
+ [
+ 139.77723389010987,
+ 35.71187990990991
+ ],
+ [
+ 139.7770141098901,
+ 35.71187990990991
+ ],
+ [
+ 139.7770141098901,
+ 35.71206009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoStation.131.2",
+ "name": "上野駅前",
+ "latitude": 35.711829,
+ "longitude": 139.776905,
+ "polygon": [
+ [
+ 139.77679510989012,
+ 35.71191909009009
+ ],
+ [
+ 139.77701489010988,
+ 35.71191909009009
+ ],
+ [
+ 139.77701489010988,
+ 35.71173890990991
+ ],
+ [
+ 139.77679510989012,
+ 35.71173890990991
+ ],
+ [
+ 139.77679510989012,
+ 35.71191909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoStation.131.3",
+ "name": "上野駅前",
+ "latitude": 35.711766,
+ "longitude": 139.776802,
+ "polygon": [
+ [
+ 139.77669210989012,
+ 35.71185609009009
+ ],
+ [
+ 139.7769118901099,
+ 35.71185609009009
+ ],
+ [
+ 139.7769118901099,
+ 35.71167590990991
+ ],
+ [
+ 139.77669210989012,
+ 35.71167590990991
+ ],
+ [
+ 139.77669210989012,
+ 35.71185609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoStation.131.5",
+ "name": "上野駅前",
+ "latitude": 35.711432,
+ "longitude": 139.775325,
+ "polygon": [
+ [
+ 139.77521510989013,
+ 35.71152209009009
+ ],
+ [
+ 139.7754348901099,
+ 35.71152209009009
+ ],
+ [
+ 139.7754348901099,
+ 35.71134190990991
+ ],
+ [
+ 139.77521510989013,
+ 35.71134190990991
+ ],
+ [
+ 139.77521510989013,
+ 35.71152209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoKoen.132.8",
+ "name": "上野公園",
+ "latitude": 35.709784,
+ "longitude": 139.77191,
+ "polygon": [
+ [
+ 139.7718001098901,
+ 35.70987409009009
+ ],
+ [
+ 139.77201989010987,
+ 35.70987409009009
+ ],
+ [
+ 139.77201989010987,
+ 35.70969390990991
+ ],
+ [
+ 139.7718001098901,
+ 35.70969390990991
+ ],
+ [
+ 139.7718001098901,
+ 35.70987409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoKoen.132.9",
+ "name": "上野公園",
+ "latitude": 35.709731,
+ "longitude": 139.771579,
+ "polygon": [
+ [
+ 139.77146910989012,
+ 35.70982109009009
+ ],
+ [
+ 139.77168889010989,
+ 35.70982109009009
+ ],
+ [
+ 139.77168889010989,
+ 35.70964090990991
+ ],
+ [
+ 139.77146910989012,
+ 35.70964090990991
+ ],
+ [
+ 139.77146910989012,
+ 35.70982109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GotandaStation.559.1",
+ "name": "五反田駅",
+ "latitude": 35.62633,
+ "longitude": 139.724471,
+ "polygon": [
+ [
+ 139.7243611098901,
+ 35.62642009009009
+ ],
+ [
+ 139.72458089010988,
+ 35.62642009009009
+ ],
+ [
+ 139.72458089010988,
+ 35.62623990990991
+ ],
+ [
+ 139.7243611098901,
+ 35.62623990990991
+ ],
+ [
+ 139.7243611098901,
+ 35.62642009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoSakuragi.134.1",
+ "name": "上野桜木",
+ "latitude": 35.722632,
+ "longitude": 139.774398,
+ "polygon": [
+ [
+ 139.7742881098901,
+ 35.72272209009009
+ ],
+ [
+ 139.77450789010987,
+ 35.72272209009009
+ ],
+ [
+ 139.77450789010987,
+ 35.72254190990991
+ ],
+ [
+ 139.7742881098901,
+ 35.72254190990991
+ ],
+ [
+ 139.7742881098901,
+ 35.72272209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoKoen.132.11",
+ "name": "上野公園",
+ "latitude": 35.709391,
+ "longitude": 139.770971,
+ "polygon": [
+ [
+ 139.77086110989012,
+ 35.70948109009009
+ ],
+ [
+ 139.77108089010989,
+ 35.70948109009009
+ ],
+ [
+ 139.77108089010989,
+ 35.709300909909906
+ ],
+ [
+ 139.77086110989012,
+ 35.709300909909906
+ ],
+ [
+ 139.77086110989012,
+ 35.70948109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoKoenYamashita.133.6",
+ "name": "上野公園山下",
+ "latitude": 35.711047,
+ "longitude": 139.773961,
+ "polygon": [
+ [
+ 139.77385110989013,
+ 35.71113709009009
+ ],
+ [
+ 139.7740708901099,
+ 35.71113709009009
+ ],
+ [
+ 139.7740708901099,
+ 35.71095690990991
+ ],
+ [
+ 139.77385110989013,
+ 35.71095690990991
+ ],
+ [
+ 139.77385110989013,
+ 35.71113709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoKoenYamashita.133.7",
+ "name": "上野公園山下",
+ "latitude": 35.711009,
+ "longitude": 139.774239,
+ "polygon": [
+ [
+ 139.7741291098901,
+ 35.71109909009009
+ ],
+ [
+ 139.77434889010988,
+ 35.71109909009009
+ ],
+ [
+ 139.77434889010988,
+ 35.71091890990991
+ ],
+ [
+ 139.7741291098901,
+ 35.71091890990991
+ ],
+ [
+ 139.7741291098901,
+ 35.71109909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoKoenYamashita.133.8",
+ "name": "上野公園山下",
+ "latitude": 35.711238,
+ "longitude": 139.77408,
+ "polygon": [
+ [
+ 139.77397010989012,
+ 35.71132809009009
+ ],
+ [
+ 139.77418989010988,
+ 35.71132809009009
+ ],
+ [
+ 139.77418989010988,
+ 35.71114790990991
+ ],
+ [
+ 139.77397010989012,
+ 35.71114790990991
+ ],
+ [
+ 139.77397010989012,
+ 35.71132809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoKoenYamashita.133.9",
+ "name": "上野公園山下",
+ "latitude": 35.711093,
+ "longitude": 139.774292,
+ "polygon": [
+ [
+ 139.77418210989012,
+ 35.71118309009009
+ ],
+ [
+ 139.77440189010989,
+ 35.71118309009009
+ ],
+ [
+ 139.77440189010989,
+ 35.71100290990991
+ ],
+ [
+ 139.77418210989012,
+ 35.71100290990991
+ ],
+ [
+ 139.77418210989012,
+ 35.71118309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoSakuragi.134.2",
+ "name": "上野桜木",
+ "latitude": 35.722623,
+ "longitude": 139.77421,
+ "polygon": [
+ [
+ 139.77410010989013,
+ 35.72271309009009
+ ],
+ [
+ 139.7743198901099,
+ 35.72271309009009
+ ],
+ [
+ 139.7743198901099,
+ 35.72253290990991
+ ],
+ [
+ 139.77410010989013,
+ 35.72253290990991
+ ],
+ [
+ 139.77410010989013,
+ 35.72271309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoHirokoji.135.5",
+ "name": "上野広小路",
+ "latitude": 35.7087,
+ "longitude": 139.773104,
+ "polygon": [
+ [
+ 139.7729941098901,
+ 35.70879009009009
+ ],
+ [
+ 139.77321389010987,
+ 35.70879009009009
+ ],
+ [
+ 139.77321389010987,
+ 35.70860990990991
+ ],
+ [
+ 139.7729941098901,
+ 35.70860990990991
+ ],
+ [
+ 139.7729941098901,
+ 35.70879009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoHirokoji.135.8",
+ "name": "上野広小路",
+ "latitude": 35.708187,
+ "longitude": 139.771968,
+ "polygon": [
+ [
+ 139.7718581098901,
+ 35.70827709009009
+ ],
+ [
+ 139.77207789010987,
+ 35.70827709009009
+ ],
+ [
+ 139.77207789010987,
+ 35.70809690990991
+ ],
+ [
+ 139.7718581098901,
+ 35.70809690990991
+ ],
+ [
+ 139.7718581098901,
+ 35.70827709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoHirokoji.135.9",
+ "name": "上野広小路",
+ "latitude": 35.707992,
+ "longitude": 139.772281,
+ "polygon": [
+ [
+ 139.7721711098901,
+ 35.70808209009009
+ ],
+ [
+ 139.77239089010988,
+ 35.70808209009009
+ ],
+ [
+ 139.77239089010988,
+ 35.70790190990991
+ ],
+ [
+ 139.7721711098901,
+ 35.70790190990991
+ ],
+ [
+ 139.7721711098901,
+ 35.70808209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ukita.136.1",
+ "name": "宇喜田",
+ "latitude": 35.670171,
+ "longitude": 139.857611,
+ "polygon": [
+ [
+ 139.8575011098901,
+ 35.670261090090094
+ ],
+ [
+ 139.85772089010987,
+ 35.670261090090094
+ ],
+ [
+ 139.85772089010987,
+ 35.67008090990991
+ ],
+ [
+ 139.8575011098901,
+ 35.67008090990991
+ ],
+ [
+ 139.8575011098901,
+ 35.670261090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeKitamachi.138.1",
+ "name": "牛込北町",
+ "latitude": 35.699541,
+ "longitude": 139.732428,
+ "polygon": [
+ [
+ 139.73231810989012,
+ 35.699631090090094
+ ],
+ [
+ 139.73253789010988,
+ 35.699631090090094
+ ],
+ [
+ 139.73253789010988,
+ 35.69945090990991
+ ],
+ [
+ 139.73231810989012,
+ 35.69945090990991
+ ],
+ [
+ 139.73231810989012,
+ 35.699631090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ukita.136.2",
+ "name": "宇喜田",
+ "latitude": 35.669895,
+ "longitude": 139.85798,
+ "polygon": [
+ [
+ 139.85787010989011,
+ 35.66998509009009
+ ],
+ [
+ 139.85808989010988,
+ 35.66998509009009
+ ],
+ [
+ 139.85808989010988,
+ 35.66980490990991
+ ],
+ [
+ 139.85787010989011,
+ 35.66980490990991
+ ],
+ [
+ 139.85787010989011,
+ 35.66998509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ukita.136.3",
+ "name": "宇喜田",
+ "latitude": 35.670717,
+ "longitude": 139.856797,
+ "polygon": [
+ [
+ 139.85668710989012,
+ 35.67080709009009
+ ],
+ [
+ 139.85690689010988,
+ 35.67080709009009
+ ],
+ [
+ 139.85690689010988,
+ 35.67062690990991
+ ],
+ [
+ 139.85668710989012,
+ 35.67062690990991
+ ],
+ [
+ 139.85668710989012,
+ 35.67080709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ukita.136.4",
+ "name": "宇喜田",
+ "latitude": 35.669621,
+ "longitude": 139.856475,
+ "polygon": [
+ [
+ 139.8563651098901,
+ 35.66971109009009
+ ],
+ [
+ 139.85658489010987,
+ 35.66971109009009
+ ],
+ [
+ 139.85658489010987,
+ 35.66953090990991
+ ],
+ [
+ 139.8563651098901,
+ 35.66953090990991
+ ],
+ [
+ 139.8563651098901,
+ 35.66971109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeHokenCenter.140.1",
+ "name": "牛込保健センター前",
+ "latitude": 35.703671,
+ "longitude": 139.726597,
+ "polygon": [
+ [
+ 139.72648710989012,
+ 35.70376109009009
+ ],
+ [
+ 139.72670689010988,
+ 35.70376109009009
+ ],
+ [
+ 139.72670689010988,
+ 35.70358090990991
+ ],
+ [
+ 139.72648710989012,
+ 35.70358090990991
+ ],
+ [
+ 139.72648710989012,
+ 35.70376109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UguisudaniStation.137.1",
+ "name": "鶯谷駅前",
+ "latitude": 35.7224,
+ "longitude": 139.779357,
+ "polygon": [
+ [
+ 139.77924710989012,
+ 35.72249009009009
+ ],
+ [
+ 139.7794668901099,
+ 35.72249009009009
+ ],
+ [
+ 139.7794668901099,
+ 35.72230990990991
+ ],
+ [
+ 139.77924710989012,
+ 35.72230990990991
+ ],
+ [
+ 139.77924710989012,
+ 35.72249009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UguisudaniStation.137.2",
+ "name": "鶯谷駅前",
+ "latitude": 35.722753,
+ "longitude": 139.779414,
+ "polygon": [
+ [
+ 139.77930410989012,
+ 35.72284309009009
+ ],
+ [
+ 139.77952389010989,
+ 35.72284309009009
+ ],
+ [
+ 139.77952389010989,
+ 35.72266290990991
+ ],
+ [
+ 139.77930410989012,
+ 35.72266290990991
+ ],
+ [
+ 139.77930410989012,
+ 35.72284309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeKitamachi.138.2",
+ "name": "牛込北町",
+ "latitude": 35.699685,
+ "longitude": 139.732508,
+ "polygon": [
+ [
+ 139.7323981098901,
+ 35.69977509009009
+ ],
+ [
+ 139.73261789010988,
+ 35.69977509009009
+ ],
+ [
+ 139.73261789010988,
+ 35.69959490990991
+ ],
+ [
+ 139.7323981098901,
+ 35.69959490990991
+ ],
+ [
+ 139.7323981098901,
+ 35.69977509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeBentencho.139.1",
+ "name": "牛込弁天町",
+ "latitude": 35.702229,
+ "longitude": 139.726567,
+ "polygon": [
+ [
+ 139.7264571098901,
+ 35.70231909009009
+ ],
+ [
+ 139.72667689010987,
+ 35.70231909009009
+ ],
+ [
+ 139.72667689010987,
+ 35.70213890990991
+ ],
+ [
+ 139.7264571098901,
+ 35.70213890990991
+ ],
+ [
+ 139.7264571098901,
+ 35.70231909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeBentencho.139.2",
+ "name": "牛込弁天町",
+ "latitude": 35.70234,
+ "longitude": 139.726731,
+ "polygon": [
+ [
+ 139.72662110989012,
+ 35.70243009009009
+ ],
+ [
+ 139.72684089010988,
+ 35.70243009009009
+ ],
+ [
+ 139.72684089010988,
+ 35.70224990990991
+ ],
+ [
+ 139.72662110989012,
+ 35.70224990990991
+ ],
+ [
+ 139.72662110989012,
+ 35.70243009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeHokenCenter.140.2",
+ "name": "牛込保健センター前",
+ "latitude": 35.703769,
+ "longitude": 139.726754,
+ "polygon": [
+ [
+ 139.72664410989012,
+ 35.70385909009009
+ ],
+ [
+ 139.72686389010988,
+ 35.70385909009009
+ ],
+ [
+ 139.72686389010988,
+ 35.70367890990991
+ ],
+ [
+ 139.72664410989012,
+ 35.70367890990991
+ ],
+ [
+ 139.72664410989012,
+ 35.70385909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeYanagichoStation.141.1",
+ "name": "牛込柳町駅前",
+ "latitude": 35.699545,
+ "longitude": 139.725209,
+ "polygon": [
+ [
+ 139.72509910989012,
+ 35.69963509009009
+ ],
+ [
+ 139.7253188901099,
+ 35.69963509009009
+ ],
+ [
+ 139.7253188901099,
+ 35.69945490990991
+ ],
+ [
+ 139.72509910989012,
+ 35.69945490990991
+ ],
+ [
+ 139.72509910989012,
+ 35.69963509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeYanagichoStation.141.2",
+ "name": "牛込柳町駅前",
+ "latitude": 35.698498,
+ "longitude": 139.725792,
+ "polygon": [
+ [
+ 139.72568210989013,
+ 35.69858809009009
+ ],
+ [
+ 139.7259018901099,
+ 35.69858809009009
+ ],
+ [
+ 139.7259018901099,
+ 35.69840790990991
+ ],
+ [
+ 139.72568210989013,
+ 35.69840790990991
+ ],
+ [
+ 139.72568210989013,
+ 35.69858809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeYanagichoStation.141.3",
+ "name": "牛込柳町駅前",
+ "latitude": 35.700568,
+ "longitude": 139.726603,
+ "polygon": [
+ [
+ 139.72649310989013,
+ 35.70065809009009
+ ],
+ [
+ 139.7267128901099,
+ 35.70065809009009
+ ],
+ [
+ 139.7267128901099,
+ 35.70047790990991
+ ],
+ [
+ 139.72649310989013,
+ 35.70047790990991
+ ],
+ [
+ 139.72649310989013,
+ 35.70065809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ubagabashi.146.1",
+ "name": "姥ヶ橋",
+ "latitude": 35.76335,
+ "longitude": 139.712491,
+ "polygon": [
+ [
+ 139.71238110989012,
+ 35.76344009009009
+ ],
+ [
+ 139.71260089010988,
+ 35.76344009009009
+ ],
+ [
+ 139.71260089010988,
+ 35.76325990990991
+ ],
+ [
+ 139.71238110989012,
+ 35.76325990990991
+ ],
+ [
+ 139.71238110989012,
+ 35.76344009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeYanagichoStation.141.4",
+ "name": "牛込柳町駅前",
+ "latitude": 35.699324,
+ "longitude": 139.726735,
+ "polygon": [
+ [
+ 139.7266251098901,
+ 35.69941409009009
+ ],
+ [
+ 139.72684489010987,
+ 35.69941409009009
+ ],
+ [
+ 139.72684489010987,
+ 35.69923390990991
+ ],
+ [
+ 139.7266251098901,
+ 35.69923390990991
+ ],
+ [
+ 139.7266251098901,
+ 35.69941409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Udagawacho.142.1",
+ "name": "宇田川町",
+ "latitude": 35.662546,
+ "longitude": 139.696636,
+ "polygon": [
+ [
+ 139.69652610989013,
+ 35.66263609009009
+ ],
+ [
+ 139.6967458901099,
+ 35.66263609009009
+ ],
+ [
+ 139.6967458901099,
+ 35.66245590990991
+ ],
+ [
+ 139.69652610989013,
+ 35.66245590990991
+ ],
+ [
+ 139.69652610989013,
+ 35.66263609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UchiKandaItchome.143.1",
+ "name": "内神田一丁目",
+ "latitude": 35.691375,
+ "longitude": 139.764833,
+ "polygon": [
+ [
+ 139.76472310989013,
+ 35.69146509009009
+ ],
+ [
+ 139.7649428901099,
+ 35.69146509009009
+ ],
+ [
+ 139.7649428901099,
+ 35.69128490990991
+ ],
+ [
+ 139.76472310989013,
+ 35.69128490990991
+ ],
+ [
+ 139.76472310989013,
+ 35.69146509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Uchisaiwaicho.144.2",
+ "name": "内幸町",
+ "latitude": 35.670834,
+ "longitude": 139.755351,
+ "polygon": [
+ [
+ 139.7552411098901,
+ 35.67092409009009
+ ],
+ [
+ 139.75546089010987,
+ 35.67092409009009
+ ],
+ [
+ 139.75546089010987,
+ 35.67074390990991
+ ],
+ [
+ 139.7552411098901,
+ 35.67074390990991
+ ],
+ [
+ 139.7552411098901,
+ 35.67092409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Uchisaiwaicho.144.3",
+ "name": "内幸町",
+ "latitude": 35.669778,
+ "longitude": 139.755797,
+ "polygon": [
+ [
+ 139.75568710989012,
+ 35.66986809009009
+ ],
+ [
+ 139.75590689010988,
+ 35.66986809009009
+ ],
+ [
+ 139.75590689010988,
+ 35.66968790990991
+ ],
+ [
+ 139.75568710989012,
+ 35.66968790990991
+ ],
+ [
+ 139.75568710989012,
+ 35.66986809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ubagabashi.146.2",
+ "name": "姥ヶ橋",
+ "latitude": 35.763142,
+ "longitude": 139.712666,
+ "polygon": [
+ [
+ 139.71255610989013,
+ 35.76323209009009
+ ],
+ [
+ 139.7127758901099,
+ 35.76323209009009
+ ],
+ [
+ 139.7127758901099,
+ 35.76305190990991
+ ],
+ [
+ 139.71255610989013,
+ 35.76305190990991
+ ],
+ [
+ 139.71255610989013,
+ 35.76323209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuramaeStation.147.1",
+ "name": "蔵前駅前",
+ "latitude": 35.705575,
+ "longitude": 139.792549,
+ "polygon": [
+ [
+ 139.79243910989013,
+ 35.70566509009009
+ ],
+ [
+ 139.7926588901099,
+ 35.70566509009009
+ ],
+ [
+ 139.7926588901099,
+ 35.70548490990991
+ ],
+ [
+ 139.79243910989013,
+ 35.70548490990991
+ ],
+ [
+ 139.79243910989013,
+ 35.70566509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuramaeStation.147.2",
+ "name": "蔵前駅前",
+ "latitude": 35.705469,
+ "longitude": 139.792277,
+ "polygon": [
+ [
+ 139.79216710989013,
+ 35.70555909009009
+ ],
+ [
+ 139.7923868901099,
+ 35.70555909009009
+ ],
+ [
+ 139.7923868901099,
+ 35.70537890990991
+ ],
+ [
+ 139.79216710989013,
+ 35.70537890990991
+ ],
+ [
+ 139.79216710989013,
+ 35.70555909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuramaeStation.147.3",
+ "name": "蔵前駅前",
+ "latitude": 35.704975,
+ "longitude": 139.792842,
+ "polygon": [
+ [
+ 139.79273210989012,
+ 35.70506509009009
+ ],
+ [
+ 139.7929518901099,
+ 35.70506509009009
+ ],
+ [
+ 139.7929518901099,
+ 35.70488490990991
+ ],
+ [
+ 139.79273210989012,
+ 35.70488490990991
+ ],
+ [
+ 139.79273210989012,
+ 35.70506509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuramaeStation.147.4",
+ "name": "蔵前駅前",
+ "latitude": 35.705784,
+ "longitude": 139.794033,
+ "polygon": [
+ [
+ 139.79392310989013,
+ 35.70587409009009
+ ],
+ [
+ 139.7941428901099,
+ 35.70587409009009
+ ],
+ [
+ 139.7941428901099,
+ 35.70569390990991
+ ],
+ [
+ 139.79392310989013,
+ 35.70569390990991
+ ],
+ [
+ 139.79392310989013,
+ 35.70587409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Umegadaira.148.1",
+ "name": "梅ヶ平",
+ "latitude": 35.833085,
+ "longitude": 139.224557,
+ "polygon": [
+ [
+ 139.22444710989012,
+ 35.83317509009009
+ ],
+ [
+ 139.2246668901099,
+ 35.83317509009009
+ ],
+ [
+ 139.2246668901099,
+ 35.83299490990991
+ ],
+ [
+ 139.22444710989012,
+ 35.83299490990991
+ ],
+ [
+ 139.22444710989012,
+ 35.83317509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Umegadaira.148.2",
+ "name": "梅ヶ平",
+ "latitude": 35.833194,
+ "longitude": 139.224518,
+ "polygon": [
+ [
+ 139.2244081098901,
+ 35.83328409009009
+ ],
+ [
+ 139.22462789010987,
+ 35.83328409009009
+ ],
+ [
+ 139.22462789010987,
+ 35.83310390990991
+ ],
+ [
+ 139.2244081098901,
+ 35.83310390990991
+ ],
+ [
+ 139.2244081098901,
+ 35.83328409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmejimaStation.149.1",
+ "name": "梅島駅前",
+ "latitude": 35.774536,
+ "longitude": 139.797642,
+ "polygon": [
+ [
+ 139.7975321098901,
+ 35.77462609009009
+ ],
+ [
+ 139.79775189010988,
+ 35.77462609009009
+ ],
+ [
+ 139.79775189010988,
+ 35.77444590990991
+ ],
+ [
+ 139.7975321098901,
+ 35.77444590990991
+ ],
+ [
+ 139.7975321098901,
+ 35.77462609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmejimaStation.149.2",
+ "name": "梅島駅前",
+ "latitude": 35.774159,
+ "longitude": 139.797517,
+ "polygon": [
+ [
+ 139.79740710989012,
+ 35.77424909009009
+ ],
+ [
+ 139.79762689010988,
+ 35.77424909009009
+ ],
+ [
+ 139.79762689010988,
+ 35.77406890990991
+ ],
+ [
+ 139.79740710989012,
+ 35.77406890990991
+ ],
+ [
+ 139.79740710989012,
+ 35.77424909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.LSophia.150.1",
+ "name": "エル・ソフィア前",
+ "latitude": 35.770934,
+ "longitude": 139.797544,
+ "polygon": [
+ [
+ 139.7974341098901,
+ 35.77102409009009
+ ],
+ [
+ 139.79765389010987,
+ 35.77102409009009
+ ],
+ [
+ 139.79765389010987,
+ 35.77084390990991
+ ],
+ [
+ 139.7974341098901,
+ 35.77084390990991
+ ],
+ [
+ 139.7974341098901,
+ 35.77102409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.LSophia.150.2",
+ "name": "エル・ソフィア前",
+ "latitude": 35.770987,
+ "longitude": 139.797417,
+ "polygon": [
+ [
+ 139.7973071098901,
+ 35.77107709009009
+ ],
+ [
+ 139.79752689010988,
+ 35.77107709009009
+ ],
+ [
+ 139.79752689010988,
+ 35.77089690990991
+ ],
+ [
+ 139.7973071098901,
+ 35.77089690990991
+ ],
+ [
+ 139.7973071098901,
+ 35.77107709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmejimaDainiShogakkoDori.151.1",
+ "name": "梅島第二小学校通り",
+ "latitude": 35.765002,
+ "longitude": 139.793159,
+ "polygon": [
+ [
+ 139.79304910989012,
+ 35.76509209009009
+ ],
+ [
+ 139.79326889010989,
+ 35.76509209009009
+ ],
+ [
+ 139.79326889010989,
+ 35.76491190990991
+ ],
+ [
+ 139.79304910989012,
+ 35.76491190990991
+ ],
+ [
+ 139.79304910989012,
+ 35.76509209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmejimaDainiShogakkoDori.151.2",
+ "name": "梅島第二小学校通り",
+ "latitude": 35.765232,
+ "longitude": 139.79324,
+ "polygon": [
+ [
+ 139.79313010989011,
+ 35.76532209009009
+ ],
+ [
+ 139.79334989010988,
+ 35.76532209009009
+ ],
+ [
+ 139.79334989010988,
+ 35.76514190990991
+ ],
+ [
+ 139.79313010989011,
+ 35.76514190990991
+ ],
+ [
+ 139.79313010989011,
+ 35.76532209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmejimaNichome.152.1",
+ "name": "梅島二丁目",
+ "latitude": 35.77655,
+ "longitude": 139.797539,
+ "polygon": [
+ [
+ 139.79742910989012,
+ 35.77664009009009
+ ],
+ [
+ 139.79764889010988,
+ 35.77664009009009
+ ],
+ [
+ 139.79764889010988,
+ 35.77645990990991
+ ],
+ [
+ 139.79742910989012,
+ 35.77645990990991
+ ],
+ [
+ 139.79742910989012,
+ 35.77664009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdagawaNichome.168.1",
+ "name": "枝川二丁目",
+ "latitude": 35.658924,
+ "longitude": 139.807247,
+ "polygon": [
+ [
+ 139.8071371098901,
+ 35.65901409009009
+ ],
+ [
+ 139.80735689010987,
+ 35.65901409009009
+ ],
+ [
+ 139.80735689010987,
+ 35.65883390990991
+ ],
+ [
+ 139.8071371098901,
+ 35.65883390990991
+ ],
+ [
+ 139.8071371098901,
+ 35.65901409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmejimaNichome.152.2",
+ "name": "梅島二丁目",
+ "latitude": 35.776105,
+ "longitude": 139.7977,
+ "polygon": [
+ [
+ 139.7975901098901,
+ 35.77619509009009
+ ],
+ [
+ 139.79780989010987,
+ 35.77619509009009
+ ],
+ [
+ 139.79780989010987,
+ 35.77601490990991
+ ],
+ [
+ 139.7975901098901,
+ 35.77601490990991
+ ],
+ [
+ 139.7975901098901,
+ 35.77619509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmejimaSanchome.153.1",
+ "name": "梅島三丁目",
+ "latitude": 35.778292,
+ "longitude": 139.7929,
+ "polygon": [
+ [
+ 139.79279010989012,
+ 35.77838209009009
+ ],
+ [
+ 139.7930098901099,
+ 35.77838209009009
+ ],
+ [
+ 139.7930098901099,
+ 35.77820190990991
+ ],
+ [
+ 139.79279010989012,
+ 35.77820190990991
+ ],
+ [
+ 139.79279010989012,
+ 35.77838209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmejimaSanchome.153.2",
+ "name": "梅島三丁目",
+ "latitude": 35.778522,
+ "longitude": 139.792894,
+ "polygon": [
+ [
+ 139.7927841098901,
+ 35.77861209009009
+ ],
+ [
+ 139.79300389010987,
+ 35.77861209009009
+ ],
+ [
+ 139.79300389010987,
+ 35.77843190990991
+ ],
+ [
+ 139.7927841098901,
+ 35.77843190990991
+ ],
+ [
+ 139.7927841098901,
+ 35.77861209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmedaShogakko.154.1",
+ "name": "梅田小学校前",
+ "latitude": 35.740451,
+ "longitude": 139.840028,
+ "polygon": [
+ [
+ 139.8399181098901,
+ 35.74054109009009
+ ],
+ [
+ 139.84013789010987,
+ 35.74054109009009
+ ],
+ [
+ 139.84013789010987,
+ 35.74036090990991
+ ],
+ [
+ 139.8399181098901,
+ 35.74036090990991
+ ],
+ [
+ 139.8399181098901,
+ 35.74054109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmedaShogakko.154.2",
+ "name": "梅田小学校前",
+ "latitude": 35.742203,
+ "longitude": 139.841571,
+ "polygon": [
+ [
+ 139.8414611098901,
+ 35.742293090090094
+ ],
+ [
+ 139.84168089010987,
+ 35.742293090090094
+ ],
+ [
+ 139.84168089010987,
+ 35.74211290990991
+ ],
+ [
+ 139.8414611098901,
+ 35.74211290990991
+ ],
+ [
+ 139.8414611098901,
+ 35.742293090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmedachoShimmeiDori.155.1",
+ "name": "梅田町神明通り",
+ "latitude": 35.766863,
+ "longitude": 139.794353,
+ "polygon": [
+ [
+ 139.79424310989012,
+ 35.76695309009009
+ ],
+ [
+ 139.79446289010988,
+ 35.76695309009009
+ ],
+ [
+ 139.79446289010988,
+ 35.76677290990991
+ ],
+ [
+ 139.79424310989012,
+ 35.76677290990991
+ ],
+ [
+ 139.79424310989012,
+ 35.76695309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmedachoShimmeiDori.155.2",
+ "name": "梅田町神明通り",
+ "latitude": 35.76757,
+ "longitude": 139.794774,
+ "polygon": [
+ [
+ 139.7946641098901,
+ 35.76766009009009
+ ],
+ [
+ 139.79488389010987,
+ 35.76766009009009
+ ],
+ [
+ 139.79488389010987,
+ 35.76747990990991
+ ],
+ [
+ 139.7946641098901,
+ 35.76747990990991
+ ],
+ [
+ 139.7946641098901,
+ 35.76766009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmedaNanachome.156.1",
+ "name": "梅田七丁目",
+ "latitude": 35.766537,
+ "longitude": 139.800811,
+ "polygon": [
+ [
+ 139.80070110989013,
+ 35.76662709009009
+ ],
+ [
+ 139.8009208901099,
+ 35.76662709009009
+ ],
+ [
+ 139.8009208901099,
+ 35.76644690990991
+ ],
+ [
+ 139.80070110989013,
+ 35.76644690990991
+ ],
+ [
+ 139.80070110989013,
+ 35.76662709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmedaNanachome.156.2",
+ "name": "梅田七丁目",
+ "latitude": 35.766884,
+ "longitude": 139.800594,
+ "polygon": [
+ [
+ 139.8004841098901,
+ 35.76697409009009
+ ],
+ [
+ 139.80070389010987,
+ 35.76697409009009
+ ],
+ [
+ 139.80070389010987,
+ 35.76679390990991
+ ],
+ [
+ 139.8004841098901,
+ 35.76679390990991
+ ],
+ [
+ 139.8004841098901,
+ 35.76697409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Urayasubashi.157.1",
+ "name": "浦安橋",
+ "latitude": 35.666468,
+ "longitude": 139.884357,
+ "polygon": [
+ [
+ 139.8842471098901,
+ 35.66655809009009
+ ],
+ [
+ 139.88446689010988,
+ 35.66655809009009
+ ],
+ [
+ 139.88446689010988,
+ 35.66637790990991
+ ],
+ [
+ 139.8842471098901,
+ 35.66637790990991
+ ],
+ [
+ 139.8842471098901,
+ 35.66655809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Urayasubashi.157.2",
+ "name": "浦安橋",
+ "latitude": 35.666137,
+ "longitude": 139.884645,
+ "polygon": [
+ [
+ 139.88453510989012,
+ 35.66622709009009
+ ],
+ [
+ 139.8847548901099,
+ 35.66622709009009
+ ],
+ [
+ 139.8847548901099,
+ 35.66604690990991
+ ],
+ [
+ 139.88453510989012,
+ 35.66604690990991
+ ],
+ [
+ 139.88453510989012,
+ 35.66622709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Eitaibashi.159.1",
+ "name": "永代橋",
+ "latitude": 35.677162,
+ "longitude": 139.785237,
+ "polygon": [
+ [
+ 139.7851271098901,
+ 35.67725209009009
+ ],
+ [
+ 139.78534689010988,
+ 35.67725209009009
+ ],
+ [
+ 139.78534689010988,
+ 35.67707190990991
+ ],
+ [
+ 139.7851271098901,
+ 35.67707190990991
+ ],
+ [
+ 139.7851271098901,
+ 35.67725209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Eitaibashi.159.2",
+ "name": "永代橋",
+ "latitude": 35.676884,
+ "longitude": 139.785272,
+ "polygon": [
+ [
+ 139.7851621098901,
+ 35.67697409009009
+ ],
+ [
+ 139.78538189010987,
+ 35.67697409009009
+ ],
+ [
+ 139.78538189010987,
+ 35.67679390990991
+ ],
+ [
+ 139.7851621098901,
+ 35.67679390990991
+ ],
+ [
+ 139.7851621098901,
+ 35.67697409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EitaiNichome.160.1",
+ "name": "永代二丁目",
+ "latitude": 35.673274,
+ "longitude": 139.792607,
+ "polygon": [
+ [
+ 139.79249710989012,
+ 35.67336409009009
+ ],
+ [
+ 139.7927168901099,
+ 35.67336409009009
+ ],
+ [
+ 139.7927168901099,
+ 35.67318390990991
+ ],
+ [
+ 139.79249710989012,
+ 35.67318390990991
+ ],
+ [
+ 139.79249710989012,
+ 35.67336409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EitaiNichome.160.2",
+ "name": "永代二丁目",
+ "latitude": 35.67361,
+ "longitude": 139.792404,
+ "polygon": [
+ [
+ 139.79229410989012,
+ 35.67370009009009
+ ],
+ [
+ 139.7925138901099,
+ 35.67370009009009
+ ],
+ [
+ 139.7925138901099,
+ 35.673519909909906
+ ],
+ [
+ 139.79229410989012,
+ 35.673519909909906
+ ],
+ [
+ 139.79229410989012,
+ 35.67370009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NerimaSogoByoinIriguchi.161.1",
+ "name": "練馬総合病院入口",
+ "latitude": 35.733138,
+ "longitude": 139.67635,
+ "polygon": [
+ [
+ 139.67624010989013,
+ 35.73322809009009
+ ],
+ [
+ 139.6764598901099,
+ 35.73322809009009
+ ],
+ [
+ 139.6764598901099,
+ 35.73304790990991
+ ],
+ [
+ 139.67624010989013,
+ 35.73304790990991
+ ],
+ [
+ 139.67624010989013,
+ 35.73322809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NerimaSogoByoinIriguchi.161.2",
+ "name": "練馬総合病院入口",
+ "latitude": 35.732894,
+ "longitude": 139.676461,
+ "polygon": [
+ [
+ 139.6763511098901,
+ 35.73298409009009
+ ],
+ [
+ 139.67657089010987,
+ 35.73298409009009
+ ],
+ [
+ 139.67657089010987,
+ 35.73280390990991
+ ],
+ [
+ 139.6763511098901,
+ 35.73280390990991
+ ],
+ [
+ 139.6763511098901,
+ 35.73298409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EkodaFutamata.162.1",
+ "name": "江古田二又",
+ "latitude": 35.736264,
+ "longitude": 139.672197,
+ "polygon": [
+ [
+ 139.67208710989013,
+ 35.73635409009009
+ ],
+ [
+ 139.6723068901099,
+ 35.73635409009009
+ ],
+ [
+ 139.6723068901099,
+ 35.73617390990991
+ ],
+ [
+ 139.67208710989013,
+ 35.73617390990991
+ ],
+ [
+ 139.67208710989013,
+ 35.73635409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EkodaFutamata.162.2",
+ "name": "江古田二又",
+ "latitude": 35.735947,
+ "longitude": 139.673217,
+ "polygon": [
+ [
+ 139.6731071098901,
+ 35.73603709009009
+ ],
+ [
+ 139.67332689010988,
+ 35.73603709009009
+ ],
+ [
+ 139.67332689010988,
+ 35.73585690990991
+ ],
+ [
+ 139.6731071098901,
+ 35.73585690990991
+ ],
+ [
+ 139.6731071098901,
+ 35.73603709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EgotaItchome.163.1",
+ "name": "江古田一丁目",
+ "latitude": 35.724053,
+ "longitude": 139.669879,
+ "polygon": [
+ [
+ 139.66976910989013,
+ 35.72414309009009
+ ],
+ [
+ 139.6699888901099,
+ 35.72414309009009
+ ],
+ [
+ 139.6699888901099,
+ 35.72396290990991
+ ],
+ [
+ 139.66976910989013,
+ 35.72396290990991
+ ],
+ [
+ 139.66976910989013,
+ 35.72414309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EgotaItchome.163.2",
+ "name": "江古田一丁目",
+ "latitude": 35.72376,
+ "longitude": 139.67173,
+ "polygon": [
+ [
+ 139.6716201098901,
+ 35.72385009009009
+ ],
+ [
+ 139.67183989010988,
+ 35.72385009009009
+ ],
+ [
+ 139.67183989010988,
+ 35.72366990990991
+ ],
+ [
+ 139.6716201098901,
+ 35.72366990990991
+ ],
+ [
+ 139.6716201098901,
+ 35.72385009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EgotaNichome.164.1",
+ "name": "江古田二丁目",
+ "latitude": 35.72392,
+ "longitude": 139.666727,
+ "polygon": [
+ [
+ 139.66661710989013,
+ 35.72401009009009
+ ],
+ [
+ 139.6668368901099,
+ 35.72401009009009
+ ],
+ [
+ 139.6668368901099,
+ 35.72382990990991
+ ],
+ [
+ 139.66661710989013,
+ 35.72382990990991
+ ],
+ [
+ 139.66661710989013,
+ 35.72401009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EgotaNichome.164.2",
+ "name": "江古田二丁目",
+ "latitude": 35.723836,
+ "longitude": 139.66651,
+ "polygon": [
+ [
+ 139.6664001098901,
+ 35.72392609009009
+ ],
+ [
+ 139.66661989010987,
+ 35.72392609009009
+ ],
+ [
+ 139.66661989010987,
+ 35.72374590990991
+ ],
+ [
+ 139.6664001098901,
+ 35.72374590990991
+ ],
+ [
+ 139.6664001098901,
+ 35.72392609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EgotaSanchome.165.1",
+ "name": "江古田三丁目",
+ "latitude": 35.725906,
+ "longitude": 139.66773,
+ "polygon": [
+ [
+ 139.66762010989012,
+ 35.72599609009009
+ ],
+ [
+ 139.6678398901099,
+ 35.72599609009009
+ ],
+ [
+ 139.6678398901099,
+ 35.72581590990991
+ ],
+ [
+ 139.66762010989012,
+ 35.72581590990991
+ ],
+ [
+ 139.66762010989012,
+ 35.72599609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EgotaSanchome.165.2",
+ "name": "江古田三丁目",
+ "latitude": 35.726238,
+ "longitude": 139.667737,
+ "polygon": [
+ [
+ 139.6676271098901,
+ 35.72632809009009
+ ],
+ [
+ 139.66784689010987,
+ 35.72632809009009
+ ],
+ [
+ 139.66784689010987,
+ 35.72614790990991
+ ],
+ [
+ 139.6676271098901,
+ 35.72614790990991
+ ],
+ [
+ 139.6676271098901,
+ 35.72632809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Edagawa.166.1",
+ "name": "枝川",
+ "latitude": 35.657926,
+ "longitude": 139.80133,
+ "polygon": [
+ [
+ 139.80122010989012,
+ 35.65801609009009
+ ],
+ [
+ 139.8014398901099,
+ 35.65801609009009
+ ],
+ [
+ 139.8014398901099,
+ 35.65783590990991
+ ],
+ [
+ 139.80122010989012,
+ 35.65783590990991
+ ],
+ [
+ 139.80122010989012,
+ 35.65801609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Edagawa.166.3",
+ "name": "枝川",
+ "latitude": 35.657765,
+ "longitude": 139.801598,
+ "polygon": [
+ [
+ 139.80148810989013,
+ 35.65785509009009
+ ],
+ [
+ 139.8017078901099,
+ 35.65785509009009
+ ],
+ [
+ 139.8017078901099,
+ 35.65767490990991
+ ],
+ [
+ 139.80148810989013,
+ 35.65767490990991
+ ],
+ [
+ 139.80148810989013,
+ 35.65785509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdagawaItchome.167.1",
+ "name": "枝川一丁目",
+ "latitude": 35.656856,
+ "longitude": 139.804407,
+ "polygon": [
+ [
+ 139.80429710989011,
+ 35.65694609009009
+ ],
+ [
+ 139.80451689010988,
+ 35.65694609009009
+ ],
+ [
+ 139.80451689010988,
+ 35.65676590990991
+ ],
+ [
+ 139.80429710989011,
+ 35.65676590990991
+ ],
+ [
+ 139.80429710989011,
+ 35.65694609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdagawaItchome.167.2",
+ "name": "枝川一丁目",
+ "latitude": 35.657131,
+ "longitude": 139.80452,
+ "polygon": [
+ [
+ 139.8044101098901,
+ 35.65722109009009
+ ],
+ [
+ 139.80462989010988,
+ 35.65722109009009
+ ],
+ [
+ 139.80462989010988,
+ 35.65704090990991
+ ],
+ [
+ 139.8044101098901,
+ 35.65704090990991
+ ],
+ [
+ 139.8044101098901,
+ 35.65722109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdagawaNichome.168.2",
+ "name": "枝川二丁目",
+ "latitude": 35.658843,
+ "longitude": 139.807411,
+ "polygon": [
+ [
+ 139.80730110989012,
+ 35.65893309009009
+ ],
+ [
+ 139.80752089010988,
+ 35.65893309009009
+ ],
+ [
+ 139.80752089010988,
+ 35.65875290990991
+ ],
+ [
+ 139.80730110989012,
+ 35.65875290990991
+ ],
+ [
+ 139.80730110989012,
+ 35.65893309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdagawaNichome.168.3",
+ "name": "枝川二丁目",
+ "latitude": 35.659268,
+ "longitude": 139.805885,
+ "polygon": [
+ [
+ 139.8057751098901,
+ 35.65935809009009
+ ],
+ [
+ 139.80599489010987,
+ 35.65935809009009
+ ],
+ [
+ 139.80599489010987,
+ 35.65917790990991
+ ],
+ [
+ 139.8057751098901,
+ 35.65917790990991
+ ],
+ [
+ 139.8057751098901,
+ 35.65935809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdagawaNichome.168.4",
+ "name": "枝川二丁目",
+ "latitude": 35.659547,
+ "longitude": 139.80573,
+ "polygon": [
+ [
+ 139.80562010989013,
+ 35.659637090090094
+ ],
+ [
+ 139.8058398901099,
+ 35.659637090090094
+ ],
+ [
+ 139.8058398901099,
+ 35.65945690990991
+ ],
+ [
+ 139.80562010989013,
+ 35.65945690990991
+ ],
+ [
+ 139.80562010989013,
+ 35.659637090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Etchujima.170.2",
+ "name": "越中島",
+ "latitude": 35.66872,
+ "longitude": 139.791853,
+ "polygon": [
+ [
+ 139.79174310989012,
+ 35.66881009009009
+ ],
+ [
+ 139.7919628901099,
+ 35.66881009009009
+ ],
+ [
+ 139.7919628901099,
+ 35.66862990990991
+ ],
+ [
+ 139.79174310989012,
+ 35.66862990990991
+ ],
+ [
+ 139.79174310989012,
+ 35.66881009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Etchujima.170.3",
+ "name": "越中島",
+ "latitude": 35.669887,
+ "longitude": 139.792269,
+ "polygon": [
+ [
+ 139.79215910989012,
+ 35.66997709009009
+ ],
+ [
+ 139.7923788901099,
+ 35.66997709009009
+ ],
+ [
+ 139.7923788901099,
+ 35.66979690990991
+ ],
+ [
+ 139.79215910989012,
+ 35.66979690990991
+ ],
+ [
+ 139.79215910989012,
+ 35.66997709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaKuyakusho.171.1",
+ "name": "江戸川区役所前",
+ "latitude": 35.706995,
+ "longitude": 139.86787,
+ "polygon": [
+ [
+ 139.86776010989013,
+ 35.70708509009009
+ ],
+ [
+ 139.8679798901099,
+ 35.70708509009009
+ ],
+ [
+ 139.8679798901099,
+ 35.70690490990991
+ ],
+ [
+ 139.86776010989013,
+ 35.70690490990991
+ ],
+ [
+ 139.86776010989013,
+ 35.70708509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaKuyakusho.171.2",
+ "name": "江戸川区役所前",
+ "latitude": 35.707633,
+ "longitude": 139.867657,
+ "polygon": [
+ [
+ 139.86754710989013,
+ 35.70772309009009
+ ],
+ [
+ 139.8677668901099,
+ 35.70772309009009
+ ],
+ [
+ 139.8677668901099,
+ 35.70754290990991
+ ],
+ [
+ 139.86754710989013,
+ 35.70754290990991
+ ],
+ [
+ 139.86754710989013,
+ 35.70772309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaKoko.172.1",
+ "name": "江戸川高校前",
+ "latitude": 35.710169,
+ "longitude": 139.866069,
+ "polygon": [
+ [
+ 139.86595910989013,
+ 35.71025909009009
+ ],
+ [
+ 139.8661788901099,
+ 35.71025909009009
+ ],
+ [
+ 139.8661788901099,
+ 35.71007890990991
+ ],
+ [
+ 139.86595910989013,
+ 35.71007890990991
+ ],
+ [
+ 139.86595910989013,
+ 35.71025909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaKoko.172.2",
+ "name": "江戸川高校前",
+ "latitude": 35.710315,
+ "longitude": 139.865788,
+ "polygon": [
+ [
+ 139.86567810989013,
+ 35.71040509009009
+ ],
+ [
+ 139.8658978901099,
+ 35.71040509009009
+ ],
+ [
+ 139.8658978901099,
+ 35.71022490990991
+ ],
+ [
+ 139.86567810989013,
+ 35.71022490990991
+ ],
+ [
+ 139.86567810989013,
+ 35.71040509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuSanchome.187.2",
+ "name": "恵比寿三丁目",
+ "latitude": 35.644544,
+ "longitude": 139.721623,
+ "polygon": [
+ [
+ 139.7215131098901,
+ 35.64463409009009
+ ],
+ [
+ 139.72173289010988,
+ 35.64463409009009
+ ],
+ [
+ 139.72173289010988,
+ 35.64445390990991
+ ],
+ [
+ 139.7215131098901,
+ 35.64445390990991
+ ],
+ [
+ 139.7215131098901,
+ 35.64463409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NTTEdogawaShiten.174.1",
+ "name": "NTT江戸川支店前",
+ "latitude": 35.710428,
+ "longitude": 139.873972,
+ "polygon": [
+ [
+ 139.87386210989013,
+ 35.71051809009009
+ ],
+ [
+ 139.8740818901099,
+ 35.71051809009009
+ ],
+ [
+ 139.8740818901099,
+ 35.71033790990991
+ ],
+ [
+ 139.87386210989013,
+ 35.71033790990991
+ ],
+ [
+ 139.87386210989013,
+ 35.71051809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NTTEdogawaShiten.174.2",
+ "name": "NTT江戸川支店前",
+ "latitude": 35.710197,
+ "longitude": 139.874049,
+ "polygon": [
+ [
+ 139.87393910989013,
+ 35.71028709009009
+ ],
+ [
+ 139.8741588901099,
+ 35.71028709009009
+ ],
+ [
+ 139.8741588901099,
+ 35.71010690990991
+ ],
+ [
+ 139.87393910989013,
+ 35.71010690990991
+ ],
+ [
+ 139.87393910989013,
+ 35.71028709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaBunkaCenter.175.1",
+ "name": "江戸川文化センター前",
+ "latitude": 35.711023,
+ "longitude": 139.869916,
+ "polygon": [
+ [
+ 139.8698061098901,
+ 35.71111309009009
+ ],
+ [
+ 139.87002589010987,
+ 35.71111309009009
+ ],
+ [
+ 139.87002589010987,
+ 35.71093290990991
+ ],
+ [
+ 139.8698061098901,
+ 35.71093290990991
+ ],
+ [
+ 139.8698061098901,
+ 35.71111309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaBunkaCenter.175.2",
+ "name": "江戸川文化センター前",
+ "latitude": 35.710831,
+ "longitude": 139.869558,
+ "polygon": [
+ [
+ 139.86944810989013,
+ 35.71092109009009
+ ],
+ [
+ 139.8696678901099,
+ 35.71092109009009
+ ],
+ [
+ 139.8696678901099,
+ 35.71074090990991
+ ],
+ [
+ 139.86944810989013,
+ 35.71074090990991
+ ],
+ [
+ 139.86944810989013,
+ 35.71092109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Edogawabashi.176.1",
+ "name": "江戸川橋",
+ "latitude": 35.71147,
+ "longitude": 139.731375,
+ "polygon": [
+ [
+ 139.73126510989013,
+ 35.71156009009009
+ ],
+ [
+ 139.7314848901099,
+ 35.71156009009009
+ ],
+ [
+ 139.7314848901099,
+ 35.71137990990991
+ ],
+ [
+ 139.73126510989013,
+ 35.71137990990991
+ ],
+ [
+ 139.73126510989013,
+ 35.71156009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Edogawabashi.176.3",
+ "name": "江戸川橋",
+ "latitude": 35.710115,
+ "longitude": 139.730339,
+ "polygon": [
+ [
+ 139.7302291098901,
+ 35.71020509009009
+ ],
+ [
+ 139.73044889010987,
+ 35.71020509009009
+ ],
+ [
+ 139.73044889010987,
+ 35.71002490990991
+ ],
+ [
+ 139.7302291098901,
+ 35.71002490990991
+ ],
+ [
+ 139.7302291098901,
+ 35.71020509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Edogawabashi.176.4",
+ "name": "江戸川橋",
+ "latitude": 35.70994,
+ "longitude": 139.730895,
+ "polygon": [
+ [
+ 139.73078510989012,
+ 35.71003009009009
+ ],
+ [
+ 139.7310048901099,
+ 35.71003009009009
+ ],
+ [
+ 139.7310048901099,
+ 35.70984990990991
+ ],
+ [
+ 139.73078510989012,
+ 35.70984990990991
+ ],
+ [
+ 139.73078510989012,
+ 35.71003009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaGochome.177.1",
+ "name": "江戸川五丁目",
+ "latitude": 35.674735,
+ "longitude": 139.88455,
+ "polygon": [
+ [
+ 139.8844401098901,
+ 35.67482509009009
+ ],
+ [
+ 139.88465989010987,
+ 35.67482509009009
+ ],
+ [
+ 139.88465989010987,
+ 35.67464490990991
+ ],
+ [
+ 139.8844401098901,
+ 35.67464490990991
+ ],
+ [
+ 139.8844401098901,
+ 35.67482509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaGochome.177.2",
+ "name": "江戸川五丁目",
+ "latitude": 35.674622,
+ "longitude": 139.88303,
+ "polygon": [
+ [
+ 139.8829201098901,
+ 35.67471209009009
+ ],
+ [
+ 139.88313989010987,
+ 35.67471209009009
+ ],
+ [
+ 139.88313989010987,
+ 35.67453190990991
+ ],
+ [
+ 139.8829201098901,
+ 35.67453190990991
+ ],
+ [
+ 139.8829201098901,
+ 35.67471209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FurukawaShinsuiKoen.178.1",
+ "name": "古川親水公園",
+ "latitude": 35.674901,
+ "longitude": 139.878735,
+ "polygon": [
+ [
+ 139.87862510989012,
+ 35.67499109009009
+ ],
+ [
+ 139.8788448901099,
+ 35.67499109009009
+ ],
+ [
+ 139.8788448901099,
+ 35.67481090990991
+ ],
+ [
+ 139.87862510989012,
+ 35.67481090990991
+ ],
+ [
+ 139.87862510989012,
+ 35.67499109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgiSanchome.195.2",
+ "name": "扇三丁目",
+ "latitude": 35.769723,
+ "longitude": 139.770427,
+ "polygon": [
+ [
+ 139.77031710989013,
+ 35.76981309009009
+ ],
+ [
+ 139.7705368901099,
+ 35.76981309009009
+ ],
+ [
+ 139.7705368901099,
+ 35.76963290990991
+ ],
+ [
+ 139.77031710989013,
+ 35.76963290990991
+ ],
+ [
+ 139.77031710989013,
+ 35.76981309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FurukawaShinsuiKoen.178.2",
+ "name": "古川親水公園",
+ "latitude": 35.674727,
+ "longitude": 139.87836,
+ "polygon": [
+ [
+ 139.8782501098901,
+ 35.67481709009009
+ ],
+ [
+ 139.87846989010987,
+ 35.67481709009009
+ ],
+ [
+ 139.87846989010987,
+ 35.67463690990991
+ ],
+ [
+ 139.8782501098901,
+ 35.67463690990991
+ ],
+ [
+ 139.8782501098901,
+ 35.67481709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FurukawaShinsuiKoen.178.3",
+ "name": "古川親水公園",
+ "latitude": 35.675868,
+ "longitude": 139.878261,
+ "polygon": [
+ [
+ 139.87815110989013,
+ 35.67595809009009
+ ],
+ [
+ 139.8783708901099,
+ 35.67595809009009
+ ],
+ [
+ 139.8783708901099,
+ 35.67577790990991
+ ],
+ [
+ 139.87815110989013,
+ 35.67577790990991
+ ],
+ [
+ 139.87815110989013,
+ 35.67595809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FurukawaShinsuiKoen.178.4",
+ "name": "古川親水公園",
+ "latitude": 35.675335,
+ "longitude": 139.877601,
+ "polygon": [
+ [
+ 139.87749110989012,
+ 35.67542509009009
+ ],
+ [
+ 139.87771089010988,
+ 35.67542509009009
+ ],
+ [
+ 139.87771089010988,
+ 35.67524490990991
+ ],
+ [
+ 139.87749110989012,
+ 35.67524490990991
+ ],
+ [
+ 139.87749110989012,
+ 35.67542509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EharachoNakanoDori.179.1",
+ "name": "江原町中野通り",
+ "latitude": 35.729144,
+ "longitude": 139.677992,
+ "polygon": [
+ [
+ 139.6778821098901,
+ 35.72923409009009
+ ],
+ [
+ 139.67810189010987,
+ 35.72923409009009
+ ],
+ [
+ 139.67810189010987,
+ 35.72905390990991
+ ],
+ [
+ 139.6778821098901,
+ 35.72905390990991
+ ],
+ [
+ 139.6778821098901,
+ 35.72923409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EharachoItchome.180.1",
+ "name": "江原町一丁目",
+ "latitude": 35.731044,
+ "longitude": 139.674053,
+ "polygon": [
+ [
+ 139.6739431098901,
+ 35.73113409009009
+ ],
+ [
+ 139.67416289010987,
+ 35.73113409009009
+ ],
+ [
+ 139.67416289010987,
+ 35.73095390990991
+ ],
+ [
+ 139.6739431098901,
+ 35.73095390990991
+ ],
+ [
+ 139.6739431098901,
+ 35.73113409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuStation.183.5",
+ "name": "恵比寿駅前",
+ "latitude": 35.647782,
+ "longitude": 139.710425,
+ "polygon": [
+ [
+ 139.7103151098901,
+ 35.64787209009009
+ ],
+ [
+ 139.71053489010987,
+ 35.64787209009009
+ ],
+ [
+ 139.71053489010987,
+ 35.64769190990991
+ ],
+ [
+ 139.7103151098901,
+ 35.64769190990991
+ ],
+ [
+ 139.7103151098901,
+ 35.64787209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinEgotaStation.181.5",
+ "name": "新江古田駅前",
+ "latitude": 35.73358,
+ "longitude": 139.671156,
+ "polygon": [
+ [
+ 139.6710461098901,
+ 35.733670090090094
+ ],
+ [
+ 139.67126589010988,
+ 35.733670090090094
+ ],
+ [
+ 139.67126589010988,
+ 35.73348990990991
+ ],
+ [
+ 139.6710461098901,
+ 35.73348990990991
+ ],
+ [
+ 139.6710461098901,
+ 35.733670090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ebisawa.182.1",
+ "name": "蜆沢",
+ "latitude": 35.818551,
+ "longitude": 139.242125,
+ "polygon": [
+ [
+ 139.2420151098901,
+ 35.81864109009009
+ ],
+ [
+ 139.24223489010987,
+ 35.81864109009009
+ ],
+ [
+ 139.24223489010987,
+ 35.81846090990991
+ ],
+ [
+ 139.2420151098901,
+ 35.81846090990991
+ ],
+ [
+ 139.2420151098901,
+ 35.81864109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ebisawa.182.2",
+ "name": "蜆沢",
+ "latitude": 35.818546,
+ "longitude": 139.242771,
+ "polygon": [
+ [
+ 139.24266110989012,
+ 35.81863609009009
+ ],
+ [
+ 139.2428808901099,
+ 35.81863609009009
+ ],
+ [
+ 139.2428808901099,
+ 35.81845590990991
+ ],
+ [
+ 139.24266110989012,
+ 35.81845590990991
+ ],
+ [
+ 139.24266110989012,
+ 35.81863609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiShogakko.211.1",
+ "name": "成木小学校前",
+ "latitude": 35.828115,
+ "longitude": 139.260656,
+ "polygon": [
+ [
+ 139.26054610989013,
+ 35.82820509009009
+ ],
+ [
+ 139.2607658901099,
+ 35.82820509009009
+ ],
+ [
+ 139.2607658901099,
+ 35.82802490990991
+ ],
+ [
+ 139.26054610989013,
+ 35.82802490990991
+ ],
+ [
+ 139.26054610989013,
+ 35.82820509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuStation.183.1",
+ "name": "恵比寿駅前",
+ "latitude": 35.646979,
+ "longitude": 139.709436,
+ "polygon": [
+ [
+ 139.70932610989013,
+ 35.64706909009009
+ ],
+ [
+ 139.7095458901099,
+ 35.64706909009009
+ ],
+ [
+ 139.7095458901099,
+ 35.64688890990991
+ ],
+ [
+ 139.70932610989013,
+ 35.64688890990991
+ ],
+ [
+ 139.70932610989013,
+ 35.64706909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuStation.183.6",
+ "name": "恵比寿駅前",
+ "latitude": 35.648356,
+ "longitude": 139.710438,
+ "polygon": [
+ [
+ 139.71032810989013,
+ 35.64844609009009
+ ],
+ [
+ 139.7105478901099,
+ 35.64844609009009
+ ],
+ [
+ 139.7105478901099,
+ 35.64826590990991
+ ],
+ [
+ 139.71032810989013,
+ 35.64826590990991
+ ],
+ [
+ 139.71032810989013,
+ 35.64844609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuItchome.185.11",
+ "name": "恵比寿一丁目",
+ "latitude": 35.646422,
+ "longitude": 139.71191,
+ "polygon": [
+ [
+ 139.7118001098901,
+ 35.64651209009009
+ ],
+ [
+ 139.71201989010987,
+ 35.64651209009009
+ ],
+ [
+ 139.71201989010987,
+ 35.64633190990991
+ ],
+ [
+ 139.7118001098901,
+ 35.64633190990991
+ ],
+ [
+ 139.7118001098901,
+ 35.64651209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuItchome.185.12",
+ "name": "恵比寿一丁目",
+ "latitude": 35.646155,
+ "longitude": 139.713104,
+ "polygon": [
+ [
+ 139.7129941098901,
+ 35.64624509009009
+ ],
+ [
+ 139.71321389010987,
+ 35.64624509009009
+ ],
+ [
+ 139.71321389010987,
+ 35.64606490990991
+ ],
+ [
+ 139.7129941098901,
+ 35.64606490990991
+ ],
+ [
+ 139.7129941098901,
+ 35.64624509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuNichome.186.1",
+ "name": "恵比寿二丁目",
+ "latitude": 35.645294,
+ "longitude": 139.718931,
+ "polygon": [
+ [
+ 139.71882110989011,
+ 35.64538409009009
+ ],
+ [
+ 139.71904089010988,
+ 35.64538409009009
+ ],
+ [
+ 139.71904089010988,
+ 35.64520390990991
+ ],
+ [
+ 139.71882110989011,
+ 35.64520390990991
+ ],
+ [
+ 139.71882110989011,
+ 35.64538409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuNichome.186.2",
+ "name": "恵比寿二丁目",
+ "latitude": 35.645078,
+ "longitude": 139.719653,
+ "polygon": [
+ [
+ 139.7195431098901,
+ 35.64516809009009
+ ],
+ [
+ 139.71976289010988,
+ 35.64516809009009
+ ],
+ [
+ 139.71976289010988,
+ 35.64498790990991
+ ],
+ [
+ 139.7195431098901,
+ 35.64498790990991
+ ],
+ [
+ 139.7195431098901,
+ 35.64516809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuSanchome.187.1",
+ "name": "恵比寿三丁目",
+ "latitude": 35.644949,
+ "longitude": 139.721248,
+ "polygon": [
+ [
+ 139.72113810989012,
+ 35.64503909009009
+ ],
+ [
+ 139.72135789010989,
+ 35.64503909009009
+ ],
+ [
+ 139.72135789010989,
+ 35.64485890990991
+ ],
+ [
+ 139.72113810989012,
+ 35.64485890990991
+ ],
+ [
+ 139.72113810989012,
+ 35.64503909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuSanchome.187.3",
+ "name": "恵比寿三丁目",
+ "latitude": 35.644499,
+ "longitude": 139.721853,
+ "polygon": [
+ [
+ 139.72174310989013,
+ 35.64458909009009
+ ],
+ [
+ 139.7219628901099,
+ 35.64458909009009
+ ],
+ [
+ 139.7219628901099,
+ 35.64440890990991
+ ],
+ [
+ 139.72174310989013,
+ 35.64440890990991
+ ],
+ [
+ 139.72174310989013,
+ 35.64458909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuSanchome.187.4",
+ "name": "恵比寿三丁目",
+ "latitude": 35.644687,
+ "longitude": 139.722378,
+ "polygon": [
+ [
+ 139.7222681098901,
+ 35.64477709009009
+ ],
+ [
+ 139.72248789010987,
+ 35.64477709009009
+ ],
+ [
+ 139.72248789010987,
+ 35.64459690990991
+ ],
+ [
+ 139.7222681098901,
+ 35.64459690990991
+ ],
+ [
+ 139.7222681098901,
+ 35.64477709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuYonchome.188.1",
+ "name": "恵比寿四丁目",
+ "latitude": 35.645698,
+ "longitude": 139.716176,
+ "polygon": [
+ [
+ 139.7160661098901,
+ 35.64578809009009
+ ],
+ [
+ 139.71628589010987,
+ 35.64578809009009
+ ],
+ [
+ 139.71628589010987,
+ 35.64560790990991
+ ],
+ [
+ 139.7160661098901,
+ 35.64560790990991
+ ],
+ [
+ 139.7160661098901,
+ 35.64578809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EbisuYonchome.188.2",
+ "name": "恵比寿四丁目",
+ "latitude": 35.645515,
+ "longitude": 139.716707,
+ "polygon": [
+ [
+ 139.71659710989013,
+ 35.64560509009009
+ ],
+ [
+ 139.7168168901099,
+ 35.64560509009009
+ ],
+ [
+ 139.7168168901099,
+ 35.64542490990991
+ ],
+ [
+ 139.71659710989013,
+ 35.64542490990991
+ ],
+ [
+ 139.71659710989013,
+ 35.64560509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiItchome.191.1",
+ "name": "扇橋一丁目",
+ "latitude": 35.68281,
+ "longitude": 139.81098,
+ "polygon": [
+ [
+ 139.81087010989012,
+ 35.682900090090094
+ ],
+ [
+ 139.81108989010988,
+ 35.682900090090094
+ ],
+ [
+ 139.81108989010988,
+ 35.68271990990991
+ ],
+ [
+ 139.81087010989012,
+ 35.68271990990991
+ ],
+ [
+ 139.81087010989012,
+ 35.682900090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.12",
+ "name": "王子駅前",
+ "latitude": 35.754343,
+ "longitude": 139.738815,
+ "polygon": [
+ [
+ 139.7387051098901,
+ 35.75443309009009
+ ],
+ [
+ 139.73892489010987,
+ 35.75443309009009
+ ],
+ [
+ 139.73892489010987,
+ 35.75425290990991
+ ],
+ [
+ 139.7387051098901,
+ 35.75425290990991
+ ],
+ [
+ 139.7387051098901,
+ 35.75443309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiItchome.191.2",
+ "name": "扇橋一丁目",
+ "latitude": 35.683962,
+ "longitude": 139.811164,
+ "polygon": [
+ [
+ 139.8110541098901,
+ 35.68405209009009
+ ],
+ [
+ 139.81127389010987,
+ 35.68405209009009
+ ],
+ [
+ 139.81127389010987,
+ 35.68387190990991
+ ],
+ [
+ 139.8110541098901,
+ 35.68387190990991
+ ],
+ [
+ 139.8110541098901,
+ 35.68405209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiItchome.191.3",
+ "name": "扇橋一丁目",
+ "latitude": 35.683327,
+ "longitude": 139.811348,
+ "polygon": [
+ [
+ 139.81123810989013,
+ 35.68341709009009
+ ],
+ [
+ 139.8114578901099,
+ 35.68341709009009
+ ],
+ [
+ 139.8114578901099,
+ 35.68323690990991
+ ],
+ [
+ 139.81123810989013,
+ 35.68323690990991
+ ],
+ [
+ 139.81123810989013,
+ 35.68341709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiItchome.191.4",
+ "name": "扇橋一丁目",
+ "latitude": 35.682671,
+ "longitude": 139.811648,
+ "polygon": [
+ [
+ 139.8115381098901,
+ 35.68276109009009
+ ],
+ [
+ 139.81175789010987,
+ 35.68276109009009
+ ],
+ [
+ 139.81175789010987,
+ 35.68258090990991
+ ],
+ [
+ 139.8115381098901,
+ 35.68258090990991
+ ],
+ [
+ 139.8115381098901,
+ 35.68276109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiNichome.192.1",
+ "name": "扇橋二丁目",
+ "latitude": 35.682899,
+ "longitude": 139.81516,
+ "polygon": [
+ [
+ 139.8150501098901,
+ 35.68298909009009
+ ],
+ [
+ 139.81526989010987,
+ 35.68298909009009
+ ],
+ [
+ 139.81526989010987,
+ 35.68280890990991
+ ],
+ [
+ 139.8150501098901,
+ 35.68280890990991
+ ],
+ [
+ 139.8150501098901,
+ 35.68298909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiNichome.192.2",
+ "name": "扇橋二丁目",
+ "latitude": 35.683388,
+ "longitude": 139.816008,
+ "polygon": [
+ [
+ 139.81589810989013,
+ 35.68347809009009
+ ],
+ [
+ 139.8161178901099,
+ 35.68347809009009
+ ],
+ [
+ 139.8161178901099,
+ 35.68329790990991
+ ],
+ [
+ 139.81589810989013,
+ 35.68329790990991
+ ],
+ [
+ 139.81589810989013,
+ 35.68347809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiNichome.192.3",
+ "name": "扇橋二丁目",
+ "latitude": 35.683089,
+ "longitude": 139.815629,
+ "polygon": [
+ [
+ 139.81551910989012,
+ 35.68317909009009
+ ],
+ [
+ 139.81573889010988,
+ 35.68317909009009
+ ],
+ [
+ 139.81573889010988,
+ 35.68299890990991
+ ],
+ [
+ 139.81551910989012,
+ 35.68299890990991
+ ],
+ [
+ 139.81551910989012,
+ 35.68317909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiNichome.192.4",
+ "name": "扇橋二丁目",
+ "latitude": 35.682318,
+ "longitude": 139.816185,
+ "polygon": [
+ [
+ 139.8160751098901,
+ 35.68240809009009
+ ],
+ [
+ 139.81629489010987,
+ 35.68240809009009
+ ],
+ [
+ 139.81629489010987,
+ 35.68222790990991
+ ],
+ [
+ 139.8160751098901,
+ 35.68222790990991
+ ],
+ [
+ 139.8160751098901,
+ 35.68240809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiSanchome.193.1",
+ "name": "扇橋三丁目",
+ "latitude": 35.682516,
+ "longitude": 139.819711,
+ "polygon": [
+ [
+ 139.81960110989013,
+ 35.68260609009009
+ ],
+ [
+ 139.8198208901099,
+ 35.68260609009009
+ ],
+ [
+ 139.8198208901099,
+ 35.68242590990991
+ ],
+ [
+ 139.81960110989013,
+ 35.68242590990991
+ ],
+ [
+ 139.81960110989013,
+ 35.68260609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgibashiSanchome.193.2",
+ "name": "扇橋三丁目",
+ "latitude": 35.682902,
+ "longitude": 139.819294,
+ "polygon": [
+ [
+ 139.81918410989013,
+ 35.68299209009009
+ ],
+ [
+ 139.8194038901099,
+ 35.68299209009009
+ ],
+ [
+ 139.8194038901099,
+ 35.68281190990991
+ ],
+ [
+ 139.81918410989013,
+ 35.68281190990991
+ ],
+ [
+ 139.81918410989013,
+ 35.68299209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgiNichome.194.1",
+ "name": "扇二丁目",
+ "latitude": 35.766606,
+ "longitude": 139.770647,
+ "polygon": [
+ [
+ 139.7705371098901,
+ 35.76669609009009
+ ],
+ [
+ 139.77075689010988,
+ 35.76669609009009
+ ],
+ [
+ 139.77075689010988,
+ 35.76651590990991
+ ],
+ [
+ 139.7705371098901,
+ 35.76651590990991
+ ],
+ [
+ 139.7705371098901,
+ 35.76669609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgiNichome.194.2",
+ "name": "扇二丁目",
+ "latitude": 35.766578,
+ "longitude": 139.770925,
+ "polygon": [
+ [
+ 139.77081510989012,
+ 35.76666809009009
+ ],
+ [
+ 139.7710348901099,
+ 35.76666809009009
+ ],
+ [
+ 139.7710348901099,
+ 35.76648790990991
+ ],
+ [
+ 139.77081510989012,
+ 35.76648790990991
+ ],
+ [
+ 139.77081510989012,
+ 35.76666809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgiSanchome.195.1",
+ "name": "扇三丁目",
+ "latitude": 35.769467,
+ "longitude": 139.770786,
+ "polygon": [
+ [
+ 139.7706761098901,
+ 35.76955709009009
+ ],
+ [
+ 139.77089589010987,
+ 35.76955709009009
+ ],
+ [
+ 139.77089589010987,
+ 35.76937690990991
+ ],
+ [
+ 139.7706761098901,
+ 35.76937690990991
+ ],
+ [
+ 139.7706761098901,
+ 35.76955709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.1",
+ "name": "王子駅前",
+ "latitude": 35.753867,
+ "longitude": 139.73723,
+ "polygon": [
+ [
+ 139.73712010989013,
+ 35.75395709009009
+ ],
+ [
+ 139.7373398901099,
+ 35.75395709009009
+ ],
+ [
+ 139.7373398901099,
+ 35.75377690990991
+ ],
+ [
+ 139.73712010989013,
+ 35.75377690990991
+ ],
+ [
+ 139.73712010989013,
+ 35.75395709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.2",
+ "name": "王子駅前",
+ "latitude": 35.753727,
+ "longitude": 139.737349,
+ "polygon": [
+ [
+ 139.7372391098901,
+ 35.75381709009009
+ ],
+ [
+ 139.73745889010988,
+ 35.75381709009009
+ ],
+ [
+ 139.73745889010988,
+ 35.75363690990991
+ ],
+ [
+ 139.7372391098901,
+ 35.75363690990991
+ ],
+ [
+ 139.7372391098901,
+ 35.75381709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiDaisanShogakko.197.1",
+ "name": "王子第三小学校前",
+ "latitude": 35.765058,
+ "longitude": 139.718624,
+ "polygon": [
+ [
+ 139.71851410989012,
+ 35.76514809009009
+ ],
+ [
+ 139.7187338901099,
+ 35.76514809009009
+ ],
+ [
+ 139.7187338901099,
+ 35.76496790990991
+ ],
+ [
+ 139.71851410989012,
+ 35.76496790990991
+ ],
+ [
+ 139.71851410989012,
+ 35.76514809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.3",
+ "name": "王子駅前",
+ "latitude": 35.753907,
+ "longitude": 139.737343,
+ "polygon": [
+ [
+ 139.73723310989013,
+ 35.75399709009009
+ ],
+ [
+ 139.7374528901099,
+ 35.75399709009009
+ ],
+ [
+ 139.7374528901099,
+ 35.75381690990991
+ ],
+ [
+ 139.73723310989013,
+ 35.75381690990991
+ ],
+ [
+ 139.73723310989013,
+ 35.75399709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.4",
+ "name": "王子駅前",
+ "latitude": 35.753792,
+ "longitude": 139.737428,
+ "polygon": [
+ [
+ 139.7373181098901,
+ 35.75388209009009
+ ],
+ [
+ 139.73753789010988,
+ 35.75388209009009
+ ],
+ [
+ 139.73753789010988,
+ 35.75370190990991
+ ],
+ [
+ 139.7373181098901,
+ 35.75370190990991
+ ],
+ [
+ 139.7373181098901,
+ 35.75388209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.5",
+ "name": "王子駅前",
+ "latitude": 35.753644,
+ "longitude": 139.737562,
+ "polygon": [
+ [
+ 139.7374521098901,
+ 35.75373409009009
+ ],
+ [
+ 139.73767189010988,
+ 35.75373409009009
+ ],
+ [
+ 139.73767189010988,
+ 35.75355390990991
+ ],
+ [
+ 139.7374521098901,
+ 35.75355390990991
+ ],
+ [
+ 139.7374521098901,
+ 35.75373409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.6",
+ "name": "王子駅前",
+ "latitude": 35.754082,
+ "longitude": 139.737718,
+ "polygon": [
+ [
+ 139.73760810989012,
+ 35.75417209009009
+ ],
+ [
+ 139.73782789010988,
+ 35.75417209009009
+ ],
+ [
+ 139.73782789010988,
+ 35.75399190990991
+ ],
+ [
+ 139.73760810989012,
+ 35.75399190990991
+ ],
+ [
+ 139.73760810989012,
+ 35.75417209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.9",
+ "name": "王子駅前",
+ "latitude": 35.753893,
+ "longitude": 139.738436,
+ "polygon": [
+ [
+ 139.73832610989012,
+ 35.75398309009009
+ ],
+ [
+ 139.7385458901099,
+ 35.75398309009009
+ ],
+ [
+ 139.7385458901099,
+ 35.75380290990991
+ ],
+ [
+ 139.73832610989012,
+ 35.75380290990991
+ ],
+ [
+ 139.73832610989012,
+ 35.75398309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiShogakko.211.2",
+ "name": "成木小学校前",
+ "latitude": 35.828154,
+ "longitude": 139.260769,
+ "polygon": [
+ [
+ 139.26065910989013,
+ 35.82824409009009
+ ],
+ [
+ 139.2608788901099,
+ 35.82824409009009
+ ],
+ [
+ 139.2608788901099,
+ 35.82806390990991
+ ],
+ [
+ 139.26065910989013,
+ 35.82806390990991
+ ],
+ [
+ 139.26065910989013,
+ 35.82824409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.10",
+ "name": "王子駅前",
+ "latitude": 35.754102,
+ "longitude": 139.738592,
+ "polygon": [
+ [
+ 139.73848210989013,
+ 35.75419209009009
+ ],
+ [
+ 139.7387018901099,
+ 35.75419209009009
+ ],
+ [
+ 139.7387018901099,
+ 35.75401190990991
+ ],
+ [
+ 139.73848210989013,
+ 35.75401190990991
+ ],
+ [
+ 139.73848210989013,
+ 35.75419209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.11",
+ "name": "王子駅前",
+ "latitude": 35.754195,
+ "longitude": 139.738676,
+ "polygon": [
+ [
+ 139.73856610989012,
+ 35.75428509009009
+ ],
+ [
+ 139.73878589010988,
+ 35.75428509009009
+ ],
+ [
+ 139.73878589010988,
+ 35.75410490990991
+ ],
+ [
+ 139.73856610989012,
+ 35.75410490990991
+ ],
+ [
+ 139.73856610989012,
+ 35.75428509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.13",
+ "name": "王子駅前",
+ "latitude": 35.753901,
+ "longitude": 139.738715,
+ "polygon": [
+ [
+ 139.73860510989013,
+ 35.75399109009009
+ ],
+ [
+ 139.7388248901099,
+ 35.75399109009009
+ ],
+ [
+ 139.7388248901099,
+ 35.75381090990991
+ ],
+ [
+ 139.73860510989013,
+ 35.75381090990991
+ ],
+ [
+ 139.73860510989013,
+ 35.75399109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.14",
+ "name": "王子駅前",
+ "latitude": 35.753705,
+ "longitude": 139.738579,
+ "polygon": [
+ [
+ 139.7384691098901,
+ 35.75379509009009
+ ],
+ [
+ 139.73868889010987,
+ 35.75379509009009
+ ],
+ [
+ 139.73868889010987,
+ 35.753614909909906
+ ],
+ [
+ 139.7384691098901,
+ 35.753614909909906
+ ],
+ [
+ 139.7384691098901,
+ 35.75379509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiStation.196.16",
+ "name": "王子駅前",
+ "latitude": 35.753438,
+ "longitude": 139.737688,
+ "polygon": [
+ [
+ 139.7375781098901,
+ 35.75352809009009
+ ],
+ [
+ 139.73779789010987,
+ 35.75352809009009
+ ],
+ [
+ 139.73779789010987,
+ 35.75334790990991
+ ],
+ [
+ 139.7375781098901,
+ 35.75334790990991
+ ],
+ [
+ 139.7375781098901,
+ 35.75352809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiDaisanShogakko.197.2",
+ "name": "王子第三小学校前",
+ "latitude": 35.764875,
+ "longitude": 139.718709,
+ "polygon": [
+ [
+ 139.7185991098901,
+ 35.764965090090094
+ ],
+ [
+ 139.71881889010987,
+ 35.764965090090094
+ ],
+ [
+ 139.71881889010987,
+ 35.76478490990991
+ ],
+ [
+ 139.7185991098901,
+ 35.76478490990991
+ ],
+ [
+ 139.7185991098901,
+ 35.764965090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiNichome.198.1",
+ "name": "王子二丁目",
+ "latitude": 35.755767,
+ "longitude": 139.737383,
+ "polygon": [
+ [
+ 139.7372731098901,
+ 35.75585709009009
+ ],
+ [
+ 139.73749289010988,
+ 35.75585709009009
+ ],
+ [
+ 139.73749289010988,
+ 35.75567690990991
+ ],
+ [
+ 139.7372731098901,
+ 35.75567690990991
+ ],
+ [
+ 139.7372731098901,
+ 35.75585709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiNichome.198.2",
+ "name": "王子二丁目",
+ "latitude": 35.755673,
+ "longitude": 139.737153,
+ "polygon": [
+ [
+ 139.73704310989012,
+ 35.75576309009009
+ ],
+ [
+ 139.7372628901099,
+ 35.75576309009009
+ ],
+ [
+ 139.7372628901099,
+ 35.75558290990991
+ ],
+ [
+ 139.73704310989012,
+ 35.75558290990991
+ ],
+ [
+ 139.73704310989012,
+ 35.75576309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiSanchome.199.1",
+ "name": "王子三丁目",
+ "latitude": 35.758386,
+ "longitude": 139.737592,
+ "polygon": [
+ [
+ 139.73748210989012,
+ 35.75847609009009
+ ],
+ [
+ 139.7377018901099,
+ 35.75847609009009
+ ],
+ [
+ 139.7377018901099,
+ 35.75829590990991
+ ],
+ [
+ 139.73748210989012,
+ 35.75829590990991
+ ],
+ [
+ 139.73748210989012,
+ 35.75847609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiSanchome.199.2",
+ "name": "王子三丁目",
+ "latitude": 35.759607,
+ "longitude": 139.7374,
+ "polygon": [
+ [
+ 139.73729010989013,
+ 35.75969709009009
+ ],
+ [
+ 139.7375098901099,
+ 35.75969709009009
+ ],
+ [
+ 139.7375098901099,
+ 35.75951690990991
+ ],
+ [
+ 139.73729010989013,
+ 35.75951690990991
+ ],
+ [
+ 139.73729010989013,
+ 35.75969709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiSanchome.199.11",
+ "name": "王子三丁目",
+ "latitude": 35.758515,
+ "longitude": 139.738516,
+ "polygon": [
+ [
+ 139.73840610989012,
+ 35.75860509009009
+ ],
+ [
+ 139.7386258901099,
+ 35.75860509009009
+ ],
+ [
+ 139.7386258901099,
+ 35.75842490990991
+ ],
+ [
+ 139.73840610989012,
+ 35.75842490990991
+ ],
+ [
+ 139.73840610989012,
+ 35.75860509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiYonchome.200.1",
+ "name": "王子四丁目",
+ "latitude": 35.762757,
+ "longitude": 139.736889,
+ "polygon": [
+ [
+ 139.7367791098901,
+ 35.76284709009009
+ ],
+ [
+ 139.73699889010987,
+ 35.76284709009009
+ ],
+ [
+ 139.73699889010987,
+ 35.76266690990991
+ ],
+ [
+ 139.7367791098901,
+ 35.76266690990991
+ ],
+ [
+ 139.7367791098901,
+ 35.76284709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiYonchome.200.2",
+ "name": "王子四丁目",
+ "latitude": 35.761969,
+ "longitude": 139.73705,
+ "polygon": [
+ [
+ 139.73694010989013,
+ 35.76205909009009
+ ],
+ [
+ 139.7371598901099,
+ 35.76205909009009
+ ],
+ [
+ 139.7371598901099,
+ 35.76187890990991
+ ],
+ [
+ 139.73694010989013,
+ 35.76187890990991
+ ],
+ [
+ 139.73694010989013,
+ 35.76205909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiGochome.201.1",
+ "name": "王子五丁目",
+ "latitude": 35.765162,
+ "longitude": 139.735878,
+ "polygon": [
+ [
+ 139.73576810989013,
+ 35.76525209009009
+ ],
+ [
+ 139.7359878901099,
+ 35.76525209009009
+ ],
+ [
+ 139.7359878901099,
+ 35.765071909909906
+ ],
+ [
+ 139.73576810989013,
+ 35.765071909909906
+ ],
+ [
+ 139.73576810989013,
+ 35.76525209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiGochome.201.2",
+ "name": "王子五丁目",
+ "latitude": 35.765019,
+ "longitude": 139.735649,
+ "polygon": [
+ [
+ 139.7355391098901,
+ 35.76510909009009
+ ],
+ [
+ 139.73575889010988,
+ 35.76510909009009
+ ],
+ [
+ 139.73575889010988,
+ 35.76492890990991
+ ],
+ [
+ 139.7355391098901,
+ 35.76492890990991
+ ],
+ [
+ 139.7355391098901,
+ 35.76510909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeStation.202.1",
+ "name": "青梅駅前",
+ "latitude": 35.790169,
+ "longitude": 139.25796,
+ "polygon": [
+ [
+ 139.25785010989011,
+ 35.79025909009009
+ ],
+ [
+ 139.25806989010988,
+ 35.79025909009009
+ ],
+ [
+ 139.25806989010988,
+ 35.79007890990991
+ ],
+ [
+ 139.25785010989011,
+ 35.79007890990991
+ ],
+ [
+ 139.25785010989011,
+ 35.79025909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeStation.202.2",
+ "name": "青梅駅前",
+ "latitude": 35.790169,
+ "longitude": 139.257987,
+ "polygon": [
+ [
+ 139.25787710989013,
+ 35.79025909009009
+ ],
+ [
+ 139.2580968901099,
+ 35.79025909009009
+ ],
+ [
+ 139.2580968901099,
+ 35.79007890990991
+ ],
+ [
+ 139.25787710989013,
+ 35.79007890990991
+ ],
+ [
+ 139.25787710989013,
+ 35.79025909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDainanachugakko.210.2",
+ "name": "青梅第七中学校前",
+ "latitude": 35.826227,
+ "longitude": 139.256369,
+ "polygon": [
+ [
+ 139.25625910989012,
+ 35.82631709009009
+ ],
+ [
+ 139.2564788901099,
+ 35.82631709009009
+ ],
+ [
+ 139.2564788901099,
+ 35.82613690990991
+ ],
+ [
+ 139.25625910989012,
+ 35.82613690990991
+ ],
+ [
+ 139.25625910989012,
+ 35.82631709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeKaidoStation.203.1",
+ "name": "青梅街道駅前",
+ "latitude": 35.730521,
+ "longitude": 139.47559,
+ "polygon": [
+ [
+ 139.47548010989013,
+ 35.73061109009009
+ ],
+ [
+ 139.4756998901099,
+ 35.73061109009009
+ ],
+ [
+ 139.4756998901099,
+ 35.73043090990991
+ ],
+ [
+ 139.47548010989013,
+ 35.73043090990991
+ ],
+ [
+ 139.47548010989013,
+ 35.73061109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeKaidoStation.203.2",
+ "name": "青梅街道駅前",
+ "latitude": 35.730443,
+ "longitude": 139.476886,
+ "polygon": [
+ [
+ 139.47677610989012,
+ 35.73053309009009
+ ],
+ [
+ 139.4769958901099,
+ 35.73053309009009
+ ],
+ [
+ 139.4769958901099,
+ 35.73035290990991
+ ],
+ [
+ 139.47677610989012,
+ 35.73035290990991
+ ],
+ [
+ 139.47677610989012,
+ 35.73053309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeKeisatsusho.204.1",
+ "name": "青梅警察署前",
+ "latitude": 35.788455,
+ "longitude": 139.289406,
+ "polygon": [
+ [
+ 139.28929610989013,
+ 35.78854509009009
+ ],
+ [
+ 139.2895158901099,
+ 35.78854509009009
+ ],
+ [
+ 139.2895158901099,
+ 35.78836490990991
+ ],
+ [
+ 139.28929610989013,
+ 35.78836490990991
+ ],
+ [
+ 139.28929610989013,
+ 35.78854509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeKeisatsusho.204.2",
+ "name": "青梅警察署前",
+ "latitude": 35.788257,
+ "longitude": 139.289335,
+ "polygon": [
+ [
+ 139.2892251098901,
+ 35.78834709009009
+ ],
+ [
+ 139.28944489010988,
+ 35.78834709009009
+ ],
+ [
+ 139.28944489010988,
+ 35.78816690990991
+ ],
+ [
+ 139.2892251098901,
+ 35.78816690990991
+ ],
+ [
+ 139.2892251098901,
+ 35.78834709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShiyakusho.205.1",
+ "name": "青梅市役所前",
+ "latitude": 35.788318,
+ "longitude": 139.274563,
+ "polygon": [
+ [
+ 139.27445310989012,
+ 35.78840809009009
+ ],
+ [
+ 139.27467289010988,
+ 35.78840809009009
+ ],
+ [
+ 139.27467289010988,
+ 35.78822790990991
+ ],
+ [
+ 139.27445310989012,
+ 35.78822790990991
+ ],
+ [
+ 139.27445310989012,
+ 35.78840809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakaibashi.1063.2",
+ "name": "中井橋",
+ "latitude": 35.822368,
+ "longitude": 139.276762,
+ "polygon": [
+ [
+ 139.2766521098901,
+ 35.82245809009009
+ ],
+ [
+ 139.27687189010987,
+ 35.82245809009009
+ ],
+ [
+ 139.27687189010987,
+ 35.82227790990991
+ ],
+ [
+ 139.2766521098901,
+ 35.82227790990991
+ ],
+ [
+ 139.2766521098901,
+ 35.82245809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShiyakusho.205.2",
+ "name": "青梅市役所前",
+ "latitude": 35.787642,
+ "longitude": 139.275299,
+ "polygon": [
+ [
+ 139.2751891098901,
+ 35.78773209009009
+ ],
+ [
+ 139.27540889010987,
+ 35.78773209009009
+ ],
+ [
+ 139.27540889010987,
+ 35.78755190990991
+ ],
+ [
+ 139.2751891098901,
+ 35.78755190990991
+ ],
+ [
+ 139.2751891098901,
+ 35.78773209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShiyakusho.205.3",
+ "name": "青梅市役所前",
+ "latitude": 35.788372,
+ "longitude": 139.274549,
+ "polygon": [
+ [
+ 139.27443910989012,
+ 35.78846209009009
+ ],
+ [
+ 139.2746588901099,
+ 35.78846209009009
+ ],
+ [
+ 139.2746588901099,
+ 35.78828190990991
+ ],
+ [
+ 139.27443910989012,
+ 35.78828190990991
+ ],
+ [
+ 139.27443910989012,
+ 35.78846209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShiyakusho.205.4",
+ "name": "青梅市役所前",
+ "latitude": 35.787533,
+ "longitude": 139.275228,
+ "polygon": [
+ [
+ 139.27511810989012,
+ 35.787623090090094
+ ],
+ [
+ 139.27533789010988,
+ 35.787623090090094
+ ],
+ [
+ 139.27533789010988,
+ 35.78744290990991
+ ],
+ [
+ 139.27511810989012,
+ 35.78744290990991
+ ],
+ [
+ 139.27511810989012,
+ 35.787623090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShako.206.1",
+ "name": "青梅車庫",
+ "latitude": 35.790205,
+ "longitude": 139.249865,
+ "polygon": [
+ [
+ 139.24975510989012,
+ 35.79029509009009
+ ],
+ [
+ 139.24997489010988,
+ 35.79029509009009
+ ],
+ [
+ 139.24997489010988,
+ 35.79011490990991
+ ],
+ [
+ 139.24975510989012,
+ 35.79011490990991
+ ],
+ [
+ 139.24975510989012,
+ 35.79029509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShako.206.2",
+ "name": "青梅車庫",
+ "latitude": 35.790115,
+ "longitude": 139.250785,
+ "polygon": [
+ [
+ 139.25067510989012,
+ 35.79020509009009
+ ],
+ [
+ 139.2508948901099,
+ 35.79020509009009
+ ],
+ [
+ 139.2508948901099,
+ 35.79002490990991
+ ],
+ [
+ 139.25067510989012,
+ 35.79002490990991
+ ],
+ [
+ 139.25067510989012,
+ 35.79020509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShako.206.3",
+ "name": "青梅車庫",
+ "latitude": 35.790205,
+ "longitude": 139.249863,
+ "polygon": [
+ [
+ 139.24975310989012,
+ 35.79029509009009
+ ],
+ [
+ 139.2499728901099,
+ 35.79029509009009
+ ],
+ [
+ 139.2499728901099,
+ 35.79011490990991
+ ],
+ [
+ 139.24975310989012,
+ 35.79011490990991
+ ],
+ [
+ 139.24975310989012,
+ 35.79029509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ozasu.207.1",
+ "name": "大指",
+ "latitude": 35.83567,
+ "longitude": 139.209189,
+ "polygon": [
+ [
+ 139.20907910989013,
+ 35.83576009009009
+ ],
+ [
+ 139.2092988901099,
+ 35.83576009009009
+ ],
+ [
+ 139.2092988901099,
+ 35.83557990990991
+ ],
+ [
+ 139.20907910989013,
+ 35.83557990990991
+ ],
+ [
+ 139.20907910989013,
+ 35.83576009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ozasu.207.2",
+ "name": "大指",
+ "latitude": 35.835785,
+ "longitude": 139.209213,
+ "polygon": [
+ [
+ 139.20910310989012,
+ 35.83587509009009
+ ],
+ [
+ 139.2093228901099,
+ 35.83587509009009
+ ],
+ [
+ 139.2093228901099,
+ 35.83569490990991
+ ],
+ [
+ 139.20910310989012,
+ 35.83569490990991
+ ],
+ [
+ 139.20910310989012,
+ 35.83587509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaOsoki.208.1",
+ "name": "北小曽木",
+ "latitude": 35.821503,
+ "longitude": 139.230436,
+ "polygon": [
+ [
+ 139.23032610989011,
+ 35.82159309009009
+ ],
+ [
+ 139.23054589010988,
+ 35.82159309009009
+ ],
+ [
+ 139.23054589010988,
+ 35.82141290990991
+ ],
+ [
+ 139.23032610989011,
+ 35.82141290990991
+ ],
+ [
+ 139.23032610989011,
+ 35.82159309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDainanashogakko.209.1",
+ "name": "青梅第七小学校前",
+ "latitude": 35.818495,
+ "longitude": 139.274934,
+ "polygon": [
+ [
+ 139.27482410989012,
+ 35.81858509009009
+ ],
+ [
+ 139.27504389010988,
+ 35.81858509009009
+ ],
+ [
+ 139.27504389010988,
+ 35.81840490990991
+ ],
+ [
+ 139.27482410989012,
+ 35.81840490990991
+ ],
+ [
+ 139.27482410989012,
+ 35.81858509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDainanashogakko.209.2",
+ "name": "青梅第七小学校前",
+ "latitude": 35.818793,
+ "longitude": 139.275271,
+ "polygon": [
+ [
+ 139.27516110989012,
+ 35.81888309009009
+ ],
+ [
+ 139.2753808901099,
+ 35.81888309009009
+ ],
+ [
+ 139.2753808901099,
+ 35.81870290990991
+ ],
+ [
+ 139.27516110989012,
+ 35.81870290990991
+ ],
+ [
+ 139.27516110989012,
+ 35.81888309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDainanachugakko.210.1",
+ "name": "青梅第七中学校前",
+ "latitude": 35.826388,
+ "longitude": 139.256493,
+ "polygon": [
+ [
+ 139.25638310989012,
+ 35.82647809009009
+ ],
+ [
+ 139.2566028901099,
+ 35.82647809009009
+ ],
+ [
+ 139.2566028901099,
+ 35.82629790990991
+ ],
+ [
+ 139.25638310989012,
+ 35.82629790990991
+ ],
+ [
+ 139.25638310989012,
+ 35.82647809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDaiyonshogakko.212.1",
+ "name": "青梅第四小学校前",
+ "latitude": 35.793664,
+ "longitude": 139.270553,
+ "polygon": [
+ [
+ 139.27044310989012,
+ 35.79375409009009
+ ],
+ [
+ 139.2706628901099,
+ 35.79375409009009
+ ],
+ [
+ 139.2706628901099,
+ 35.79357390990991
+ ],
+ [
+ 139.27044310989012,
+ 35.79357390990991
+ ],
+ [
+ 139.27044310989012,
+ 35.79375409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDaiyonshogakko.212.2",
+ "name": "青梅第四小学校前",
+ "latitude": 35.79367,
+ "longitude": 139.270613,
+ "polygon": [
+ [
+ 139.27050310989011,
+ 35.79376009009009
+ ],
+ [
+ 139.27072289010988,
+ 35.79376009009009
+ ],
+ [
+ 139.27072289010988,
+ 35.79357990990991
+ ],
+ [
+ 139.27050310989011,
+ 35.79357990990991
+ ],
+ [
+ 139.27050310989011,
+ 35.79376009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OimachiStationHigashiguchi.223.5",
+ "name": "大井町駅東口",
+ "latitude": 35.606513,
+ "longitude": 139.735155,
+ "polygon": [
+ [
+ 139.7350451098901,
+ 35.60660309009009
+ ],
+ [
+ 139.73526489010987,
+ 35.60660309009009
+ ],
+ [
+ 139.73526489010987,
+ 35.60642290990991
+ ],
+ [
+ 139.7350451098901,
+ 35.60642290990991
+ ],
+ [
+ 139.7350451098901,
+ 35.60660309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MorookachoSanchome.213.1",
+ "name": "師岡町三丁目",
+ "latitude": 35.789928,
+ "longitude": 139.28182,
+ "polygon": [
+ [
+ 139.28171010989013,
+ 35.79001809009009
+ ],
+ [
+ 139.2819298901099,
+ 35.79001809009009
+ ],
+ [
+ 139.2819298901099,
+ 35.78983790990991
+ ],
+ [
+ 139.28171010989013,
+ 35.78983790990991
+ ],
+ [
+ 139.28171010989013,
+ 35.79001809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MorookachoSanchome.213.2",
+ "name": "師岡町三丁目",
+ "latitude": 35.790004,
+ "longitude": 139.281637,
+ "polygon": [
+ [
+ 139.2815271098901,
+ 35.79009409009009
+ ],
+ [
+ 139.28174689010987,
+ 35.79009409009009
+ ],
+ [
+ 139.28174689010987,
+ 35.78991390990991
+ ],
+ [
+ 139.2815271098901,
+ 35.78991390990991
+ ],
+ [
+ 139.2815271098901,
+ 35.79009409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Wakashiobashi.214.1",
+ "name": "若潮橋",
+ "latitude": 35.616535,
+ "longitude": 139.753007,
+ "polygon": [
+ [
+ 139.7528971098901,
+ 35.61662509009009
+ ],
+ [
+ 139.75311689010988,
+ 35.61662509009009
+ ],
+ [
+ 139.75311689010988,
+ 35.61644490990991
+ ],
+ [
+ 139.7528971098901,
+ 35.61644490990991
+ ],
+ [
+ 139.7528971098901,
+ 35.61662509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiSuisambutsuFuto.218.2",
+ "name": "大井水産物埠頭前",
+ "latitude": 35.590783,
+ "longitude": 139.7731,
+ "polygon": [
+ [
+ 139.77299010989012,
+ 35.59087309009009
+ ],
+ [
+ 139.77320989010988,
+ 35.59087309009009
+ ],
+ [
+ 139.77320989010988,
+ 35.59069290990991
+ ],
+ [
+ 139.77299010989012,
+ 35.59069290990991
+ ],
+ [
+ 139.77299010989012,
+ 35.59087309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Wakashiobashi.214.2",
+ "name": "若潮橋",
+ "latitude": 35.616506,
+ "longitude": 139.753524,
+ "polygon": [
+ [
+ 139.75341410989012,
+ 35.61659609009009
+ ],
+ [
+ 139.75363389010988,
+ 35.61659609009009
+ ],
+ [
+ 139.75363389010988,
+ 35.61641590990991
+ ],
+ [
+ 139.75341410989012,
+ 35.61641590990991
+ ],
+ [
+ 139.75341410989012,
+ 35.61659609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiKeibajo.216.1",
+ "name": "大井競馬場前",
+ "latitude": 35.593572,
+ "longitude": 139.741255,
+ "polygon": [
+ [
+ 139.7411451098901,
+ 35.59366209009009
+ ],
+ [
+ 139.74136489010988,
+ 35.59366209009009
+ ],
+ [
+ 139.74136489010988,
+ 35.59348190990991
+ ],
+ [
+ 139.7411451098901,
+ 35.59348190990991
+ ],
+ [
+ 139.7411451098901,
+ 35.59366209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiSuisambutsuFutoIriguchi.217.1",
+ "name": "大井水産物埠頭入口",
+ "latitude": 35.594025,
+ "longitude": 139.770696,
+ "polygon": [
+ [
+ 139.7705861098901,
+ 35.59411509009009
+ ],
+ [
+ 139.77080589010987,
+ 35.59411509009009
+ ],
+ [
+ 139.77080589010987,
+ 35.59393490990991
+ ],
+ [
+ 139.7705861098901,
+ 35.59393490990991
+ ],
+ [
+ 139.7705861098901,
+ 35.59411509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiSuisambutsuFutoIriguchi.217.2",
+ "name": "大井水産物埠頭入口",
+ "latitude": 35.593906,
+ "longitude": 139.770922,
+ "polygon": [
+ [
+ 139.77081210989013,
+ 35.59399609009009
+ ],
+ [
+ 139.7710318901099,
+ 35.59399609009009
+ ],
+ [
+ 139.7710318901099,
+ 35.59381590990991
+ ],
+ [
+ 139.77081210989013,
+ 35.59381590990991
+ ],
+ [
+ 139.77081210989013,
+ 35.59399609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiSuisambutsuFuto.218.1",
+ "name": "大井水産物埠頭前",
+ "latitude": 35.591041,
+ "longitude": 139.77321,
+ "polygon": [
+ [
+ 139.77310010989012,
+ 35.59113109009009
+ ],
+ [
+ 139.7733198901099,
+ 35.59113109009009
+ ],
+ [
+ 139.7733198901099,
+ 35.59095090990991
+ ],
+ [
+ 139.77310010989012,
+ 35.59095090990991
+ ],
+ [
+ 139.77310010989012,
+ 35.59113109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaSeisokojo.220.1",
+ "name": "品川清掃工場前",
+ "latitude": 35.611613,
+ "longitude": 139.754067,
+ "polygon": [
+ [
+ 139.7539571098901,
+ 35.61170309009009
+ ],
+ [
+ 139.75417689010987,
+ 35.61170309009009
+ ],
+ [
+ 139.75417689010987,
+ 35.61152290990991
+ ],
+ [
+ 139.7539571098901,
+ 35.61152290990991
+ ],
+ [
+ 139.7539571098901,
+ 35.61170309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuboStation.225.1",
+ "name": "大久保駅前",
+ "latitude": 35.701833,
+ "longitude": 139.696261,
+ "polygon": [
+ [
+ 139.6961511098901,
+ 35.70192309009009
+ ],
+ [
+ 139.69637089010988,
+ 35.70192309009009
+ ],
+ [
+ 139.69637089010988,
+ 35.70174290990991
+ ],
+ [
+ 139.6961511098901,
+ 35.70174290990991
+ ],
+ [
+ 139.6961511098901,
+ 35.70192309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaSeisokojo.220.2",
+ "name": "品川清掃工場前",
+ "latitude": 35.611238,
+ "longitude": 139.754235,
+ "polygon": [
+ [
+ 139.7541251098901,
+ 35.61132809009009
+ ],
+ [
+ 139.75434489010988,
+ 35.61132809009009
+ ],
+ [
+ 139.75434489010988,
+ 35.61114790990991
+ ],
+ [
+ 139.7541251098901,
+ 35.61114790990991
+ ],
+ [
+ 139.7541251098901,
+ 35.61132809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OimachiStationHigashiguchi.223.1",
+ "name": "大井町駅東口",
+ "latitude": 35.606166,
+ "longitude": 139.735486,
+ "polygon": [
+ [
+ 139.73537610989013,
+ 35.60625609009009
+ ],
+ [
+ 139.7355958901099,
+ 35.60625609009009
+ ],
+ [
+ 139.7355958901099,
+ 35.60607590990991
+ ],
+ [
+ 139.73537610989013,
+ 35.60607590990991
+ ],
+ [
+ 139.73537610989013,
+ 35.60625609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OimachiStationHigashiguchi.223.2",
+ "name": "大井町駅東口",
+ "latitude": 35.606452,
+ "longitude": 139.735516,
+ "polygon": [
+ [
+ 139.7354061098901,
+ 35.60654209009009
+ ],
+ [
+ 139.73562589010987,
+ 35.60654209009009
+ ],
+ [
+ 139.73562589010987,
+ 35.60636190990991
+ ],
+ [
+ 139.7354061098901,
+ 35.60636190990991
+ ],
+ [
+ 139.7354061098901,
+ 35.60654209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OimachiStationHigashiguchi.223.4",
+ "name": "大井町駅東口",
+ "latitude": 35.606312,
+ "longitude": 139.735138,
+ "polygon": [
+ [
+ 139.73502810989012,
+ 35.60640209009009
+ ],
+ [
+ 139.7352478901099,
+ 35.60640209009009
+ ],
+ [
+ 139.7352478901099,
+ 35.60622190990991
+ ],
+ [
+ 139.73502810989012,
+ 35.60622190990991
+ ],
+ [
+ 139.73502810989012,
+ 35.60640209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuboDori.226.4",
+ "name": "大久保通り",
+ "latitude": 35.700722,
+ "longitude": 139.709293,
+ "polygon": [
+ [
+ 139.70918310989012,
+ 35.70081209009009
+ ],
+ [
+ 139.70940289010989,
+ 35.70081209009009
+ ],
+ [
+ 139.70940289010989,
+ 35.70063190990991
+ ],
+ [
+ 139.70918310989012,
+ 35.70063190990991
+ ],
+ [
+ 139.70918310989012,
+ 35.70081209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OzekiYokocho.240.5",
+ "name": "大関横丁",
+ "latitude": 35.731253,
+ "longitude": 139.789555,
+ "polygon": [
+ [
+ 139.78944510989012,
+ 35.73134309009009
+ ],
+ [
+ 139.7896648901099,
+ 35.73134309009009
+ ],
+ [
+ 139.7896648901099,
+ 35.73116290990991
+ ],
+ [
+ 139.78944510989012,
+ 35.73116290990991
+ ],
+ [
+ 139.78944510989012,
+ 35.73134309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuboStation.225.2",
+ "name": "大久保駅前",
+ "latitude": 35.701695,
+ "longitude": 139.69632,
+ "polygon": [
+ [
+ 139.6962101098901,
+ 35.70178509009009
+ ],
+ [
+ 139.69642989010987,
+ 35.70178509009009
+ ],
+ [
+ 139.69642989010987,
+ 35.70160490990991
+ ],
+ [
+ 139.6962101098901,
+ 35.70160490990991
+ ],
+ [
+ 139.6962101098901,
+ 35.70178509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuboDori.226.1",
+ "name": "大久保通り",
+ "latitude": 35.701422,
+ "longitude": 139.708182,
+ "polygon": [
+ [
+ 139.7080721098901,
+ 35.70151209009009
+ ],
+ [
+ 139.70829189010988,
+ 35.70151209009009
+ ],
+ [
+ 139.70829189010988,
+ 35.70133190990991
+ ],
+ [
+ 139.7080721098901,
+ 35.70133190990991
+ ],
+ [
+ 139.7080721098901,
+ 35.70151209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuboDori.226.2",
+ "name": "大久保通り",
+ "latitude": 35.701684,
+ "longitude": 139.708036,
+ "polygon": [
+ [
+ 139.7079261098901,
+ 35.70177409009009
+ ],
+ [
+ 139.70814589010988,
+ 35.70177409009009
+ ],
+ [
+ 139.70814589010988,
+ 35.70159390990991
+ ],
+ [
+ 139.7079261098901,
+ 35.70159390990991
+ ],
+ [
+ 139.7079261098901,
+ 35.70177409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuboDori.226.3",
+ "name": "大久保通り",
+ "latitude": 35.701029,
+ "longitude": 139.706914,
+ "polygon": [
+ [
+ 139.70680410989013,
+ 35.70111909009009
+ ],
+ [
+ 139.7070238901099,
+ 35.70111909009009
+ ],
+ [
+ 139.7070238901099,
+ 35.70093890990991
+ ],
+ [
+ 139.70680410989013,
+ 35.70093890990991
+ ],
+ [
+ 139.70680410989013,
+ 35.70111909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinjukuStation.227.1",
+ "name": "東新宿駅前",
+ "latitude": 35.697191,
+ "longitude": 139.707198,
+ "polygon": [
+ [
+ 139.70708810989012,
+ 35.69728109009009
+ ],
+ [
+ 139.7073078901099,
+ 35.69728109009009
+ ],
+ [
+ 139.7073078901099,
+ 35.697100909909906
+ ],
+ [
+ 139.70708810989012,
+ 35.697100909909906
+ ],
+ [
+ 139.70708810989012,
+ 35.69728109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinjukuStation.227.2",
+ "name": "東新宿駅前",
+ "latitude": 35.697287,
+ "longitude": 139.707518,
+ "polygon": [
+ [
+ 139.7074081098901,
+ 35.69737709009009
+ ],
+ [
+ 139.70762789010988,
+ 35.69737709009009
+ ],
+ [
+ 139.70762789010988,
+ 35.69719690990991
+ ],
+ [
+ 139.7074081098901,
+ 35.69719690990991
+ ],
+ [
+ 139.7074081098901,
+ 35.69737709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinjukuStation.227.3",
+ "name": "東新宿駅前",
+ "latitude": 35.697964,
+ "longitude": 139.708079,
+ "polygon": [
+ [
+ 139.70796910989012,
+ 35.69805409009009
+ ],
+ [
+ 139.70818889010988,
+ 35.69805409009009
+ ],
+ [
+ 139.70818889010988,
+ 35.69787390990991
+ ],
+ [
+ 139.70796910989012,
+ 35.69787390990991
+ ],
+ [
+ 139.70796910989012,
+ 35.69805409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinjukuStation.227.4",
+ "name": "東新宿駅前",
+ "latitude": 35.69851,
+ "longitude": 139.707473,
+ "polygon": [
+ [
+ 139.7073631098901,
+ 35.69860009009009
+ ],
+ [
+ 139.70758289010988,
+ 35.69860009009009
+ ],
+ [
+ 139.70758289010988,
+ 35.69841990990991
+ ],
+ [
+ 139.7073631098901,
+ 35.69841990990991
+ ],
+ [
+ 139.7073631098901,
+ 35.69860009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuboNichome.228.1",
+ "name": "大久保二丁目",
+ "latitude": 35.701104,
+ "longitude": 139.704755,
+ "polygon": [
+ [
+ 139.70464510989012,
+ 35.70119409009009
+ ],
+ [
+ 139.7048648901099,
+ 35.70119409009009
+ ],
+ [
+ 139.7048648901099,
+ 35.70101390990991
+ ],
+ [
+ 139.70464510989012,
+ 35.70101390990991
+ ],
+ [
+ 139.70464510989012,
+ 35.70119409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkuboNichome.228.2",
+ "name": "大久保二丁目",
+ "latitude": 35.701215,
+ "longitude": 139.704627,
+ "polygon": [
+ [
+ 139.7045171098901,
+ 35.70130509009009
+ ],
+ [
+ 139.70473689010987,
+ 35.70130509009009
+ ],
+ [
+ 139.70473689010987,
+ 35.70112490990991
+ ],
+ [
+ 139.7045171098901,
+ 35.70112490990991
+ ],
+ [
+ 139.7045171098901,
+ 35.70130509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiSanchome.229.1",
+ "name": "成木三丁目",
+ "latitude": 35.829671,
+ "longitude": 139.263746,
+ "polygon": [
+ [
+ 139.26363610989011,
+ 35.82976109009009
+ ],
+ [
+ 139.26385589010988,
+ 35.82976109009009
+ ],
+ [
+ 139.26385589010988,
+ 35.82958090990991
+ ],
+ [
+ 139.26363610989011,
+ 35.82958090990991
+ ],
+ [
+ 139.26363610989011,
+ 35.82976109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiSanchome.229.2",
+ "name": "成木三丁目",
+ "latitude": 35.829596,
+ "longitude": 139.263746,
+ "polygon": [
+ [
+ 139.26363610989011,
+ 35.82968609009009
+ ],
+ [
+ 139.26385589010988,
+ 35.82968609009009
+ ],
+ [
+ 139.26385589010988,
+ 35.82950590990991
+ ],
+ [
+ 139.26363610989011,
+ 35.82950590990991
+ ],
+ [
+ 139.26363610989011,
+ 35.82968609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Osagari.231.1",
+ "name": "大下",
+ "latitude": 35.730383,
+ "longitude": 139.778843,
+ "polygon": [
+ [
+ 139.7787331098901,
+ 35.73047309009009
+ ],
+ [
+ 139.77895289010988,
+ 35.73047309009009
+ ],
+ [
+ 139.77895289010988,
+ 35.73029290990991
+ ],
+ [
+ 139.7787331098901,
+ 35.73029290990991
+ ],
+ [
+ 139.7787331098901,
+ 35.73047309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Osagari.231.2",
+ "name": "大下",
+ "latitude": 35.730977,
+ "longitude": 139.778659,
+ "polygon": [
+ [
+ 139.77854910989012,
+ 35.73106709009009
+ ],
+ [
+ 139.7787688901099,
+ 35.73106709009009
+ ],
+ [
+ 139.7787688901099,
+ 35.73088690990991
+ ],
+ [
+ 139.77854910989012,
+ 35.73088690990991
+ ],
+ [
+ 139.77854910989012,
+ 35.73106709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaStation.233.1",
+ "name": "大島駅前",
+ "latitude": 35.689563,
+ "longitude": 139.833595,
+ "polygon": [
+ [
+ 139.83348510989012,
+ 35.68965309009009
+ ],
+ [
+ 139.83370489010989,
+ 35.68965309009009
+ ],
+ [
+ 139.83370489010989,
+ 35.68947290990991
+ ],
+ [
+ 139.83348510989012,
+ 35.68947290990991
+ ],
+ [
+ 139.83348510989012,
+ 35.68965309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaStation.233.2",
+ "name": "大島駅前",
+ "latitude": 35.689676,
+ "longitude": 139.833509,
+ "polygon": [
+ [
+ 139.8333991098901,
+ 35.68976609009009
+ ],
+ [
+ 139.83361889010988,
+ 35.68976609009009
+ ],
+ [
+ 139.83361889010988,
+ 35.68958590990991
+ ],
+ [
+ 139.8333991098901,
+ 35.68958590990991
+ ],
+ [
+ 139.8333991098901,
+ 35.68976609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaStation.233.3",
+ "name": "大島駅前",
+ "latitude": 35.690249,
+ "longitude": 139.835492,
+ "polygon": [
+ [
+ 139.8353821098901,
+ 35.69033909009009
+ ],
+ [
+ 139.83560189010987,
+ 35.69033909009009
+ ],
+ [
+ 139.83560189010987,
+ 35.69015890990991
+ ],
+ [
+ 139.8353821098901,
+ 35.69015890990991
+ ],
+ [
+ 139.8353821098901,
+ 35.69033909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaStation.233.4",
+ "name": "大島駅前",
+ "latitude": 35.690388,
+ "longitude": 139.835734,
+ "polygon": [
+ [
+ 139.83562410989012,
+ 35.69047809009009
+ ],
+ [
+ 139.83584389010989,
+ 35.69047809009009
+ ],
+ [
+ 139.83584389010989,
+ 35.69029790990991
+ ],
+ [
+ 139.83562410989012,
+ 35.69029790990991
+ ],
+ [
+ 139.83562410989012,
+ 35.69047809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaItchome.234.1",
+ "name": "大島一丁目",
+ "latitude": 35.686704,
+ "longitude": 139.826678,
+ "polygon": [
+ [
+ 139.8265681098901,
+ 35.68679409009009
+ ],
+ [
+ 139.82678789010987,
+ 35.68679409009009
+ ],
+ [
+ 139.82678789010987,
+ 35.68661390990991
+ ],
+ [
+ 139.8265681098901,
+ 35.68661390990991
+ ],
+ [
+ 139.8265681098901,
+ 35.68679409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaItchome.234.2",
+ "name": "大島一丁目",
+ "latitude": 35.687379,
+ "longitude": 139.826407,
+ "polygon": [
+ [
+ 139.8262971098901,
+ 35.68746909009009
+ ],
+ [
+ 139.82651689010987,
+ 35.68746909009009
+ ],
+ [
+ 139.82651689010987,
+ 35.68728890990991
+ ],
+ [
+ 139.8262971098901,
+ 35.68728890990991
+ ],
+ [
+ 139.8262971098901,
+ 35.68746909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaNichome.235.1",
+ "name": "大島二丁目",
+ "latitude": 35.689126,
+ "longitude": 139.821799,
+ "polygon": [
+ [
+ 139.82168910989012,
+ 35.68921609009009
+ ],
+ [
+ 139.82190889010988,
+ 35.68921609009009
+ ],
+ [
+ 139.82190889010988,
+ 35.68903590990991
+ ],
+ [
+ 139.82168910989012,
+ 35.68903590990991
+ ],
+ [
+ 139.82168910989012,
+ 35.68921609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaNichome.235.2",
+ "name": "大島二丁目",
+ "latitude": 35.689263,
+ "longitude": 139.821312,
+ "polygon": [
+ [
+ 139.82120210989012,
+ 35.68935309009009
+ ],
+ [
+ 139.8214218901099,
+ 35.68935309009009
+ ],
+ [
+ 139.8214218901099,
+ 35.68917290990991
+ ],
+ [
+ 139.82120210989012,
+ 35.68917290990991
+ ],
+ [
+ 139.82120210989012,
+ 35.68935309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaSanchome.236.2",
+ "name": "大島三丁目",
+ "latitude": 35.689202,
+ "longitude": 139.829096,
+ "polygon": [
+ [
+ 139.8289861098901,
+ 35.68929209009009
+ ],
+ [
+ 139.82920589010988,
+ 35.68929209009009
+ ],
+ [
+ 139.82920589010988,
+ 35.68911190990991
+ ],
+ [
+ 139.8289861098901,
+ 35.68911190990991
+ ],
+ [
+ 139.8289861098901,
+ 35.68929209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaSanchome.236.3",
+ "name": "大島三丁目",
+ "latitude": 35.689354,
+ "longitude": 139.829457,
+ "polygon": [
+ [
+ 139.8293471098901,
+ 35.68944409009009
+ ],
+ [
+ 139.82956689010987,
+ 35.68944409009009
+ ],
+ [
+ 139.82956689010987,
+ 35.68926390990991
+ ],
+ [
+ 139.8293471098901,
+ 35.68926390990991
+ ],
+ [
+ 139.8293471098901,
+ 35.68944409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaGochome.237.1",
+ "name": "大島五丁目",
+ "latitude": 35.688032,
+ "longitude": 139.836166,
+ "polygon": [
+ [
+ 139.8360561098901,
+ 35.68812209009009
+ ],
+ [
+ 139.83627589010987,
+ 35.68812209009009
+ ],
+ [
+ 139.83627589010987,
+ 35.68794190990991
+ ],
+ [
+ 139.8360561098901,
+ 35.68794190990991
+ ],
+ [
+ 139.8360561098901,
+ 35.68812209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaGochome.237.2",
+ "name": "大島五丁目",
+ "latitude": 35.687968,
+ "longitude": 139.836425,
+ "polygon": [
+ [
+ 139.8363151098901,
+ 35.68805809009009
+ ],
+ [
+ 139.83653489010987,
+ 35.68805809009009
+ ],
+ [
+ 139.83653489010987,
+ 35.68787790990991
+ ],
+ [
+ 139.8363151098901,
+ 35.68787790990991
+ ],
+ [
+ 139.8363151098901,
+ 35.68805809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Omagari.251.2",
+ "name": "大曲",
+ "latitude": 35.707176,
+ "longitude": 139.743736,
+ "polygon": [
+ [
+ 139.74362610989013,
+ 35.70726609009009
+ ],
+ [
+ 139.7438458901099,
+ 35.70726609009009
+ ],
+ [
+ 139.7438458901099,
+ 35.70708590990991
+ ],
+ [
+ 139.74362610989013,
+ 35.70708590990991
+ ],
+ [
+ 139.74362610989013,
+ 35.70726609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOjimaStationIriguchi.238.3",
+ "name": "東大島駅入口",
+ "latitude": 35.68997,
+ "longitude": 139.844792,
+ "polygon": [
+ [
+ 139.84468210989013,
+ 35.69006009009009
+ ],
+ [
+ 139.8449018901099,
+ 35.69006009009009
+ ],
+ [
+ 139.8449018901099,
+ 35.68987990990991
+ ],
+ [
+ 139.84468210989013,
+ 35.68987990990991
+ ],
+ [
+ 139.84468210989013,
+ 35.69006009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KubomachiShogakko.242.2",
+ "name": "窪町小学校",
+ "latitude": 35.71873,
+ "longitude": 139.735597,
+ "polygon": [
+ [
+ 139.73548710989013,
+ 35.71882009009009
+ ],
+ [
+ 139.7357068901099,
+ 35.71882009009009
+ ],
+ [
+ 139.7357068901099,
+ 35.71863990990991
+ ],
+ [
+ 139.73548710989013,
+ 35.71863990990991
+ ],
+ [
+ 139.73548710989013,
+ 35.71882009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOjimaStationIriguchi.238.4",
+ "name": "東大島駅入口",
+ "latitude": 35.68928,
+ "longitude": 139.844702,
+ "polygon": [
+ [
+ 139.84459210989013,
+ 35.68937009009009
+ ],
+ [
+ 139.8448118901099,
+ 35.68937009009009
+ ],
+ [
+ 139.8448118901099,
+ 35.689189909909906
+ ],
+ [
+ 139.84459210989013,
+ 35.689189909909906
+ ],
+ [
+ 139.84459210989013,
+ 35.68937009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiShogakko.239.1",
+ "name": "大杉小学校前",
+ "latitude": 35.705636,
+ "longitude": 139.873658,
+ "polygon": [
+ [
+ 139.87354810989012,
+ 35.70572609009009
+ ],
+ [
+ 139.8737678901099,
+ 35.70572609009009
+ ],
+ [
+ 139.8737678901099,
+ 35.70554590990991
+ ],
+ [
+ 139.87354810989012,
+ 35.70554590990991
+ ],
+ [
+ 139.87354810989012,
+ 35.70572609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiShogakko.239.2",
+ "name": "大杉小学校前",
+ "latitude": 35.706628,
+ "longitude": 139.873808,
+ "polygon": [
+ [
+ 139.8736981098901,
+ 35.70671809009009
+ ],
+ [
+ 139.87391789010988,
+ 35.70671809009009
+ ],
+ [
+ 139.87391789010988,
+ 35.70653790990991
+ ],
+ [
+ 139.8736981098901,
+ 35.70653790990991
+ ],
+ [
+ 139.8736981098901,
+ 35.70671809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OzekiYokocho.240.3",
+ "name": "大関横丁",
+ "latitude": 35.731037,
+ "longitude": 139.790401,
+ "polygon": [
+ [
+ 139.79029110989012,
+ 35.73112709009009
+ ],
+ [
+ 139.79051089010989,
+ 35.73112709009009
+ ],
+ [
+ 139.79051089010989,
+ 35.73094690990991
+ ],
+ [
+ 139.79029110989012,
+ 35.73094690990991
+ ],
+ [
+ 139.79029110989012,
+ 35.73112709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OzekiYokocho.240.4",
+ "name": "大関横丁",
+ "latitude": 35.730789,
+ "longitude": 139.790813,
+ "polygon": [
+ [
+ 139.79070310989013,
+ 35.73087909009009
+ ],
+ [
+ 139.7909228901099,
+ 35.73087909009009
+ ],
+ [
+ 139.7909228901099,
+ 35.73069890990991
+ ],
+ [
+ 139.79070310989013,
+ 35.73069890990991
+ ],
+ [
+ 139.79070310989013,
+ 35.73087909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaStation.241.1",
+ "name": "大塚駅前",
+ "latitude": 35.73095,
+ "longitude": 139.729151,
+ "polygon": [
+ [
+ 139.72904110989012,
+ 35.73104009009009
+ ],
+ [
+ 139.72926089010988,
+ 35.73104009009009
+ ],
+ [
+ 139.72926089010988,
+ 35.73085990990991
+ ],
+ [
+ 139.72904110989012,
+ 35.73085990990991
+ ],
+ [
+ 139.72904110989012,
+ 35.73104009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaStation.241.2",
+ "name": "大塚駅前",
+ "latitude": 35.73037,
+ "longitude": 139.729023,
+ "polygon": [
+ [
+ 139.72891310989013,
+ 35.73046009009009
+ ],
+ [
+ 139.7291328901099,
+ 35.73046009009009
+ ],
+ [
+ 139.7291328901099,
+ 35.73027990990991
+ ],
+ [
+ 139.72891310989013,
+ 35.73027990990991
+ ],
+ [
+ 139.72891310989013,
+ 35.73046009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaStation.241.3",
+ "name": "大塚駅前",
+ "latitude": 35.730768,
+ "longitude": 139.729462,
+ "polygon": [
+ [
+ 139.72935210989013,
+ 35.73085809009009
+ ],
+ [
+ 139.7295718901099,
+ 35.73085809009009
+ ],
+ [
+ 139.7295718901099,
+ 35.73067790990991
+ ],
+ [
+ 139.72935210989013,
+ 35.73067790990991
+ ],
+ [
+ 139.72935210989013,
+ 35.73085809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaStation.241.4",
+ "name": "大塚駅前",
+ "latitude": 35.730846,
+ "longitude": 139.729117,
+ "polygon": [
+ [
+ 139.72900710989012,
+ 35.73093609009009
+ ],
+ [
+ 139.72922689010989,
+ 35.73093609009009
+ ],
+ [
+ 139.72922689010989,
+ 35.73075590990991
+ ],
+ [
+ 139.72900710989012,
+ 35.73075590990991
+ ],
+ [
+ 139.72900710989012,
+ 35.73093609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KubomachiShogakko.242.1",
+ "name": "窪町小学校",
+ "latitude": 35.718305,
+ "longitude": 139.735717,
+ "polygon": [
+ [
+ 139.7356071098901,
+ 35.71839509009009
+ ],
+ [
+ 139.73582689010988,
+ 35.71839509009009
+ ],
+ [
+ 139.73582689010988,
+ 35.71821490990991
+ ],
+ [
+ 139.7356071098901,
+ 35.71821490990991
+ ],
+ [
+ 139.7356071098901,
+ 35.71839509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JANishiTokyo.323.2",
+ "name": "JA西東京前",
+ "latitude": 35.794155,
+ "longitude": 139.291522,
+ "polygon": [
+ [
+ 139.2914121098901,
+ 35.794245090090094
+ ],
+ [
+ 139.29163189010987,
+ 35.794245090090094
+ ],
+ [
+ 139.29163189010987,
+ 35.79406490990991
+ ],
+ [
+ 139.2914121098901,
+ 35.79406490990991
+ ],
+ [
+ 139.2914121098901,
+ 35.794245090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaNichome.243.1",
+ "name": "大塚二丁目",
+ "latitude": 35.71951,
+ "longitude": 139.733872,
+ "polygon": [
+ [
+ 139.7337621098901,
+ 35.71960009009009
+ ],
+ [
+ 139.73398189010987,
+ 35.71960009009009
+ ],
+ [
+ 139.73398189010987,
+ 35.71941990990991
+ ],
+ [
+ 139.7337621098901,
+ 35.71941990990991
+ ],
+ [
+ 139.7337621098901,
+ 35.71960009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaNichome.243.2",
+ "name": "大塚二丁目",
+ "latitude": 35.719513,
+ "longitude": 139.734257,
+ "polygon": [
+ [
+ 139.73414710989013,
+ 35.71960309009009
+ ],
+ [
+ 139.7343668901099,
+ 35.71960309009009
+ ],
+ [
+ 139.7343668901099,
+ 35.71942290990991
+ ],
+ [
+ 139.73414710989013,
+ 35.71942290990991
+ ],
+ [
+ 139.73414710989013,
+ 35.71960309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Omagari.251.3",
+ "name": "大曲",
+ "latitude": 35.707814,
+ "longitude": 139.743998,
+ "polygon": [
+ [
+ 139.74388810989012,
+ 35.70790409009009
+ ],
+ [
+ 139.7441078901099,
+ 35.70790409009009
+ ],
+ [
+ 139.7441078901099,
+ 35.70772390990991
+ ],
+ [
+ 139.74388810989012,
+ 35.70772390990991
+ ],
+ [
+ 139.74388810989012,
+ 35.70790409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaSanchome.244.1",
+ "name": "大塚三丁目",
+ "latitude": 35.720745,
+ "longitude": 139.732325,
+ "polygon": [
+ [
+ 139.73221510989012,
+ 35.72083509009009
+ ],
+ [
+ 139.7324348901099,
+ 35.72083509009009
+ ],
+ [
+ 139.7324348901099,
+ 35.72065490990991
+ ],
+ [
+ 139.73221510989012,
+ 35.72065490990991
+ ],
+ [
+ 139.73221510989012,
+ 35.72083509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaSanchome.244.2",
+ "name": "大塚三丁目",
+ "latitude": 35.721396,
+ "longitude": 139.732635,
+ "polygon": [
+ [
+ 139.7325251098901,
+ 35.72148609009009
+ ],
+ [
+ 139.73274489010987,
+ 35.72148609009009
+ ],
+ [
+ 139.73274489010987,
+ 35.72130590990991
+ ],
+ [
+ 139.7325251098901,
+ 35.72130590990991
+ ],
+ [
+ 139.7325251098901,
+ 35.72148609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaSanchome.244.3",
+ "name": "大塚三丁目",
+ "latitude": 35.720729,
+ "longitude": 139.732648,
+ "polygon": [
+ [
+ 139.73253810989013,
+ 35.72081909009009
+ ],
+ [
+ 139.7327578901099,
+ 35.72081909009009
+ ],
+ [
+ 139.7327578901099,
+ 35.72063890990991
+ ],
+ [
+ 139.73253810989013,
+ 35.72063890990991
+ ],
+ [
+ 139.73253810989013,
+ 35.72081909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaSanchome.244.4",
+ "name": "大塚三丁目",
+ "latitude": 35.721554,
+ "longitude": 139.732441,
+ "polygon": [
+ [
+ 139.7323311098901,
+ 35.72164409009009
+ ],
+ [
+ 139.73255089010988,
+ 35.72164409009009
+ ],
+ [
+ 139.73255089010988,
+ 35.72146390990991
+ ],
+ [
+ 139.7323311098901,
+ 35.72146390990991
+ ],
+ [
+ 139.7323311098901,
+ 35.72164409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Otemachi.245.1",
+ "name": "大手町",
+ "latitude": 35.68606,
+ "longitude": 139.763222,
+ "polygon": [
+ [
+ 139.76311210989013,
+ 35.68615009009009
+ ],
+ [
+ 139.7633318901099,
+ 35.68615009009009
+ ],
+ [
+ 139.7633318901099,
+ 35.68596990990991
+ ],
+ [
+ 139.76311210989013,
+ 35.68596990990991
+ ],
+ [
+ 139.76311210989013,
+ 35.68615009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Otemachi.245.2",
+ "name": "大手町",
+ "latitude": 35.685912,
+ "longitude": 139.763481,
+ "polygon": [
+ [
+ 139.76337110989013,
+ 35.68600209009009
+ ],
+ [
+ 139.7635908901099,
+ 35.68600209009009
+ ],
+ [
+ 139.7635908901099,
+ 35.68582190990991
+ ],
+ [
+ 139.76337110989013,
+ 35.68582190990991
+ ],
+ [
+ 139.76337110989013,
+ 35.68600209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ohashi.248.1",
+ "name": "大橋",
+ "latitude": 35.757127,
+ "longitude": 139.408081,
+ "polygon": [
+ [
+ 139.40797110989013,
+ 35.75721709009009
+ ],
+ [
+ 139.4081908901099,
+ 35.75721709009009
+ ],
+ [
+ 139.4081908901099,
+ 35.75703690990991
+ ],
+ [
+ 139.40797110989013,
+ 35.75703690990991
+ ],
+ [
+ 139.40797110989013,
+ 35.75721709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ohashi.248.2",
+ "name": "大橋",
+ "latitude": 35.756854,
+ "longitude": 139.408849,
+ "polygon": [
+ [
+ 139.40873910989012,
+ 35.75694409009009
+ ],
+ [
+ 139.4089588901099,
+ 35.75694409009009
+ ],
+ [
+ 139.4089588901099,
+ 35.75676390990991
+ ],
+ [
+ 139.40873910989012,
+ 35.75676390990991
+ ],
+ [
+ 139.40873910989012,
+ 35.75694409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oharacho.250.1",
+ "name": "大原町",
+ "latitude": 35.66922,
+ "longitude": 139.661558,
+ "polygon": [
+ [
+ 139.66144810989013,
+ 35.66931009009009
+ ],
+ [
+ 139.6616678901099,
+ 35.66931009009009
+ ],
+ [
+ 139.6616678901099,
+ 35.66912990990991
+ ],
+ [
+ 139.66144810989013,
+ 35.66912990990991
+ ],
+ [
+ 139.66144810989013,
+ 35.66931009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oharacho.250.2",
+ "name": "大原町",
+ "latitude": 35.669425,
+ "longitude": 139.661378,
+ "polygon": [
+ [
+ 139.66126810989013,
+ 35.66951509009009
+ ],
+ [
+ 139.6614878901099,
+ 35.66951509009009
+ ],
+ [
+ 139.6614878901099,
+ 35.66933490990991
+ ],
+ [
+ 139.66126810989013,
+ 35.66933490990991
+ ],
+ [
+ 139.66126810989013,
+ 35.66951509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Omagari.251.1",
+ "name": "大曲",
+ "latitude": 35.706769,
+ "longitude": 139.743151,
+ "polygon": [
+ [
+ 139.74304110989013,
+ 35.70685909009009
+ ],
+ [
+ 139.7432608901099,
+ 35.70685909009009
+ ],
+ [
+ 139.7432608901099,
+ 35.70667890990991
+ ],
+ [
+ 139.74304110989013,
+ 35.70667890990991
+ ],
+ [
+ 139.74304110989013,
+ 35.70685909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OguStation.271.1",
+ "name": "尾久駅前",
+ "latitude": 35.746858,
+ "longitude": 139.755254,
+ "polygon": [
+ [
+ 139.75514410989013,
+ 35.74694809009009
+ ],
+ [
+ 139.7553638901099,
+ 35.74694809009009
+ ],
+ [
+ 139.7553638901099,
+ 35.74676790990991
+ ],
+ [
+ 139.75514410989013,
+ 35.74676790990991
+ ],
+ [
+ 139.75514410989013,
+ 35.74694809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Omagari.251.4",
+ "name": "大曲",
+ "latitude": 35.708,
+ "longitude": 139.744123,
+ "polygon": [
+ [
+ 139.74401310989012,
+ 35.70809009009009
+ ],
+ [
+ 139.74423289010988,
+ 35.70809009009009
+ ],
+ [
+ 139.74423289010988,
+ 35.70790990990991
+ ],
+ [
+ 139.74401310989012,
+ 35.70790990990991
+ ],
+ [
+ 139.74401310989012,
+ 35.70809009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawaIchiban.261.2",
+ "name": "小川一番",
+ "latitude": 35.731906,
+ "longitude": 139.442812,
+ "polygon": [
+ [
+ 139.44270210989012,
+ 35.73199609009009
+ ],
+ [
+ 139.4429218901099,
+ 35.73199609009009
+ ],
+ [
+ 139.4429218901099,
+ 35.73181590990991
+ ],
+ [
+ 139.44270210989012,
+ 35.73181590990991
+ ],
+ [
+ 139.44270210989012,
+ 35.73199609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oyana.255.1",
+ "name": "大柳",
+ "latitude": 35.786385,
+ "longitude": 139.252701,
+ "polygon": [
+ [
+ 139.25259110989012,
+ 35.78647509009009
+ ],
+ [
+ 139.25281089010988,
+ 35.78647509009009
+ ],
+ [
+ 139.25281089010988,
+ 35.78629490990991
+ ],
+ [
+ 139.25259110989012,
+ 35.78629490990991
+ ],
+ [
+ 139.25259110989012,
+ 35.78647509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oyana.255.2",
+ "name": "大柳",
+ "latitude": 35.78622,
+ "longitude": 139.251875,
+ "polygon": [
+ [
+ 139.25176510989013,
+ 35.78631009009009
+ ],
+ [
+ 139.2519848901099,
+ 35.78631009009009
+ ],
+ [
+ 139.2519848901099,
+ 35.78612990990991
+ ],
+ [
+ 139.25176510989013,
+ 35.78612990990991
+ ],
+ [
+ 139.25176510989013,
+ 35.78631009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkachimachiStation.260.2",
+ "name": "御徒町駅前",
+ "latitude": 35.707807,
+ "longitude": 139.775546,
+ "polygon": [
+ [
+ 139.7754361098901,
+ 35.70789709009009
+ ],
+ [
+ 139.77565589010987,
+ 35.70789709009009
+ ],
+ [
+ 139.77565589010987,
+ 35.70771690990991
+ ],
+ [
+ 139.7754361098901,
+ 35.70771690990991
+ ],
+ [
+ 139.7754361098901,
+ 35.70789709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OkachimachiStation.260.3",
+ "name": "御徒町駅前",
+ "latitude": 35.707661,
+ "longitude": 139.77543,
+ "polygon": [
+ [
+ 139.77532010989012,
+ 35.70775109009009
+ ],
+ [
+ 139.77553989010988,
+ 35.70775109009009
+ ],
+ [
+ 139.77553989010988,
+ 35.70757090990991
+ ],
+ [
+ 139.77532010989012,
+ 35.70757090990991
+ ],
+ [
+ 139.77532010989012,
+ 35.70775109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawaIchiban.261.1",
+ "name": "小川一番",
+ "latitude": 35.732008,
+ "longitude": 139.442699,
+ "polygon": [
+ [
+ 139.44258910989012,
+ 35.73209809009009
+ ],
+ [
+ 139.4428088901099,
+ 35.73209809009009
+ ],
+ [
+ 139.4428088901099,
+ 35.73191790990991
+ ],
+ [
+ 139.44258910989012,
+ 35.73191790990991
+ ],
+ [
+ 139.44258910989012,
+ 35.73209809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawaSansaro.262.1",
+ "name": "小川三差路",
+ "latitude": 35.731582,
+ "longitude": 139.446518,
+ "polygon": [
+ [
+ 139.44640810989011,
+ 35.73167209009009
+ ],
+ [
+ 139.44662789010988,
+ 35.73167209009009
+ ],
+ [
+ 139.44662789010988,
+ 35.73149190990991
+ ],
+ [
+ 139.44640810989011,
+ 35.73149190990991
+ ],
+ [
+ 139.44640810989011,
+ 35.73167209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawaSansaro.262.2",
+ "name": "小川三差路",
+ "latitude": 35.731523,
+ "longitude": 139.446279,
+ "polygon": [
+ [
+ 139.44616910989012,
+ 35.73161309009009
+ ],
+ [
+ 139.4463888901099,
+ 35.73161309009009
+ ],
+ [
+ 139.4463888901099,
+ 35.73143290990991
+ ],
+ [
+ 139.44616910989012,
+ 35.73143290990991
+ ],
+ [
+ 139.44616910989012,
+ 35.73161309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawachoItchome.263.1",
+ "name": "小川町一丁目",
+ "latitude": 35.730481,
+ "longitude": 139.461502,
+ "polygon": [
+ [
+ 139.4613921098901,
+ 35.73057109009009
+ ],
+ [
+ 139.46161189010988,
+ 35.73057109009009
+ ],
+ [
+ 139.46161189010988,
+ 35.73039090990991
+ ],
+ [
+ 139.4613921098901,
+ 35.73039090990991
+ ],
+ [
+ 139.4613921098901,
+ 35.73057109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawachoItchome.263.2",
+ "name": "小川町一丁目",
+ "latitude": 35.730394,
+ "longitude": 139.461624,
+ "polygon": [
+ [
+ 139.46151410989012,
+ 35.73048409009009
+ ],
+ [
+ 139.46173389010988,
+ 35.73048409009009
+ ],
+ [
+ 139.46173389010988,
+ 35.73030390990991
+ ],
+ [
+ 139.46151410989012,
+ 35.73030390990991
+ ],
+ [
+ 139.46151410989012,
+ 35.73048409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawachoNichome.264.1",
+ "name": "小川町二丁目",
+ "latitude": 35.730227,
+ "longitude": 139.467993,
+ "polygon": [
+ [
+ 139.46788310989012,
+ 35.73031709009009
+ ],
+ [
+ 139.4681028901099,
+ 35.73031709009009
+ ],
+ [
+ 139.4681028901099,
+ 35.73013690990991
+ ],
+ [
+ 139.46788310989012,
+ 35.73013690990991
+ ],
+ [
+ 139.46788310989012,
+ 35.73031709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawachoNichome.264.2",
+ "name": "小川町二丁目",
+ "latitude": 35.730133,
+ "longitude": 139.468454,
+ "polygon": [
+ [
+ 139.46834410989013,
+ 35.73022309009009
+ ],
+ [
+ 139.4685638901099,
+ 35.73022309009009
+ ],
+ [
+ 139.4685638901099,
+ 35.73004290990991
+ ],
+ [
+ 139.46834410989013,
+ 35.73004290990991
+ ],
+ [
+ 139.46834410989013,
+ 35.73022309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Okutamabashi.270.1",
+ "name": "奥多摩橋",
+ "latitude": 35.799289,
+ "longitude": 139.211987,
+ "polygon": [
+ [
+ 139.2118771098901,
+ 35.79937909009009
+ ],
+ [
+ 139.21209689010988,
+ 35.79937909009009
+ ],
+ [
+ 139.21209689010988,
+ 35.79919890990991
+ ],
+ [
+ 139.2118771098901,
+ 35.79919890990991
+ ],
+ [
+ 139.2118771098901,
+ 35.79937909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Okutamabashi.270.2",
+ "name": "奥多摩橋",
+ "latitude": 35.7997,
+ "longitude": 139.211769,
+ "polygon": [
+ [
+ 139.21165910989012,
+ 35.79979009009009
+ ],
+ [
+ 139.2118788901099,
+ 35.79979009009009
+ ],
+ [
+ 139.2118788901099,
+ 35.79960990990991
+ ],
+ [
+ 139.21165910989012,
+ 35.79960990990991
+ ],
+ [
+ 139.21165910989012,
+ 35.79979009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OguStation.271.2",
+ "name": "尾久駅前",
+ "latitude": 35.747227,
+ "longitude": 139.75428,
+ "polygon": [
+ [
+ 139.7541701098901,
+ 35.74731709009009
+ ],
+ [
+ 139.75438989010988,
+ 35.74731709009009
+ ],
+ [
+ 139.75438989010988,
+ 35.74713690990991
+ ],
+ [
+ 139.7541701098901,
+ 35.74713690990991
+ ],
+ [
+ 139.7541701098901,
+ 35.74731709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOguItchome.272.1",
+ "name": "西尾久一丁目",
+ "latitude": 35.744954,
+ "longitude": 139.763377,
+ "polygon": [
+ [
+ 139.7632671098901,
+ 35.74504409009009
+ ],
+ [
+ 139.76348689010987,
+ 35.74504409009009
+ ],
+ [
+ 139.76348689010987,
+ 35.74486390990991
+ ],
+ [
+ 139.7632671098901,
+ 35.74486390990991
+ ],
+ [
+ 139.7632671098901,
+ 35.74504409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ogubashi.274.4",
+ "name": "尾久橋",
+ "latitude": 35.74999,
+ "longitude": 139.769906,
+ "polygon": [
+ [
+ 139.7697961098901,
+ 35.75008009009009
+ ],
+ [
+ 139.77001589010987,
+ 35.75008009009009
+ ],
+ [
+ 139.77001589010987,
+ 35.74989990990991
+ ],
+ [
+ 139.7697961098901,
+ 35.74989990990991
+ ],
+ [
+ 139.7697961098901,
+ 35.75008009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOguItchome.272.2",
+ "name": "西尾久一丁目",
+ "latitude": 35.744474,
+ "longitude": 139.763356,
+ "polygon": [
+ [
+ 139.7632461098901,
+ 35.74456409009009
+ ],
+ [
+ 139.76346589010987,
+ 35.74456409009009
+ ],
+ [
+ 139.76346589010987,
+ 35.74438390990991
+ ],
+ [
+ 139.7632461098901,
+ 35.74438390990991
+ ],
+ [
+ 139.7632461098901,
+ 35.74456409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsudaiArakawaCampus.273.1",
+ "name": "都立大荒川キャンパス前",
+ "latitude": 35.749442,
+ "longitude": 139.772924,
+ "polygon": [
+ [
+ 139.7728141098901,
+ 35.74953209009009
+ ],
+ [
+ 139.77303389010987,
+ 35.74953209009009
+ ],
+ [
+ 139.77303389010987,
+ 35.74935190990991
+ ],
+ [
+ 139.7728141098901,
+ 35.74935190990991
+ ],
+ [
+ 139.7728141098901,
+ 35.74953209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsudaiArakawaCampus.273.2",
+ "name": "都立大荒川キャンパス前",
+ "latitude": 35.749496,
+ "longitude": 139.771813,
+ "polygon": [
+ [
+ 139.77170310989013,
+ 35.74958609009009
+ ],
+ [
+ 139.7719228901099,
+ 35.74958609009009
+ ],
+ [
+ 139.7719228901099,
+ 35.74940590990991
+ ],
+ [
+ 139.77170310989013,
+ 35.74940590990991
+ ],
+ [
+ 139.77170310989013,
+ 35.74958609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JAOsogiShiten.281.2",
+ "name": "JA小曽木支店前",
+ "latitude": 35.822137,
+ "longitude": 139.278988,
+ "polygon": [
+ [
+ 139.27887810989012,
+ 35.82222709009009
+ ],
+ [
+ 139.27909789010988,
+ 35.82222709009009
+ ],
+ [
+ 139.27909789010988,
+ 35.82204690990991
+ ],
+ [
+ 139.27887810989012,
+ 35.82204690990991
+ ],
+ [
+ 139.27887810989012,
+ 35.82222709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ogubashi.274.3",
+ "name": "尾久橋",
+ "latitude": 35.749786,
+ "longitude": 139.769539,
+ "polygon": [
+ [
+ 139.76942910989013,
+ 35.74987609009009
+ ],
+ [
+ 139.7696488901099,
+ 35.74987609009009
+ ],
+ [
+ 139.7696488901099,
+ 35.74969590990991
+ ],
+ [
+ 139.76942910989013,
+ 35.74969590990991
+ ],
+ [
+ 139.76942910989013,
+ 35.74987609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OguHonchoDori.275.1",
+ "name": "尾久本町通り",
+ "latitude": 35.745353,
+ "longitude": 139.769465,
+ "polygon": [
+ [
+ 139.7693551098901,
+ 35.74544309009009
+ ],
+ [
+ 139.76957489010988,
+ 35.74544309009009
+ ],
+ [
+ 139.76957489010988,
+ 35.74526290990991
+ ],
+ [
+ 139.7693551098901,
+ 35.74526290990991
+ ],
+ [
+ 139.7693551098901,
+ 35.74544309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OguHonchoDori.275.2",
+ "name": "尾久本町通り",
+ "latitude": 35.745359,
+ "longitude": 139.769198,
+ "polygon": [
+ [
+ 139.7690881098901,
+ 35.74544909009009
+ ],
+ [
+ 139.76930789010987,
+ 35.74544909009009
+ ],
+ [
+ 139.76930789010987,
+ 35.74526890990991
+ ],
+ [
+ 139.7690881098901,
+ 35.74526890990991
+ ],
+ [
+ 139.7690881098901,
+ 35.74544909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oshiage.276.3",
+ "name": "押上",
+ "latitude": 35.709137,
+ "longitude": 139.812907,
+ "polygon": [
+ [
+ 139.8127971098901,
+ 35.70922709009009
+ ],
+ [
+ 139.81301689010988,
+ 35.70922709009009
+ ],
+ [
+ 139.81301689010988,
+ 35.70904690990991
+ ],
+ [
+ 139.8127971098901,
+ 35.70904690990991
+ ],
+ [
+ 139.8127971098901,
+ 35.70922709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oshiage.276.4",
+ "name": "押上",
+ "latitude": 35.709123,
+ "longitude": 139.812689,
+ "polygon": [
+ [
+ 139.81257910989012,
+ 35.70921309009009
+ ],
+ [
+ 139.8127988901099,
+ 35.70921309009009
+ ],
+ [
+ 139.8127988901099,
+ 35.70903290990991
+ ],
+ [
+ 139.81257910989012,
+ 35.70903290990991
+ ],
+ [
+ 139.81257910989012,
+ 35.70921309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oshiage.276.5",
+ "name": "押上",
+ "latitude": 35.708873,
+ "longitude": 139.812051,
+ "polygon": [
+ [
+ 139.8119411098901,
+ 35.70896309009009
+ ],
+ [
+ 139.81216089010988,
+ 35.70896309009009
+ ],
+ [
+ 139.81216089010988,
+ 35.70878290990991
+ ],
+ [
+ 139.8119411098901,
+ 35.70878290990991
+ ],
+ [
+ 139.8119411098901,
+ 35.70896309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oshiage.276.6",
+ "name": "押上",
+ "latitude": 35.708356,
+ "longitude": 139.813713,
+ "polygon": [
+ [
+ 139.81360310989012,
+ 35.70844609009009
+ ],
+ [
+ 139.8138228901099,
+ 35.70844609009009
+ ],
+ [
+ 139.8138228901099,
+ 35.70826590990991
+ ],
+ [
+ 139.81360310989012,
+ 35.70826590990991
+ ],
+ [
+ 139.81360310989012,
+ 35.70844609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OshiageStation.277.1",
+ "name": "押上駅前",
+ "latitude": 35.710822,
+ "longitude": 139.813564,
+ "polygon": [
+ [
+ 139.81345410989013,
+ 35.71091209009009
+ ],
+ [
+ 139.8136738901099,
+ 35.71091209009009
+ ],
+ [
+ 139.8136738901099,
+ 35.71073190990991
+ ],
+ [
+ 139.81345410989013,
+ 35.71073190990991
+ ],
+ [
+ 139.81345410989013,
+ 35.71091209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OshiageStation.277.2",
+ "name": "押上駅前",
+ "latitude": 35.710675,
+ "longitude": 139.813538,
+ "polygon": [
+ [
+ 139.8134281098901,
+ 35.71076509009009
+ ],
+ [
+ 139.81364789010988,
+ 35.71076509009009
+ ],
+ [
+ 139.81364789010988,
+ 35.71058490990991
+ ],
+ [
+ 139.8134281098901,
+ 35.71058490990991
+ ],
+ [
+ 139.8134281098901,
+ 35.71076509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OshiageItchome.278.1",
+ "name": "押上一丁目",
+ "latitude": 35.711654,
+ "longitude": 139.81586,
+ "polygon": [
+ [
+ 139.8157501098901,
+ 35.71174409009009
+ ],
+ [
+ 139.81596989010987,
+ 35.71174409009009
+ ],
+ [
+ 139.81596989010987,
+ 35.71156390990991
+ ],
+ [
+ 139.8157501098901,
+ 35.71156390990991
+ ],
+ [
+ 139.8157501098901,
+ 35.71174409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OshiageItchome.278.2",
+ "name": "押上一丁目",
+ "latitude": 35.71159,
+ "longitude": 139.816437,
+ "polygon": [
+ [
+ 139.81632710989012,
+ 35.71168009009009
+ ],
+ [
+ 139.8165468901099,
+ 35.71168009009009
+ ],
+ [
+ 139.8165468901099,
+ 35.71149990990991
+ ],
+ [
+ 139.81632710989012,
+ 35.71149990990991
+ ],
+ [
+ 139.81632710989012,
+ 35.71168009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtowaNichome.293.1",
+ "name": "音羽二丁目",
+ "latitude": 35.717786,
+ "longitude": 139.727978,
+ "polygon": [
+ [
+ 139.72786810989012,
+ 35.71787609009009
+ ],
+ [
+ 139.7280878901099,
+ 35.71787609009009
+ ],
+ [
+ 139.7280878901099,
+ 35.71769590990991
+ ],
+ [
+ 139.72786810989012,
+ 35.71769590990991
+ ],
+ [
+ 139.72786810989012,
+ 35.71787609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OshiageSanchome.279.1",
+ "name": "押上三丁目",
+ "latitude": 35.709424,
+ "longitude": 139.818024,
+ "polygon": [
+ [
+ 139.81791410989013,
+ 35.70951409009009
+ ],
+ [
+ 139.8181338901099,
+ 35.70951409009009
+ ],
+ [
+ 139.8181338901099,
+ 35.70933390990991
+ ],
+ [
+ 139.81791410989013,
+ 35.70933390990991
+ ],
+ [
+ 139.81791410989013,
+ 35.70951409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OshiageSanchome.279.2",
+ "name": "押上三丁目",
+ "latitude": 35.70953,
+ "longitude": 139.817988,
+ "polygon": [
+ [
+ 139.81787810989013,
+ 35.70962009009009
+ ],
+ [
+ 139.8180978901099,
+ 35.70962009009009
+ ],
+ [
+ 139.8180978901099,
+ 35.70943990990991
+ ],
+ [
+ 139.81787810989013,
+ 35.70943990990991
+ ],
+ [
+ 139.81787810989013,
+ 35.70962009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsogiShinryojo.280.1",
+ "name": "小曽木診療所前",
+ "latitude": 35.822421,
+ "longitude": 139.281539,
+ "polygon": [
+ [
+ 139.28142910989013,
+ 35.82251109009009
+ ],
+ [
+ 139.2816488901099,
+ 35.82251109009009
+ ],
+ [
+ 139.2816488901099,
+ 35.82233090990991
+ ],
+ [
+ 139.28142910989013,
+ 35.82233090990991
+ ],
+ [
+ 139.28142910989013,
+ 35.82251109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsogiShinryojo.280.2",
+ "name": "小曽木診療所前",
+ "latitude": 35.82248,
+ "longitude": 139.281322,
+ "polygon": [
+ [
+ 139.2812121098901,
+ 35.82257009009009
+ ],
+ [
+ 139.28143189010987,
+ 35.82257009009009
+ ],
+ [
+ 139.28143189010987,
+ 35.82238990990991
+ ],
+ [
+ 139.2812121098901,
+ 35.82238990990991
+ ],
+ [
+ 139.2812121098901,
+ 35.82257009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JAOsogiShiten.281.1",
+ "name": "JA小曽木支店前",
+ "latitude": 35.822021,
+ "longitude": 139.27881,
+ "polygon": [
+ [
+ 139.2787001098901,
+ 35.82211109009009
+ ],
+ [
+ 139.27891989010988,
+ 35.82211109009009
+ ],
+ [
+ 139.27891989010988,
+ 35.82193090990991
+ ],
+ [
+ 139.2787001098901,
+ 35.82193090990991
+ ],
+ [
+ 139.2787001098901,
+ 35.82211109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Otakibashi.282.2",
+ "name": "小滝橋",
+ "latitude": 35.709993,
+ "longitude": 139.694804,
+ "polygon": [
+ [
+ 139.69469410989012,
+ 35.71008309009009
+ ],
+ [
+ 139.6949138901099,
+ 35.71008309009009
+ ],
+ [
+ 139.6949138901099,
+ 35.70990290990991
+ ],
+ [
+ 139.69469410989012,
+ 35.70990290990991
+ ],
+ [
+ 139.69469410989012,
+ 35.71008309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Omotesando.297.4",
+ "name": "表参道",
+ "latitude": 35.668003,
+ "longitude": 139.704938,
+ "polygon": [
+ [
+ 139.70482810989012,
+ 35.66809309009009
+ ],
+ [
+ 139.70504789010988,
+ 35.66809309009009
+ ],
+ [
+ 139.70504789010988,
+ 35.66791290990991
+ ],
+ [
+ 139.70482810989012,
+ 35.66791290990991
+ ],
+ [
+ 139.70482810989012,
+ 35.66809309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Odai.283.1",
+ "name": "小台",
+ "latitude": 35.749869,
+ "longitude": 139.762246,
+ "polygon": [
+ [
+ 139.76213610989012,
+ 35.74995909009009
+ ],
+ [
+ 139.7623558901099,
+ 35.74995909009009
+ ],
+ [
+ 139.7623558901099,
+ 35.74977890990991
+ ],
+ [
+ 139.76213610989012,
+ 35.74977890990991
+ ],
+ [
+ 139.76213610989012,
+ 35.74995909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Odai.283.2",
+ "name": "小台",
+ "latitude": 35.750108,
+ "longitude": 139.762085,
+ "polygon": [
+ [
+ 139.76197510989013,
+ 35.75019809009009
+ ],
+ [
+ 139.7621948901099,
+ 35.75019809009009
+ ],
+ [
+ 139.7621948901099,
+ 35.75001790990991
+ ],
+ [
+ 139.76197510989013,
+ 35.75001790990991
+ ],
+ [
+ 139.76197510989013,
+ 35.75019809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OdaiDoteUe.285.1",
+ "name": "小台土手上",
+ "latitude": 35.755871,
+ "longitude": 139.768474,
+ "polygon": [
+ [
+ 139.76836410989011,
+ 35.75596109009009
+ ],
+ [
+ 139.76858389010988,
+ 35.75596109009009
+ ],
+ [
+ 139.76858389010988,
+ 35.75578090990991
+ ],
+ [
+ 139.76836410989011,
+ 35.75578090990991
+ ],
+ [
+ 139.76836410989011,
+ 35.75596109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OdaiDoteUe.285.2",
+ "name": "小台土手上",
+ "latitude": 35.755873,
+ "longitude": 139.768881,
+ "polygon": [
+ [
+ 139.7687711098901,
+ 35.75596309009009
+ ],
+ [
+ 139.76899089010988,
+ 35.75596309009009
+ ],
+ [
+ 139.76899089010988,
+ 35.75578290990991
+ ],
+ [
+ 139.7687711098901,
+ 35.75578290990991
+ ],
+ [
+ 139.7687711098901,
+ 35.75596309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Odaibashi.286.1",
+ "name": "小台橋",
+ "latitude": 35.755742,
+ "longitude": 139.762799,
+ "polygon": [
+ [
+ 139.76268910989012,
+ 35.75583209009009
+ ],
+ [
+ 139.76290889010988,
+ 35.75583209009009
+ ],
+ [
+ 139.76290889010988,
+ 35.75565190990991
+ ],
+ [
+ 139.76268910989012,
+ 35.75565190990991
+ ],
+ [
+ 139.76268910989012,
+ 35.75583209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Odaibashi.286.2",
+ "name": "小台橋",
+ "latitude": 35.75612,
+ "longitude": 139.762505,
+ "polygon": [
+ [
+ 139.76239510989012,
+ 35.75621009009009
+ ],
+ [
+ 139.7626148901099,
+ 35.75621009009009
+ ],
+ [
+ 139.7626148901099,
+ 35.75602990990991
+ ],
+ [
+ 139.76239510989012,
+ 35.75602990990991
+ ],
+ [
+ 139.76239510989012,
+ 35.75621009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OdaiHigashi.287.1",
+ "name": "小台東",
+ "latitude": 35.754902,
+ "longitude": 139.774857,
+ "polygon": [
+ [
+ 139.77474710989011,
+ 35.75499209009009
+ ],
+ [
+ 139.77496689010988,
+ 35.75499209009009
+ ],
+ [
+ 139.77496689010988,
+ 35.75481190990991
+ ],
+ [
+ 139.77474710989011,
+ 35.75481190990991
+ ],
+ [
+ 139.77474710989011,
+ 35.75499209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OdaiHigashi.287.2",
+ "name": "小台東",
+ "latitude": 35.754994,
+ "longitude": 139.774849,
+ "polygon": [
+ [
+ 139.7747391098901,
+ 35.755084090090094
+ ],
+ [
+ 139.77495889010987,
+ 35.755084090090094
+ ],
+ [
+ 139.77495889010987,
+ 35.75490390990991
+ ],
+ [
+ 139.7747391098901,
+ 35.75490390990991
+ ],
+ [
+ 139.7747391098901,
+ 35.755084090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Odaimachi.288.1",
+ "name": "小台町",
+ "latitude": 35.758736,
+ "longitude": 139.762105,
+ "polygon": [
+ [
+ 139.7619951098901,
+ 35.75882609009009
+ ],
+ [
+ 139.76221489010987,
+ 35.75882609009009
+ ],
+ [
+ 139.76221489010987,
+ 35.75864590990991
+ ],
+ [
+ 139.7619951098901,
+ 35.75864590990991
+ ],
+ [
+ 139.7619951098901,
+ 35.75882609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Odaimachi.288.2",
+ "name": "小台町",
+ "latitude": 35.758787,
+ "longitude": 139.76217,
+ "polygon": [
+ [
+ 139.76206010989011,
+ 35.75887709009009
+ ],
+ [
+ 139.76227989010988,
+ 35.75887709009009
+ ],
+ [
+ 139.76227989010988,
+ 35.75869690990991
+ ],
+ [
+ 139.76206010989011,
+ 35.75869690990991
+ ],
+ [
+ 139.76206010989011,
+ 35.75887709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OchanomizuStation.291.1",
+ "name": "御茶ノ水駅前",
+ "latitude": 35.700396,
+ "longitude": 139.764264,
+ "polygon": [
+ [
+ 139.76415410989011,
+ 35.70048609009009
+ ],
+ [
+ 139.76437389010988,
+ 35.70048609009009
+ ],
+ [
+ 139.76437389010988,
+ 35.70030590990991
+ ],
+ [
+ 139.76415410989011,
+ 35.70030590990991
+ ],
+ [
+ 139.76415410989011,
+ 35.70048609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OchanomizuStation.291.3",
+ "name": "御茶ノ水駅前",
+ "latitude": 35.699839,
+ "longitude": 139.763529,
+ "polygon": [
+ [
+ 139.76341910989012,
+ 35.69992909009009
+ ],
+ [
+ 139.7636388901099,
+ 35.69992909009009
+ ],
+ [
+ 139.7636388901099,
+ 35.69974890990991
+ ],
+ [
+ 139.76341910989012,
+ 35.69974890990991
+ ],
+ [
+ 139.76341910989012,
+ 35.69992909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OchanomizuStation.291.4",
+ "name": "御茶ノ水駅前",
+ "latitude": 35.700098,
+ "longitude": 139.763401,
+ "polygon": [
+ [
+ 139.7632911098901,
+ 35.70018809009009
+ ],
+ [
+ 139.76351089010987,
+ 35.70018809009009
+ ],
+ [
+ 139.76351089010987,
+ 35.70000790990991
+ ],
+ [
+ 139.7632911098901,
+ 35.70000790990991
+ ],
+ [
+ 139.7632911098901,
+ 35.70018809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OchanomizuStation.291.5",
+ "name": "御茶ノ水駅前",
+ "latitude": 35.700332,
+ "longitude": 139.764524,
+ "polygon": [
+ [
+ 139.7644141098901,
+ 35.70042209009009
+ ],
+ [
+ 139.76463389010988,
+ 35.70042209009009
+ ],
+ [
+ 139.76463389010988,
+ 35.70024190990991
+ ],
+ [
+ 139.7644141098901,
+ 35.70024190990991
+ ],
+ [
+ 139.7644141098901,
+ 35.70042209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OchanomizuStation.291.6",
+ "name": "御茶ノ水駅前",
+ "latitude": 35.700462,
+ "longitude": 139.764616,
+ "polygon": [
+ [
+ 139.7645061098901,
+ 35.70055209009009
+ ],
+ [
+ 139.76472589010987,
+ 35.70055209009009
+ ],
+ [
+ 139.76472589010987,
+ 35.70037190990991
+ ],
+ [
+ 139.7645061098901,
+ 35.70037190990991
+ ],
+ [
+ 139.7645061098901,
+ 35.70055209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtowaItchome.292.1",
+ "name": "音羽一丁目",
+ "latitude": 35.713555,
+ "longitude": 139.730061,
+ "polygon": [
+ [
+ 139.72995110989012,
+ 35.71364509009009
+ ],
+ [
+ 139.7301708901099,
+ 35.71364509009009
+ ],
+ [
+ 139.7301708901099,
+ 35.71346490990991
+ ],
+ [
+ 139.72995110989012,
+ 35.71346490990991
+ ],
+ [
+ 139.72995110989012,
+ 35.71364509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtowaItchome.292.2",
+ "name": "音羽一丁目",
+ "latitude": 35.713922,
+ "longitude": 139.730163,
+ "polygon": [
+ [
+ 139.73005310989012,
+ 35.71401209009009
+ ],
+ [
+ 139.7302728901099,
+ 35.71401209009009
+ ],
+ [
+ 139.7302728901099,
+ 35.713831909909906
+ ],
+ [
+ 139.73005310989012,
+ 35.713831909909906
+ ],
+ [
+ 139.73005310989012,
+ 35.71401209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtowaNichome.293.2",
+ "name": "音羽二丁目",
+ "latitude": 35.71748,
+ "longitude": 139.728356,
+ "polygon": [
+ [
+ 139.7282461098901,
+ 35.71757009009009
+ ],
+ [
+ 139.72846589010987,
+ 35.71757009009009
+ ],
+ [
+ 139.72846589010987,
+ 35.71738990990991
+ ],
+ [
+ 139.7282461098901,
+ 35.71738990990991
+ ],
+ [
+ 139.7282461098901,
+ 35.71757009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Onarimon.294.1",
+ "name": "御成門",
+ "latitude": 35.661108,
+ "longitude": 139.750634,
+ "polygon": [
+ [
+ 139.7505241098901,
+ 35.66119809009009
+ ],
+ [
+ 139.75074389010987,
+ 35.66119809009009
+ ],
+ [
+ 139.75074389010987,
+ 35.66101790990991
+ ],
+ [
+ 139.7505241098901,
+ 35.66101790990991
+ ],
+ [
+ 139.7505241098901,
+ 35.66119809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Onarimon.294.2",
+ "name": "御成門",
+ "latitude": 35.66135,
+ "longitude": 139.750547,
+ "polygon": [
+ [
+ 139.75043710989013,
+ 35.66144009009009
+ ],
+ [
+ 139.7506568901099,
+ 35.66144009009009
+ ],
+ [
+ 139.7506568901099,
+ 35.66125990990991
+ ],
+ [
+ 139.75043710989013,
+ 35.66125990990991
+ ],
+ [
+ 139.75043710989013,
+ 35.66144009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OnarimonShogakko.295.1",
+ "name": "御成門小学校前",
+ "latitude": 35.660551,
+ "longitude": 139.748943,
+ "polygon": [
+ [
+ 139.7488331098901,
+ 35.66064109009009
+ ],
+ [
+ 139.74905289010988,
+ 35.66064109009009
+ ],
+ [
+ 139.74905289010988,
+ 35.66046090990991
+ ],
+ [
+ 139.7488331098901,
+ 35.66046090990991
+ ],
+ [
+ 139.7488331098901,
+ 35.66064109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Omakura.296.1",
+ "name": "小枕",
+ "latitude": 35.814866,
+ "longitude": 139.268269,
+ "polygon": [
+ [
+ 139.26815910989012,
+ 35.81495609009009
+ ],
+ [
+ 139.2683788901099,
+ 35.81495609009009
+ ],
+ [
+ 139.2683788901099,
+ 35.81477590990991
+ ],
+ [
+ 139.26815910989012,
+ 35.81477590990991
+ ],
+ [
+ 139.26815910989012,
+ 35.81495609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Omakura.296.2",
+ "name": "小枕",
+ "latitude": 35.814828,
+ "longitude": 139.267773,
+ "polygon": [
+ [
+ 139.26766310989012,
+ 35.81491809009009
+ ],
+ [
+ 139.2678828901099,
+ 35.81491809009009
+ ],
+ [
+ 139.2678828901099,
+ 35.81473790990991
+ ],
+ [
+ 139.26766310989012,
+ 35.81473790990991
+ ],
+ [
+ 139.26766310989012,
+ 35.81491809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Omotesando.297.3",
+ "name": "表参道",
+ "latitude": 35.668909,
+ "longitude": 139.705817,
+ "polygon": [
+ [
+ 139.7057071098901,
+ 35.66899909009009
+ ],
+ [
+ 139.70592689010988,
+ 35.66899909009009
+ ],
+ [
+ 139.70592689010988,
+ 35.66881890990991
+ ],
+ [
+ 139.7057071098901,
+ 35.66881890990991
+ ],
+ [
+ 139.7057071098901,
+ 35.66899909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaiganItchome.299.1",
+ "name": "海岸一丁目",
+ "latitude": 35.656218,
+ "longitude": 139.759364,
+ "polygon": [
+ [
+ 139.75925410989012,
+ 35.65630809009009
+ ],
+ [
+ 139.7594738901099,
+ 35.65630809009009
+ ],
+ [
+ 139.7594738901099,
+ 35.65612790990991
+ ],
+ [
+ 139.75925410989012,
+ 35.65612790990991
+ ],
+ [
+ 139.75925410989012,
+ 35.65630809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaiganItchome.299.2",
+ "name": "海岸一丁目",
+ "latitude": 35.656004,
+ "longitude": 139.759562,
+ "polygon": [
+ [
+ 139.7594521098901,
+ 35.65609409009009
+ ],
+ [
+ 139.75967189010987,
+ 35.65609409009009
+ ],
+ [
+ 139.75967189010987,
+ 35.65591390990991
+ ],
+ [
+ 139.7594521098901,
+ 35.65591390990991
+ ],
+ [
+ 139.7594521098901,
+ 35.65609409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStationDori.368.11",
+ "name": "亀戸駅通り",
+ "latitude": 35.69642,
+ "longitude": 139.824547,
+ "polygon": [
+ [
+ 139.8244371098901,
+ 35.696510090090094
+ ],
+ [
+ 139.82465689010988,
+ 35.696510090090094
+ ],
+ [
+ 139.82465689010988,
+ 35.69632990990991
+ ],
+ [
+ 139.8244371098901,
+ 35.69632990990991
+ ],
+ [
+ 139.8244371098901,
+ 35.696510090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HinodeSambashiIriguchi.300.1",
+ "name": "日の出桟橋入口",
+ "latitude": 35.650502,
+ "longitude": 139.75884,
+ "polygon": [
+ [
+ 139.7587301098901,
+ 35.65059209009009
+ ],
+ [
+ 139.75894989010988,
+ 35.65059209009009
+ ],
+ [
+ 139.75894989010988,
+ 35.65041190990991
+ ],
+ [
+ 139.7587301098901,
+ 35.65041190990991
+ ],
+ [
+ 139.7587301098901,
+ 35.65059209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HinodeSambashiIriguchi.300.2",
+ "name": "日の出桟橋入口",
+ "latitude": 35.649968,
+ "longitude": 139.758989,
+ "polygon": [
+ [
+ 139.75887910989013,
+ 35.65005809009009
+ ],
+ [
+ 139.7590988901099,
+ 35.65005809009009
+ ],
+ [
+ 139.7590988901099,
+ 35.64987790990991
+ ],
+ [
+ 139.75887910989013,
+ 35.64987790990991
+ ],
+ [
+ 139.75887910989013,
+ 35.65005809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaiganSanchome.301.1",
+ "name": "海岸三丁目",
+ "latitude": 35.645571,
+ "longitude": 139.756343,
+ "polygon": [
+ [
+ 139.7562331098901,
+ 35.64566109009009
+ ],
+ [
+ 139.75645289010987,
+ 35.64566109009009
+ ],
+ [
+ 139.75645289010987,
+ 35.64548090990991
+ ],
+ [
+ 139.7562331098901,
+ 35.64548090990991
+ ],
+ [
+ 139.7562331098901,
+ 35.64566109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaiganSanchome.301.2",
+ "name": "海岸三丁目",
+ "latitude": 35.645305,
+ "longitude": 139.756582,
+ "polygon": [
+ [
+ 139.75647210989013,
+ 35.64539509009009
+ ],
+ [
+ 139.7566918901099,
+ 35.64539509009009
+ ],
+ [
+ 139.7566918901099,
+ 35.64521490990991
+ ],
+ [
+ 139.75647210989013,
+ 35.64521490990991
+ ],
+ [
+ 139.75647210989013,
+ 35.64539509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoInternationalCruiseTerminalStation.302.1",
+ "name": "東京国際クルーズターミナル駅前",
+ "latitude": 35.622328,
+ "longitude": 139.772184,
+ "polygon": [
+ [
+ 139.77207410989013,
+ 35.62241809009009
+ ],
+ [
+ 139.7722938901099,
+ 35.62241809009009
+ ],
+ [
+ 139.7722938901099,
+ 35.62223790990991
+ ],
+ [
+ 139.77207410989013,
+ 35.62223790990991
+ ],
+ [
+ 139.77207410989013,
+ 35.62241809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeKagurazakaStation.305.2",
+ "name": "牛込神楽坂駅前",
+ "latitude": 35.701898,
+ "longitude": 139.737692,
+ "polygon": [
+ [
+ 139.73758210989013,
+ 35.70198809009009
+ ],
+ [
+ 139.7378018901099,
+ 35.70198809009009
+ ],
+ [
+ 139.7378018901099,
+ 35.70180790990991
+ ],
+ [
+ 139.73758210989013,
+ 35.70180790990991
+ ],
+ [
+ 139.73758210989013,
+ 35.70198809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoInternationalCruiseTerminalStation.302.2",
+ "name": "東京国際クルーズターミナル駅前",
+ "latitude": 35.621659,
+ "longitude": 139.773058,
+ "polygon": [
+ [
+ 139.7729481098901,
+ 35.62174909009009
+ ],
+ [
+ 139.77316789010987,
+ 35.62174909009009
+ ],
+ [
+ 139.77316789010987,
+ 35.62156890990991
+ ],
+ [
+ 139.7729481098901,
+ 35.62156890990991
+ ],
+ [
+ 139.7729481098901,
+ 35.62174909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoInternationalCruiseTerminalStation.302.3",
+ "name": "東京国際クルーズターミナル駅前",
+ "latitude": 35.621057,
+ "longitude": 139.774762,
+ "polygon": [
+ [
+ 139.77465210989013,
+ 35.62114709009009
+ ],
+ [
+ 139.7748718901099,
+ 35.62114709009009
+ ],
+ [
+ 139.7748718901099,
+ 35.62096690990991
+ ],
+ [
+ 139.77465210989013,
+ 35.62096690990991
+ ],
+ [
+ 139.77465210989013,
+ 35.62114709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.3",
+ "name": "葛西駅前",
+ "latitude": 35.663254,
+ "longitude": 139.872709,
+ "polygon": [
+ [
+ 139.8725991098901,
+ 35.66334409009009
+ ],
+ [
+ 139.87281889010987,
+ 35.66334409009009
+ ],
+ [
+ 139.87281889010987,
+ 35.66316390990991
+ ],
+ [
+ 139.8725991098901,
+ 35.66316390990991
+ ],
+ [
+ 139.8725991098901,
+ 35.66334409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kakigaracho.303.1",
+ "name": "蛎殻町",
+ "latitude": 35.682477,
+ "longitude": 139.780863,
+ "polygon": [
+ [
+ 139.78075310989013,
+ 35.68256709009009
+ ],
+ [
+ 139.7809728901099,
+ 35.68256709009009
+ ],
+ [
+ 139.7809728901099,
+ 35.68238690990991
+ ],
+ [
+ 139.78075310989013,
+ 35.68238690990991
+ ],
+ [
+ 139.78075310989013,
+ 35.68256709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kakigaracho.303.2",
+ "name": "蛎殻町",
+ "latitude": 35.682337,
+ "longitude": 139.780862,
+ "polygon": [
+ [
+ 139.78075210989013,
+ 35.68242709009009
+ ],
+ [
+ 139.7809718901099,
+ 35.68242709009009
+ ],
+ [
+ 139.7809718901099,
+ 35.68224690990991
+ ],
+ [
+ 139.78075210989013,
+ 35.68224690990991
+ ],
+ [
+ 139.78075210989013,
+ 35.68242709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UshigomeKagurazakaStation.305.1",
+ "name": "牛込神楽坂駅前",
+ "latitude": 35.701599,
+ "longitude": 139.737564,
+ "polygon": [
+ [
+ 139.7374541098901,
+ 35.70168909009009
+ ],
+ [
+ 139.73767389010987,
+ 35.70168909009009
+ ],
+ [
+ 139.73767389010987,
+ 35.70150890990991
+ ],
+ [
+ 139.7374541098901,
+ 35.70150890990991
+ ],
+ [
+ 139.7374541098901,
+ 35.70168909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStationDori.306.1",
+ "name": "葛西駅通り",
+ "latitude": 35.660986,
+ "longitude": 139.869396,
+ "polygon": [
+ [
+ 139.8692861098901,
+ 35.66107609009009
+ ],
+ [
+ 139.86950589010988,
+ 35.66107609009009
+ ],
+ [
+ 139.86950589010988,
+ 35.66089590990991
+ ],
+ [
+ 139.8692861098901,
+ 35.66089590990991
+ ],
+ [
+ 139.8692861098901,
+ 35.66107609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStationDori.306.2",
+ "name": "葛西駅通り",
+ "latitude": 35.660572,
+ "longitude": 139.869996,
+ "polygon": [
+ [
+ 139.8698861098901,
+ 35.66066209009009
+ ],
+ [
+ 139.87010589010987,
+ 35.66066209009009
+ ],
+ [
+ 139.87010589010987,
+ 35.66048190990991
+ ],
+ [
+ 139.8698861098901,
+ 35.66048190990991
+ ],
+ [
+ 139.8698861098901,
+ 35.66066209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.4",
+ "name": "葛西駅前",
+ "latitude": 35.663144,
+ "longitude": 139.872702,
+ "polygon": [
+ [
+ 139.87259210989012,
+ 35.66323409009009
+ ],
+ [
+ 139.8728118901099,
+ 35.66323409009009
+ ],
+ [
+ 139.8728118901099,
+ 35.66305390990991
+ ],
+ [
+ 139.87259210989012,
+ 35.66305390990991
+ ],
+ [
+ 139.87259210989012,
+ 35.66323409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.5",
+ "name": "葛西駅前",
+ "latitude": 35.663256,
+ "longitude": 139.872875,
+ "polygon": [
+ [
+ 139.8727651098901,
+ 35.66334609009009
+ ],
+ [
+ 139.87298489010988,
+ 35.66334609009009
+ ],
+ [
+ 139.87298489010988,
+ 35.66316590990991
+ ],
+ [
+ 139.8727651098901,
+ 35.66316590990991
+ ],
+ [
+ 139.8727651098901,
+ 35.66334609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.6",
+ "name": "葛西駅前",
+ "latitude": 35.663106,
+ "longitude": 139.87287,
+ "polygon": [
+ [
+ 139.87276010989012,
+ 35.66319609009009
+ ],
+ [
+ 139.8729798901099,
+ 35.66319609009009
+ ],
+ [
+ 139.8729798901099,
+ 35.66301590990991
+ ],
+ [
+ 139.87276010989012,
+ 35.66301590990991
+ ],
+ [
+ 139.87276010989012,
+ 35.66319609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.7",
+ "name": "葛西駅前",
+ "latitude": 35.663183,
+ "longitude": 139.873274,
+ "polygon": [
+ [
+ 139.87316410989013,
+ 35.66327309009009
+ ],
+ [
+ 139.8733838901099,
+ 35.66327309009009
+ ],
+ [
+ 139.8733838901099,
+ 35.663092909909906
+ ],
+ [
+ 139.87316410989013,
+ 35.663092909909906
+ ],
+ [
+ 139.87316410989013,
+ 35.66327309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.8",
+ "name": "葛西駅前",
+ "latitude": 35.663072,
+ "longitude": 139.873275,
+ "polygon": [
+ [
+ 139.87316510989012,
+ 35.66316209009009
+ ],
+ [
+ 139.8733848901099,
+ 35.66316209009009
+ ],
+ [
+ 139.8733848901099,
+ 35.66298190990991
+ ],
+ [
+ 139.87316510989012,
+ 35.66298190990991
+ ],
+ [
+ 139.87316510989012,
+ 35.66316209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.9",
+ "name": "葛西駅前",
+ "latitude": 35.663217,
+ "longitude": 139.873437,
+ "polygon": [
+ [
+ 139.8733271098901,
+ 35.66330709009009
+ ],
+ [
+ 139.87354689010988,
+ 35.66330709009009
+ ],
+ [
+ 139.87354689010988,
+ 35.66312690990991
+ ],
+ [
+ 139.8733271098901,
+ 35.66312690990991
+ ],
+ [
+ 139.8733271098901,
+ 35.66330709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.10",
+ "name": "葛西駅前",
+ "latitude": 35.66394,
+ "longitude": 139.873351,
+ "polygon": [
+ [
+ 139.87324110989013,
+ 35.66403009009009
+ ],
+ [
+ 139.8734608901099,
+ 35.66403009009009
+ ],
+ [
+ 139.8734608901099,
+ 35.663849909909906
+ ],
+ [
+ 139.87324110989013,
+ 35.663849909909906
+ ],
+ [
+ 139.87324110989013,
+ 35.66403009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.11",
+ "name": "葛西駅前",
+ "latitude": 35.663957,
+ "longitude": 139.872974,
+ "polygon": [
+ [
+ 139.87286410989012,
+ 35.664047090090094
+ ],
+ [
+ 139.87308389010988,
+ 35.664047090090094
+ ],
+ [
+ 139.87308389010988,
+ 35.66386690990991
+ ],
+ [
+ 139.87286410989012,
+ 35.66386690990991
+ ],
+ [
+ 139.87286410989012,
+ 35.664047090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.12",
+ "name": "葛西駅前",
+ "latitude": 35.663026,
+ "longitude": 139.873744,
+ "polygon": [
+ [
+ 139.8736341098901,
+ 35.66311609009009
+ ],
+ [
+ 139.87385389010987,
+ 35.66311609009009
+ ],
+ [
+ 139.87385389010987,
+ 35.66293590990991
+ ],
+ [
+ 139.8736341098901,
+ 35.66293590990991
+ ],
+ [
+ 139.8736341098901,
+ 35.66311609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.13",
+ "name": "葛西駅前",
+ "latitude": 35.66306,
+ "longitude": 139.873462,
+ "polygon": [
+ [
+ 139.8733521098901,
+ 35.66315009009009
+ ],
+ [
+ 139.87357189010987,
+ 35.66315009009009
+ ],
+ [
+ 139.87357189010987,
+ 35.66296990990991
+ ],
+ [
+ 139.8733521098901,
+ 35.66296990990991
+ ],
+ [
+ 139.8733521098901,
+ 35.66315009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiStation.307.15",
+ "name": "葛西駅前",
+ "latitude": 35.66246,
+ "longitude": 139.873229,
+ "polygon": [
+ [
+ 139.87311910989013,
+ 35.66255009009009
+ ],
+ [
+ 139.8733388901099,
+ 35.66255009009009
+ ],
+ [
+ 139.8733388901099,
+ 35.66236990990991
+ ],
+ [
+ 139.87311910989013,
+ 35.66236990990991
+ ],
+ [
+ 139.87311910989013,
+ 35.66255009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiKuminkan.308.1",
+ "name": "葛西区民館前",
+ "latitude": 35.666063,
+ "longitude": 139.869377,
+ "polygon": [
+ [
+ 139.8692671098901,
+ 35.66615309009009
+ ],
+ [
+ 139.86948689010987,
+ 35.66615309009009
+ ],
+ [
+ 139.86948689010987,
+ 35.66597290990991
+ ],
+ [
+ 139.8692671098901,
+ 35.66597290990991
+ ],
+ [
+ 139.8692671098901,
+ 35.66615309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiKuminkan.308.2",
+ "name": "葛西区民館前",
+ "latitude": 35.666221,
+ "longitude": 139.86981,
+ "polygon": [
+ [
+ 139.86970010989012,
+ 35.66631109009009
+ ],
+ [
+ 139.86991989010988,
+ 35.66631109009009
+ ],
+ [
+ 139.86991989010988,
+ 35.66613090990991
+ ],
+ [
+ 139.86970010989012,
+ 35.66613090990991
+ ],
+ [
+ 139.86970010989012,
+ 35.66631109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiKokaKoko.309.3",
+ "name": "葛西工科高校前",
+ "latitude": 35.682211,
+ "longitude": 139.881213,
+ "polygon": [
+ [
+ 139.88110310989012,
+ 35.68230109009009
+ ],
+ [
+ 139.88132289010989,
+ 35.68230109009009
+ ],
+ [
+ 139.88132289010989,
+ 35.68212090990991
+ ],
+ [
+ 139.88110310989012,
+ 35.68212090990991
+ ],
+ [
+ 139.88110310989012,
+ 35.68230109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiKokaKoko.309.4",
+ "name": "葛西工科高校前",
+ "latitude": 35.682353,
+ "longitude": 139.880927,
+ "polygon": [
+ [
+ 139.88081710989013,
+ 35.68244309009009
+ ],
+ [
+ 139.8810368901099,
+ 35.68244309009009
+ ],
+ [
+ 139.8810368901099,
+ 35.68226290990991
+ ],
+ [
+ 139.88081710989013,
+ 35.68226290990991
+ ],
+ [
+ 139.88081710989013,
+ 35.68244309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaShako.310.1",
+ "name": "江戸川車庫前",
+ "latitude": 35.66847,
+ "longitude": 139.867471,
+ "polygon": [
+ [
+ 139.8673611098901,
+ 35.66856009009009
+ ],
+ [
+ 139.86758089010988,
+ 35.66856009009009
+ ],
+ [
+ 139.86758089010988,
+ 35.66837990990991
+ ],
+ [
+ 139.8673611098901,
+ 35.66837990990991
+ ],
+ [
+ 139.8673611098901,
+ 35.66856009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaShako.310.2",
+ "name": "江戸川車庫前",
+ "latitude": 35.668758,
+ "longitude": 139.866864,
+ "polygon": [
+ [
+ 139.8667541098901,
+ 35.66884809009009
+ ],
+ [
+ 139.86697389010988,
+ 35.66884809009009
+ ],
+ [
+ 139.86697389010988,
+ 35.66866790990991
+ ],
+ [
+ 139.8667541098901,
+ 35.66866790990991
+ ],
+ [
+ 139.8667541098901,
+ 35.66884809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaShako.310.3",
+ "name": "江戸川車庫前",
+ "latitude": 35.668375,
+ "longitude": 139.867609,
+ "polygon": [
+ [
+ 139.8674991098901,
+ 35.66846509009009
+ ],
+ [
+ 139.86771889010987,
+ 35.66846509009009
+ ],
+ [
+ 139.86771889010987,
+ 35.66828490990991
+ ],
+ [
+ 139.8674991098901,
+ 35.66828490990991
+ ],
+ [
+ 139.8674991098901,
+ 35.66846509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaShako.310.4",
+ "name": "江戸川車庫前",
+ "latitude": 35.668339,
+ "longitude": 139.867998,
+ "polygon": [
+ [
+ 139.86788810989012,
+ 35.66842909009009
+ ],
+ [
+ 139.86810789010988,
+ 35.66842909009009
+ ],
+ [
+ 139.86810789010988,
+ 35.66824890990991
+ ],
+ [
+ 139.86788810989012,
+ 35.66824890990991
+ ],
+ [
+ 139.86788810989012,
+ 35.66842909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaibashiHigashizume.314.1",
+ "name": "葛西橋東詰",
+ "latitude": 35.670707,
+ "longitude": 139.854036,
+ "polygon": [
+ [
+ 139.85392610989012,
+ 35.67079709009009
+ ],
+ [
+ 139.8541458901099,
+ 35.67079709009009
+ ],
+ [
+ 139.8541458901099,
+ 35.67061690990991
+ ],
+ [
+ 139.85392610989012,
+ 35.67061690990991
+ ],
+ [
+ 139.85392610989012,
+ 35.67079709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiChugakko.312.1",
+ "name": "葛西中学校前",
+ "latitude": 35.670629,
+ "longitude": 139.871979,
+ "polygon": [
+ [
+ 139.87186910989013,
+ 35.67071909009009
+ ],
+ [
+ 139.8720888901099,
+ 35.67071909009009
+ ],
+ [
+ 139.8720888901099,
+ 35.67053890990991
+ ],
+ [
+ 139.87186910989013,
+ 35.67053890990991
+ ],
+ [
+ 139.87186910989013,
+ 35.67071909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasugaItchome.318.1",
+ "name": "春日一丁目",
+ "latitude": 35.707748,
+ "longitude": 139.754008,
+ "polygon": [
+ [
+ 139.75389810989012,
+ 35.70783809009009
+ ],
+ [
+ 139.75411789010988,
+ 35.70783809009009
+ ],
+ [
+ 139.75411789010988,
+ 35.70765790990991
+ ],
+ [
+ 139.75389810989012,
+ 35.70765790990991
+ ],
+ [
+ 139.75389810989012,
+ 35.70783809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiChugakko.312.2",
+ "name": "葛西中学校前",
+ "latitude": 35.671341,
+ "longitude": 139.872217,
+ "polygon": [
+ [
+ 139.87210710989012,
+ 35.67143109009009
+ ],
+ [
+ 139.8723268901099,
+ 35.67143109009009
+ ],
+ [
+ 139.8723268901099,
+ 35.67125090990991
+ ],
+ [
+ 139.87210710989012,
+ 35.67125090990991
+ ],
+ [
+ 139.87210710989012,
+ 35.67143109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasaibashi.313.1",
+ "name": "葛西橋",
+ "latitude": 35.672148,
+ "longitude": 139.842486,
+ "polygon": [
+ [
+ 139.84237610989013,
+ 35.67223809009009
+ ],
+ [
+ 139.8425958901099,
+ 35.67223809009009
+ ],
+ [
+ 139.8425958901099,
+ 35.67205790990991
+ ],
+ [
+ 139.84237610989013,
+ 35.67205790990991
+ ],
+ [
+ 139.84237610989013,
+ 35.67223809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasaibashi.313.2",
+ "name": "葛西橋",
+ "latitude": 35.672639,
+ "longitude": 139.842417,
+ "polygon": [
+ [
+ 139.84230710989013,
+ 35.67272909009009
+ ],
+ [
+ 139.8425268901099,
+ 35.67272909009009
+ ],
+ [
+ 139.8425268901099,
+ 35.67254890990991
+ ],
+ [
+ 139.84230710989013,
+ 35.67254890990991
+ ],
+ [
+ 139.84230710989013,
+ 35.67272909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaibashiHigashizume.314.2",
+ "name": "葛西橋東詰",
+ "latitude": 35.67036,
+ "longitude": 139.855077,
+ "polygon": [
+ [
+ 139.8549671098901,
+ 35.67045009009009
+ ],
+ [
+ 139.85518689010988,
+ 35.67045009009009
+ ],
+ [
+ 139.85518689010988,
+ 35.67026990990991
+ ],
+ [
+ 139.8549671098901,
+ 35.67026990990991
+ ],
+ [
+ 139.8549671098901,
+ 35.67045009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasugaNichome.319.1",
+ "name": "春日二丁目",
+ "latitude": 35.712095,
+ "longitude": 139.743597,
+ "polygon": [
+ [
+ 139.7434871098901,
+ 35.71218509009009
+ ],
+ [
+ 139.74370689010988,
+ 35.71218509009009
+ ],
+ [
+ 139.74370689010988,
+ 35.71200490990991
+ ],
+ [
+ 139.7434871098901,
+ 35.71200490990991
+ ],
+ [
+ 139.7434871098901,
+ 35.71218509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinkawabashi.315.1",
+ "name": "新川橋",
+ "latitude": 35.673441,
+ "longitude": 139.87175,
+ "polygon": [
+ [
+ 139.8716401098901,
+ 35.67353109009009
+ ],
+ [
+ 139.87185989010987,
+ 35.67353109009009
+ ],
+ [
+ 139.87185989010987,
+ 35.67335090990991
+ ],
+ [
+ 139.8716401098901,
+ 35.67335090990991
+ ],
+ [
+ 139.8716401098901,
+ 35.67353109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinkawabashi.315.2",
+ "name": "新川橋",
+ "latitude": 35.673159,
+ "longitude": 139.871976,
+ "polygon": [
+ [
+ 139.8718661098901,
+ 35.67324909009009
+ ],
+ [
+ 139.87208589010987,
+ 35.67324909009009
+ ],
+ [
+ 139.87208589010987,
+ 35.67306890990991
+ ],
+ [
+ 139.8718661098901,
+ 35.67306890990991
+ ],
+ [
+ 139.8718661098901,
+ 35.67324909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasumigaseki.320.2",
+ "name": "霞が関",
+ "latitude": 35.673081,
+ "longitude": 139.749873,
+ "polygon": [
+ [
+ 139.74976310989013,
+ 35.673171090090094
+ ],
+ [
+ 139.7499828901099,
+ 35.673171090090094
+ ],
+ [
+ 139.7499828901099,
+ 35.67299090990991
+ ],
+ [
+ 139.74976310989013,
+ 35.67299090990991
+ ],
+ [
+ 139.74976310989013,
+ 35.673171090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiMinamiKoko.316.1",
+ "name": "葛西南高校前",
+ "latitude": 35.654173,
+ "longitude": 139.869886,
+ "polygon": [
+ [
+ 139.86977610989013,
+ 35.65426309009009
+ ],
+ [
+ 139.8699958901099,
+ 35.65426309009009
+ ],
+ [
+ 139.8699958901099,
+ 35.65408290990991
+ ],
+ [
+ 139.86977610989013,
+ 35.65408290990991
+ ],
+ [
+ 139.86977610989013,
+ 35.65426309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiMinamiKoko.316.2",
+ "name": "葛西南高校前",
+ "latitude": 35.654009,
+ "longitude": 139.869664,
+ "polygon": [
+ [
+ 139.86955410989012,
+ 35.65409909009009
+ ],
+ [
+ 139.86977389010988,
+ 35.65409909009009
+ ],
+ [
+ 139.86977389010988,
+ 35.65391890990991
+ ],
+ [
+ 139.86955410989012,
+ 35.65391890990991
+ ],
+ [
+ 139.86955410989012,
+ 35.65409909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoKyuchome.374.1",
+ "name": "亀戸九丁目",
+ "latitude": 35.697404,
+ "longitude": 139.83939,
+ "polygon": [
+ [
+ 139.83928010989013,
+ 35.69749409009009
+ ],
+ [
+ 139.8394998901099,
+ 35.69749409009009
+ ],
+ [
+ 139.8394998901099,
+ 35.69731390990991
+ ],
+ [
+ 139.83928010989013,
+ 35.69731390990991
+ ],
+ [
+ 139.83928010989013,
+ 35.69749409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasugaNichome.319.2",
+ "name": "春日二丁目",
+ "latitude": 35.712408,
+ "longitude": 139.743551,
+ "polygon": [
+ [
+ 139.7434411098901,
+ 35.712498090090094
+ ],
+ [
+ 139.74366089010988,
+ 35.712498090090094
+ ],
+ [
+ 139.74366089010988,
+ 35.71231790990991
+ ],
+ [
+ 139.7434411098901,
+ 35.71231790990991
+ ],
+ [
+ 139.7434411098901,
+ 35.712498090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasumigaseki.320.1",
+ "name": "霞が関",
+ "latitude": 35.673899,
+ "longitude": 139.748669,
+ "polygon": [
+ [
+ 139.74855910989012,
+ 35.67398909009009
+ ],
+ [
+ 139.7487788901099,
+ 35.67398909009009
+ ],
+ [
+ 139.7487788901099,
+ 35.67380890990991
+ ],
+ [
+ 139.74855910989012,
+ 35.67380890990991
+ ],
+ [
+ 139.74855910989012,
+ 35.67398909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasumidaiDainiJutaku.321.1",
+ "name": "霞台第二住宅",
+ "latitude": 35.790784,
+ "longitude": 139.286586,
+ "polygon": [
+ [
+ 139.28647610989012,
+ 35.79087409009009
+ ],
+ [
+ 139.28669589010988,
+ 35.79087409009009
+ ],
+ [
+ 139.28669589010988,
+ 35.79069390990991
+ ],
+ [
+ 139.28647610989012,
+ 35.79069390990991
+ ],
+ [
+ 139.28647610989012,
+ 35.79087409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasumidaiDainiJutaku.321.2",
+ "name": "霞台第二住宅",
+ "latitude": 35.790693,
+ "longitude": 139.286499,
+ "polygon": [
+ [
+ 139.2863891098901,
+ 35.79078309009009
+ ],
+ [
+ 139.28660889010987,
+ 35.79078309009009
+ ],
+ [
+ 139.28660889010987,
+ 35.79060290990991
+ ],
+ [
+ 139.2863891098901,
+ 35.79060290990991
+ ],
+ [
+ 139.2863891098901,
+ 35.79078309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasumichoShimmachi.322.1",
+ "name": "霞町新町",
+ "latitude": 35.787412,
+ "longitude": 139.302179,
+ "polygon": [
+ [
+ 139.3020691098901,
+ 35.78750209009009
+ ],
+ [
+ 139.30228889010988,
+ 35.78750209009009
+ ],
+ [
+ 139.30228889010988,
+ 35.78732190990991
+ ],
+ [
+ 139.3020691098901,
+ 35.78732190990991
+ ],
+ [
+ 139.3020691098901,
+ 35.78750209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasumichoShimmachi.322.2",
+ "name": "霞町新町",
+ "latitude": 35.787242,
+ "longitude": 139.302265,
+ "polygon": [
+ [
+ 139.30215510989012,
+ 35.78733209009009
+ ],
+ [
+ 139.3023748901099,
+ 35.78733209009009
+ ],
+ [
+ 139.3023748901099,
+ 35.78715190990991
+ ],
+ [
+ 139.30215510989012,
+ 35.78715190990991
+ ],
+ [
+ 139.30215510989012,
+ 35.78733209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JANishiTokyo.323.1",
+ "name": "JA西東京前",
+ "latitude": 35.793875,
+ "longitude": 139.291309,
+ "polygon": [
+ [
+ 139.29119910989013,
+ 35.79396509009009
+ ],
+ [
+ 139.2914188901099,
+ 35.79396509009009
+ ],
+ [
+ 139.2914188901099,
+ 35.79378490990991
+ ],
+ [
+ 139.29119910989013,
+ 35.79378490990991
+ ],
+ [
+ 139.29119910989013,
+ 35.79396509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasumibashi.324.1",
+ "name": "霞橋",
+ "latitude": 35.796871,
+ "longitude": 139.289256,
+ "polygon": [
+ [
+ 139.2891461098901,
+ 35.79696109009009
+ ],
+ [
+ 139.28936589010988,
+ 35.79696109009009
+ ],
+ [
+ 139.28936589010988,
+ 35.79678090990991
+ ],
+ [
+ 139.2891461098901,
+ 35.79678090990991
+ ],
+ [
+ 139.2891461098901,
+ 35.79696109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokiStation.326.5",
+ "name": "勝どき駅前",
+ "latitude": 35.658849,
+ "longitude": 139.776771,
+ "polygon": [
+ [
+ 139.7766611098901,
+ 35.65893909009009
+ ],
+ [
+ 139.77688089010988,
+ 35.65893909009009
+ ],
+ [
+ 139.77688089010988,
+ 35.658758909909906
+ ],
+ [
+ 139.7766611098901,
+ 35.658758909909906
+ ],
+ [
+ 139.7766611098901,
+ 35.65893909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasumibashi.324.2",
+ "name": "霞橋",
+ "latitude": 35.796986,
+ "longitude": 139.289042,
+ "polygon": [
+ [
+ 139.2889321098901,
+ 35.79707609009009
+ ],
+ [
+ 139.28915189010988,
+ 35.79707609009009
+ ],
+ [
+ 139.28915189010988,
+ 35.79689590990991
+ ],
+ [
+ 139.2889321098901,
+ 35.79689590990991
+ ],
+ [
+ 139.2889321098901,
+ 35.79707609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokibashiMinamizume.325.1",
+ "name": "勝どき橋南詰",
+ "latitude": 35.660462,
+ "longitude": 139.776323,
+ "polygon": [
+ [
+ 139.7762131098901,
+ 35.66055209009009
+ ],
+ [
+ 139.77643289010987,
+ 35.66055209009009
+ ],
+ [
+ 139.77643289010987,
+ 35.66037190990991
+ ],
+ [
+ 139.7762131098901,
+ 35.66037190990991
+ ],
+ [
+ 139.7762131098901,
+ 35.66055209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokibashiMinamizume.325.2",
+ "name": "勝どき橋南詰",
+ "latitude": 35.660615,
+ "longitude": 139.776576,
+ "polygon": [
+ [
+ 139.77646610989012,
+ 35.66070509009009
+ ],
+ [
+ 139.7766858901099,
+ 35.66070509009009
+ ],
+ [
+ 139.7766858901099,
+ 35.66052490990991
+ ],
+ [
+ 139.77646610989012,
+ 35.66052490990991
+ ],
+ [
+ 139.77646610989012,
+ 35.66070509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokiStation.326.1",
+ "name": "勝どき駅前",
+ "latitude": 35.659714,
+ "longitude": 139.778029,
+ "polygon": [
+ [
+ 139.77791910989012,
+ 35.65980409009009
+ ],
+ [
+ 139.7781388901099,
+ 35.65980409009009
+ ],
+ [
+ 139.7781388901099,
+ 35.65962390990991
+ ],
+ [
+ 139.77791910989012,
+ 35.65962390990991
+ ],
+ [
+ 139.77791910989012,
+ 35.65980409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokiStation.326.2",
+ "name": "勝どき駅前",
+ "latitude": 35.658684,
+ "longitude": 139.778522,
+ "polygon": [
+ [
+ 139.77841210989013,
+ 35.65877409009009
+ ],
+ [
+ 139.7786318901099,
+ 35.65877409009009
+ ],
+ [
+ 139.7786318901099,
+ 35.65859390990991
+ ],
+ [
+ 139.77841210989013,
+ 35.65859390990991
+ ],
+ [
+ 139.77841210989013,
+ 35.65877409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokiStation.326.3",
+ "name": "勝どき駅前",
+ "latitude": 35.658639,
+ "longitude": 139.77817,
+ "polygon": [
+ [
+ 139.7780601098901,
+ 35.65872909009009
+ ],
+ [
+ 139.77827989010987,
+ 35.65872909009009
+ ],
+ [
+ 139.77827989010987,
+ 35.65854890990991
+ ],
+ [
+ 139.7780601098901,
+ 35.65854890990991
+ ],
+ [
+ 139.7780601098901,
+ 35.65872909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokiStation.326.6",
+ "name": "勝どき駅前",
+ "latitude": 35.658767,
+ "longitude": 139.77709,
+ "polygon": [
+ [
+ 139.7769801098901,
+ 35.65885709009009
+ ],
+ [
+ 139.77719989010987,
+ 35.65885709009009
+ ],
+ [
+ 139.77719989010987,
+ 35.65867690990991
+ ],
+ [
+ 139.7769801098901,
+ 35.65867690990991
+ ],
+ [
+ 139.7769801098901,
+ 35.65885709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokiSanchome.327.1",
+ "name": "勝どき三丁目",
+ "latitude": 35.657631,
+ "longitude": 139.775415,
+ "polygon": [
+ [
+ 139.77530510989013,
+ 35.65772109009009
+ ],
+ [
+ 139.7755248901099,
+ 35.65772109009009
+ ],
+ [
+ 139.7755248901099,
+ 35.65754090990991
+ ],
+ [
+ 139.77530510989013,
+ 35.65754090990991
+ ],
+ [
+ 139.77530510989013,
+ 35.65772109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KachidokiSanchome.327.2",
+ "name": "勝どき三丁目",
+ "latitude": 35.658115,
+ "longitude": 139.775707,
+ "polygon": [
+ [
+ 139.77559710989013,
+ 35.65820509009009
+ ],
+ [
+ 139.7758168901099,
+ 35.65820509009009
+ ],
+ [
+ 139.7758168901099,
+ 35.65802490990991
+ ],
+ [
+ 139.77559710989013,
+ 35.65802490990991
+ ],
+ [
+ 139.77559710989013,
+ 35.65820509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaSenjuStation.416.1",
+ "name": "北千住駅前",
+ "latitude": 35.749865,
+ "longitude": 139.804572,
+ "polygon": [
+ [
+ 139.80446210989012,
+ 35.74995509009009
+ ],
+ [
+ 139.8046818901099,
+ 35.74995509009009
+ ],
+ [
+ 139.8046818901099,
+ 35.74977490990991
+ ],
+ [
+ 139.80446210989012,
+ 35.74977490990991
+ ],
+ [
+ 139.80446210989012,
+ 35.74995509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KatsushimaItchome.329.1",
+ "name": "勝島一丁目",
+ "latitude": 35.600077,
+ "longitude": 139.744318,
+ "polygon": [
+ [
+ 139.7442081098901,
+ 35.60016709009009
+ ],
+ [
+ 139.74442789010988,
+ 35.60016709009009
+ ],
+ [
+ 139.74442789010988,
+ 35.59998690990991
+ ],
+ [
+ 139.7442081098901,
+ 35.59998690990991
+ ],
+ [
+ 139.7442081098901,
+ 35.60016709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kanasugibashi.331.4",
+ "name": "金杉橋",
+ "latitude": 35.652732,
+ "longitude": 139.753377,
+ "polygon": [
+ [
+ 139.75326710989012,
+ 35.65282209009009
+ ],
+ [
+ 139.75348689010988,
+ 35.65282209009009
+ ],
+ [
+ 139.75348689010988,
+ 35.65264190990991
+ ],
+ [
+ 139.75326710989012,
+ 35.65264190990991
+ ],
+ [
+ 139.75326710989012,
+ 35.65282209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KatsushimaItchome.329.2",
+ "name": "勝島一丁目",
+ "latitude": 35.599829,
+ "longitude": 139.744573,
+ "polygon": [
+ [
+ 139.74446310989012,
+ 35.59991909009009
+ ],
+ [
+ 139.74468289010989,
+ 35.59991909009009
+ ],
+ [
+ 139.74468289010989,
+ 35.59973890990991
+ ],
+ [
+ 139.74446310989012,
+ 35.59973890990991
+ ],
+ [
+ 139.74446310989012,
+ 35.59991909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KappazakaShita.330.3",
+ "name": "合羽坂下",
+ "latitude": 35.691824,
+ "longitude": 139.725258,
+ "polygon": [
+ [
+ 139.7251481098901,
+ 35.69191409009009
+ ],
+ [
+ 139.72536789010988,
+ 35.69191409009009
+ ],
+ [
+ 139.72536789010988,
+ 35.69173390990991
+ ],
+ [
+ 139.7251481098901,
+ 35.69173390990991
+ ],
+ [
+ 139.7251481098901,
+ 35.69191409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KappazakaShita.330.4",
+ "name": "合羽坂下",
+ "latitude": 35.691635,
+ "longitude": 139.725285,
+ "polygon": [
+ [
+ 139.72517510989013,
+ 35.69172509009009
+ ],
+ [
+ 139.7253948901099,
+ 35.69172509009009
+ ],
+ [
+ 139.7253948901099,
+ 35.69154490990991
+ ],
+ [
+ 139.72517510989013,
+ 35.69154490990991
+ ],
+ [
+ 139.72517510989013,
+ 35.69172509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kabutocho.335.1",
+ "name": "兜町",
+ "latitude": 35.680923,
+ "longitude": 139.777401,
+ "polygon": [
+ [
+ 139.77729110989011,
+ 35.68101309009009
+ ],
+ [
+ 139.77751089010988,
+ 35.68101309009009
+ ],
+ [
+ 139.77751089010988,
+ 35.68083290990991
+ ],
+ [
+ 139.77729110989011,
+ 35.68083290990991
+ ],
+ [
+ 139.77729110989011,
+ 35.68101309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KappazakaShita.330.5",
+ "name": "合羽坂下",
+ "latitude": 35.692161,
+ "longitude": 139.726126,
+ "polygon": [
+ [
+ 139.7260161098901,
+ 35.69225109009009
+ ],
+ [
+ 139.72623589010988,
+ 35.69225109009009
+ ],
+ [
+ 139.72623589010988,
+ 35.69207090990991
+ ],
+ [
+ 139.7260161098901,
+ 35.69207090990991
+ ],
+ [
+ 139.7260161098901,
+ 35.69225109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KappazakaShita.330.6",
+ "name": "合羽坂下",
+ "latitude": 35.691552,
+ "longitude": 139.726818,
+ "polygon": [
+ [
+ 139.72670810989013,
+ 35.69164209009009
+ ],
+ [
+ 139.7269278901099,
+ 35.69164209009009
+ ],
+ [
+ 139.7269278901099,
+ 35.69146190990991
+ ],
+ [
+ 139.72670810989013,
+ 35.69146190990991
+ ],
+ [
+ 139.72670810989013,
+ 35.69164209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kanasugibashi.331.3",
+ "name": "金杉橋",
+ "latitude": 35.65288,
+ "longitude": 139.753564,
+ "polygon": [
+ [
+ 139.75345410989013,
+ 35.65297009009009
+ ],
+ [
+ 139.7536738901099,
+ 35.65297009009009
+ ],
+ [
+ 139.7536738901099,
+ 35.65278990990991
+ ],
+ [
+ 139.75345410989013,
+ 35.65278990990991
+ ],
+ [
+ 139.75345410989013,
+ 35.65297009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KanamachiStation.332.1",
+ "name": "金町駅前",
+ "latitude": 35.769232,
+ "longitude": 139.871433,
+ "polygon": [
+ [
+ 139.8713231098901,
+ 35.76932209009009
+ ],
+ [
+ 139.87154289010988,
+ 35.76932209009009
+ ],
+ [
+ 139.87154289010988,
+ 35.76914190990991
+ ],
+ [
+ 139.8713231098901,
+ 35.76914190990991
+ ],
+ [
+ 139.8713231098901,
+ 35.76932209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KanamachiNichome.333.1",
+ "name": "金町二丁目",
+ "latitude": 35.766374,
+ "longitude": 139.870452,
+ "polygon": [
+ [
+ 139.87034210989012,
+ 35.76646409009009
+ ],
+ [
+ 139.87056189010988,
+ 35.76646409009009
+ ],
+ [
+ 139.87056189010988,
+ 35.76628390990991
+ ],
+ [
+ 139.87034210989012,
+ 35.76628390990991
+ ],
+ [
+ 139.87034210989012,
+ 35.76646409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamihata.358.1",
+ "name": "上畑",
+ "latitude": 35.837845,
+ "longitude": 139.285578,
+ "polygon": [
+ [
+ 139.2854681098901,
+ 35.83793509009009
+ ],
+ [
+ 139.28568789010987,
+ 35.83793509009009
+ ],
+ [
+ 139.28568789010987,
+ 35.83775490990991
+ ],
+ [
+ 139.2854681098901,
+ 35.83775490990991
+ ],
+ [
+ 139.2854681098901,
+ 35.83793509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KanamachiNichome.333.2",
+ "name": "金町二丁目",
+ "latitude": 35.766761,
+ "longitude": 139.870569,
+ "polygon": [
+ [
+ 139.8704591098901,
+ 35.76685109009009
+ ],
+ [
+ 139.87067889010987,
+ 35.76685109009009
+ ],
+ [
+ 139.87067889010987,
+ 35.76667090990991
+ ],
+ [
+ 139.8704591098901,
+ 35.76667090990991
+ ],
+ [
+ 139.8704591098901,
+ 35.76685109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kabukicho.334.1",
+ "name": "歌舞伎町",
+ "latitude": 35.693474,
+ "longitude": 139.702547,
+ "polygon": [
+ [
+ 139.70243710989013,
+ 35.69356409009009
+ ],
+ [
+ 139.7026568901099,
+ 35.69356409009009
+ ],
+ [
+ 139.7026568901099,
+ 35.69338390990991
+ ],
+ [
+ 139.70243710989013,
+ 35.69338390990991
+ ],
+ [
+ 139.70243710989013,
+ 35.69356409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KabeStationIriguchi.337.2",
+ "name": "河辺駅入口",
+ "latitude": 35.788514,
+ "longitude": 139.285819,
+ "polygon": [
+ [
+ 139.28570910989012,
+ 35.78860409009009
+ ],
+ [
+ 139.2859288901099,
+ 35.78860409009009
+ ],
+ [
+ 139.2859288901099,
+ 35.78842390990991
+ ],
+ [
+ 139.28570910989012,
+ 35.78842390990991
+ ],
+ [
+ 139.28570910989012,
+ 35.78860409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kabukicho.334.2",
+ "name": "歌舞伎町",
+ "latitude": 35.693613,
+ "longitude": 139.70199,
+ "polygon": [
+ [
+ 139.7018801098901,
+ 35.69370309009009
+ ],
+ [
+ 139.70209989010988,
+ 35.69370309009009
+ ],
+ [
+ 139.70209989010988,
+ 35.69352290990991
+ ],
+ [
+ 139.7018801098901,
+ 35.69352290990991
+ ],
+ [
+ 139.7018801098901,
+ 35.69370309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kabukicho.334.3",
+ "name": "歌舞伎町",
+ "latitude": 35.693269,
+ "longitude": 139.701917,
+ "polygon": [
+ [
+ 139.70180710989013,
+ 35.69335909009009
+ ],
+ [
+ 139.7020268901099,
+ 35.69335909009009
+ ],
+ [
+ 139.7020268901099,
+ 35.69317890990991
+ ],
+ [
+ 139.70180710989013,
+ 35.69317890990991
+ ],
+ [
+ 139.70180710989013,
+ 35.69335909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kabutocho.335.2",
+ "name": "兜町",
+ "latitude": 35.68104,
+ "longitude": 139.777683,
+ "polygon": [
+ [
+ 139.7775731098901,
+ 35.68113009009009
+ ],
+ [
+ 139.77779289010988,
+ 35.68113009009009
+ ],
+ [
+ 139.77779289010988,
+ 35.68094990990991
+ ],
+ [
+ 139.7775731098901,
+ 35.68094990990991
+ ],
+ [
+ 139.7775731098901,
+ 35.68113009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KabeStationIriguchi.337.1",
+ "name": "河辺駅入口",
+ "latitude": 35.788641,
+ "longitude": 139.28608,
+ "polygon": [
+ [
+ 139.28597010989012,
+ 35.78873109009009
+ ],
+ [
+ 139.28618989010988,
+ 35.78873109009009
+ ],
+ [
+ 139.28618989010988,
+ 35.78855090990991
+ ],
+ [
+ 139.28597010989012,
+ 35.78855090990991
+ ],
+ [
+ 139.28597010989012,
+ 35.78873109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiFujimae.359.3",
+ "name": "上富士前",
+ "latitude": 35.732723,
+ "longitude": 139.749837,
+ "polygon": [
+ [
+ 139.74972710989013,
+ 35.73281309009009
+ ],
+ [
+ 139.7499468901099,
+ 35.73281309009009
+ ],
+ [
+ 139.7499468901099,
+ 35.73263290990991
+ ],
+ [
+ 139.74972710989013,
+ 35.73263290990991
+ ],
+ [
+ 139.74972710989013,
+ 35.73281309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KabeStationIriguchi.337.3",
+ "name": "河辺駅入口",
+ "latitude": 35.788047,
+ "longitude": 139.286843,
+ "polygon": [
+ [
+ 139.28673310989012,
+ 35.78813709009009
+ ],
+ [
+ 139.2869528901099,
+ 35.78813709009009
+ ],
+ [
+ 139.2869528901099,
+ 35.78795690990991
+ ],
+ [
+ 139.28673310989012,
+ 35.78795690990991
+ ],
+ [
+ 139.28673310989012,
+ 35.78813709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KabeStationIriguchi.337.4",
+ "name": "河辺駅入口",
+ "latitude": 35.787682,
+ "longitude": 139.286601,
+ "polygon": [
+ [
+ 139.2864911098901,
+ 35.78777209009009
+ ],
+ [
+ 139.28671089010987,
+ 35.78777209009009
+ ],
+ [
+ 139.28671089010987,
+ 35.78759190990991
+ ],
+ [
+ 139.2864911098901,
+ 35.78759190990991
+ ],
+ [
+ 139.2864911098901,
+ 35.78777209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KabeStationKitaguchi.338.1",
+ "name": "河辺駅北口",
+ "latitude": 35.784587,
+ "longitude": 139.285057,
+ "polygon": [
+ [
+ 139.2849471098901,
+ 35.78467709009009
+ ],
+ [
+ 139.28516689010988,
+ 35.78467709009009
+ ],
+ [
+ 139.28516689010988,
+ 35.78449690990991
+ ],
+ [
+ 139.2849471098901,
+ 35.78449690990991
+ ],
+ [
+ 139.2849471098901,
+ 35.78467709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamadera.341.1",
+ "name": "釜寺",
+ "latitude": 35.679347,
+ "longitude": 139.657072,
+ "polygon": [
+ [
+ 139.65696210989012,
+ 35.67943709009009
+ ],
+ [
+ 139.65718189010988,
+ 35.67943709009009
+ ],
+ [
+ 139.65718189010988,
+ 35.67925690990991
+ ],
+ [
+ 139.65696210989012,
+ 35.67925690990991
+ ],
+ [
+ 139.65696210989012,
+ 35.67943709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamadera.341.2",
+ "name": "釜寺",
+ "latitude": 35.679738,
+ "longitude": 139.657241,
+ "polygon": [
+ [
+ 139.65713110989012,
+ 35.67982809009009
+ ],
+ [
+ 139.65735089010988,
+ 35.67982809009009
+ ],
+ [
+ 139.65735089010988,
+ 35.67964790990991
+ ],
+ [
+ 139.65713110989012,
+ 35.67964790990991
+ ],
+ [
+ 139.65713110989012,
+ 35.67982809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaSando.404.2",
+ "name": "北参道",
+ "latitude": 35.679337,
+ "longitude": 139.7049,
+ "polygon": [
+ [
+ 139.70479010989013,
+ 35.67942709009009
+ ],
+ [
+ 139.7050098901099,
+ 35.67942709009009
+ ],
+ [
+ 139.7050098901099,
+ 35.67924690990991
+ ],
+ [
+ 139.70479010989013,
+ 35.67924690990991
+ ],
+ [
+ 139.70479010989013,
+ 35.67942709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIkebukuroItchome.342.1",
+ "name": "上池袋一丁目",
+ "latitude": 35.735811,
+ "longitude": 139.719175,
+ "polygon": [
+ [
+ 139.71906510989012,
+ 35.73590109009009
+ ],
+ [
+ 139.7192848901099,
+ 35.73590109009009
+ ],
+ [
+ 139.7192848901099,
+ 35.73572090990991
+ ],
+ [
+ 139.71906510989012,
+ 35.73572090990991
+ ],
+ [
+ 139.71906510989012,
+ 35.73590109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIkebukuroItchome.342.2",
+ "name": "上池袋一丁目",
+ "latitude": 35.736311,
+ "longitude": 139.720017,
+ "polygon": [
+ [
+ 139.71990710989013,
+ 35.73640109009009
+ ],
+ [
+ 139.7201268901099,
+ 35.73640109009009
+ ],
+ [
+ 139.7201268901099,
+ 35.73622090990991
+ ],
+ [
+ 139.71990710989013,
+ 35.73622090990991
+ ],
+ [
+ 139.71990710989013,
+ 35.73640109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIkebukuroSanchome.343.1",
+ "name": "上池袋三丁目",
+ "latitude": 35.738053,
+ "longitude": 139.721866,
+ "polygon": [
+ [
+ 139.72175610989012,
+ 35.73814309009009
+ ],
+ [
+ 139.7219758901099,
+ 35.73814309009009
+ ],
+ [
+ 139.7219758901099,
+ 35.73796290990991
+ ],
+ [
+ 139.72175610989012,
+ 35.73796290990991
+ ],
+ [
+ 139.72175610989012,
+ 35.73814309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIkebukuroSanchome.343.2",
+ "name": "上池袋三丁目",
+ "latitude": 35.737478,
+ "longitude": 139.721005,
+ "polygon": [
+ [
+ 139.7208951098901,
+ 35.73756809009009
+ ],
+ [
+ 139.72111489010987,
+ 35.73756809009009
+ ],
+ [
+ 139.72111489010987,
+ 35.73738790990991
+ ],
+ [
+ 139.7208951098901,
+ 35.73738790990991
+ ],
+ [
+ 139.7208951098901,
+ 35.73756809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiOsaki.346.1",
+ "name": "上大崎",
+ "latitude": 35.634405,
+ "longitude": 139.719035,
+ "polygon": [
+ [
+ 139.7189251098901,
+ 35.63449509009009
+ ],
+ [
+ 139.71914489010987,
+ 35.63449509009009
+ ],
+ [
+ 139.71914489010987,
+ 35.63431490990991
+ ],
+ [
+ 139.7189251098901,
+ 35.63431490990991
+ ],
+ [
+ 139.7189251098901,
+ 35.63449509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamigo.350.1",
+ "name": "上郷",
+ "latitude": 35.791966,
+ "longitude": 139.218526,
+ "polygon": [
+ [
+ 139.21841610989011,
+ 35.79205609009009
+ ],
+ [
+ 139.21863589010988,
+ 35.79205609009009
+ ],
+ [
+ 139.21863589010988,
+ 35.79187590990991
+ ],
+ [
+ 139.21841610989011,
+ 35.79187590990991
+ ],
+ [
+ 139.21841610989011,
+ 35.79205609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamigo.350.2",
+ "name": "上郷",
+ "latitude": 35.792498,
+ "longitude": 139.217672,
+ "polygon": [
+ [
+ 139.2175621098901,
+ 35.79258809009009
+ ],
+ [
+ 139.21778189010988,
+ 35.79258809009009
+ ],
+ [
+ 139.21778189010988,
+ 35.79240790990991
+ ],
+ [
+ 139.2175621098901,
+ 35.79240790990991
+ ],
+ [
+ 139.2175621098901,
+ 35.79258809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiJujoGochome.351.1",
+ "name": "上十条五丁目",
+ "latitude": 35.763806,
+ "longitude": 139.71508,
+ "polygon": [
+ [
+ 139.71497010989012,
+ 35.76389609009009
+ ],
+ [
+ 139.71518989010988,
+ 35.76389609009009
+ ],
+ [
+ 139.71518989010988,
+ 35.76371590990991
+ ],
+ [
+ 139.71497010989012,
+ 35.76371590990991
+ ],
+ [
+ 139.71497010989012,
+ 35.76389609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiJujoGochome.351.2",
+ "name": "上十条五丁目",
+ "latitude": 35.764166,
+ "longitude": 139.715368,
+ "polygon": [
+ [
+ 139.71525810989013,
+ 35.76425609009009
+ ],
+ [
+ 139.7154778901099,
+ 35.76425609009009
+ ],
+ [
+ 139.7154778901099,
+ 35.76407590990991
+ ],
+ [
+ 139.71525810989013,
+ 35.76407590990991
+ ],
+ [
+ 139.71525810989013,
+ 35.76425609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kumanomae.454.1",
+ "name": "熊野前",
+ "latitude": 35.748292,
+ "longitude": 139.769523,
+ "polygon": [
+ [
+ 139.7694131098901,
+ 35.74838209009009
+ ],
+ [
+ 139.76963289010988,
+ 35.74838209009009
+ ],
+ [
+ 139.76963289010988,
+ 35.74820190990991
+ ],
+ [
+ 139.7694131098901,
+ 35.74820190990991
+ ],
+ [
+ 139.7694131098901,
+ 35.74838209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiTabata.352.1",
+ "name": "上田端",
+ "latitude": 35.735296,
+ "longitude": 139.759341,
+ "polygon": [
+ [
+ 139.75923110989012,
+ 35.73538609009009
+ ],
+ [
+ 139.7594508901099,
+ 35.73538609009009
+ ],
+ [
+ 139.7594508901099,
+ 35.73520590990991
+ ],
+ [
+ 139.75923110989012,
+ 35.73520590990991
+ ],
+ [
+ 139.75923110989012,
+ 35.73538609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiTabata.352.2",
+ "name": "上田端",
+ "latitude": 35.735869,
+ "longitude": 139.75932,
+ "polygon": [
+ [
+ 139.75921010989012,
+ 35.73595909009009
+ ],
+ [
+ 139.75942989010989,
+ 35.73595909009009
+ ],
+ [
+ 139.75942989010989,
+ 35.73577890990991
+ ],
+ [
+ 139.75921010989012,
+ 35.73577890990991
+ ],
+ [
+ 139.75921010989012,
+ 35.73595909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamicho.353.1",
+ "name": "上町",
+ "latitude": 35.790033,
+ "longitude": 139.253267,
+ "polygon": [
+ [
+ 139.2531571098901,
+ 35.79012309009009
+ ],
+ [
+ 139.25337689010988,
+ 35.79012309009009
+ ],
+ [
+ 139.25337689010988,
+ 35.78994290990991
+ ],
+ [
+ 139.2531571098901,
+ 35.78994290990991
+ ],
+ [
+ 139.2531571098901,
+ 35.79012309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamicho.353.2",
+ "name": "上町",
+ "latitude": 35.789949,
+ "longitude": 139.253525,
+ "polygon": [
+ [
+ 139.2534151098901,
+ 35.79003909009009
+ ],
+ [
+ 139.25363489010988,
+ 35.79003909009009
+ ],
+ [
+ 139.25363489010988,
+ 35.78985890990991
+ ],
+ [
+ 139.2534151098901,
+ 35.78985890990991
+ ],
+ [
+ 139.2534151098901,
+ 35.79003909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiNariki.354.1",
+ "name": "上成木",
+ "latitude": 35.836981,
+ "longitude": 139.202826,
+ "polygon": [
+ [
+ 139.2027161098901,
+ 35.83707109009009
+ ],
+ [
+ 139.20293589010987,
+ 35.83707109009009
+ ],
+ [
+ 139.20293589010987,
+ 35.83689090990991
+ ],
+ [
+ 139.2027161098901,
+ 35.83689090990991
+ ],
+ [
+ 139.2027161098901,
+ 35.83707109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaminumataDanchi.355.1",
+ "name": "上沼田団地",
+ "latitude": 35.778144,
+ "longitude": 139.763689,
+ "polygon": [
+ [
+ 139.76357910989012,
+ 35.77823409009009
+ ],
+ [
+ 139.76379889010988,
+ 35.77823409009009
+ ],
+ [
+ 139.76379889010988,
+ 35.77805390990991
+ ],
+ [
+ 139.76357910989012,
+ 35.77805390990991
+ ],
+ [
+ 139.76357910989012,
+ 35.77823409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaminumataDanchi.355.2",
+ "name": "上沼田団地",
+ "latitude": 35.778349,
+ "longitude": 139.762835,
+ "polygon": [
+ [
+ 139.7627251098901,
+ 35.77843909009009
+ ],
+ [
+ 139.76294489010988,
+ 35.77843909009009
+ ],
+ [
+ 139.76294489010988,
+ 35.77825890990991
+ ],
+ [
+ 139.7627251098901,
+ 35.77825890990991
+ ],
+ [
+ 139.7627251098901,
+ 35.77843909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiNegishi.356.1",
+ "name": "上根岸",
+ "latitude": 35.724378,
+ "longitude": 139.778701,
+ "polygon": [
+ [
+ 139.77859110989013,
+ 35.72446809009009
+ ],
+ [
+ 139.7788108901099,
+ 35.72446809009009
+ ],
+ [
+ 139.7788108901099,
+ 35.72428790990991
+ ],
+ [
+ 139.77859110989013,
+ 35.72428790990991
+ ],
+ [
+ 139.77859110989013,
+ 35.72446809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiNegishi.356.2",
+ "name": "上根岸",
+ "latitude": 35.724385,
+ "longitude": 139.778859,
+ "polygon": [
+ [
+ 139.77874910989013,
+ 35.72447509009009
+ ],
+ [
+ 139.7789688901099,
+ 35.72447509009009
+ ],
+ [
+ 139.7789688901099,
+ 35.72429490990991
+ ],
+ [
+ 139.77874910989013,
+ 35.72429490990991
+ ],
+ [
+ 139.77874910989013,
+ 35.72447509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiyaItchome.361.2",
+ "name": "神谷一丁目",
+ "latitude": 35.768666,
+ "longitude": 139.731014,
+ "polygon": [
+ [
+ 139.7309041098901,
+ 35.76875609009009
+ ],
+ [
+ 139.73112389010987,
+ 35.76875609009009
+ ],
+ [
+ 139.73112389010987,
+ 35.76857590990991
+ ],
+ [
+ 139.7309041098901,
+ 35.76857590990991
+ ],
+ [
+ 139.7309041098901,
+ 35.76875609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kaminonebashi.357.1",
+ "name": "上の根橋",
+ "latitude": 35.750898,
+ "longitude": 139.682435,
+ "polygon": [
+ [
+ 139.68232510989012,
+ 35.75098809009009
+ ],
+ [
+ 139.68254489010988,
+ 35.75098809009009
+ ],
+ [
+ 139.68254489010988,
+ 35.75080790990991
+ ],
+ [
+ 139.68232510989012,
+ 35.75080790990991
+ ],
+ [
+ 139.68232510989012,
+ 35.75098809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kaminonebashi.357.2",
+ "name": "上の根橋",
+ "latitude": 35.7508,
+ "longitude": 139.681935,
+ "polygon": [
+ [
+ 139.68182510989013,
+ 35.75089009009009
+ ],
+ [
+ 139.6820448901099,
+ 35.75089009009009
+ ],
+ [
+ 139.6820448901099,
+ 35.75070990990991
+ ],
+ [
+ 139.68182510989013,
+ 35.75070990990991
+ ],
+ [
+ 139.68182510989013,
+ 35.75089009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamihata.358.2",
+ "name": "上畑",
+ "latitude": 35.837758,
+ "longitude": 139.285578,
+ "polygon": [
+ [
+ 139.2854681098901,
+ 35.83784809009009
+ ],
+ [
+ 139.28568789010987,
+ 35.83784809009009
+ ],
+ [
+ 139.28568789010987,
+ 35.83766790990991
+ ],
+ [
+ 139.2854681098901,
+ 35.83766790990991
+ ],
+ [
+ 139.2854681098901,
+ 35.83784809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiFujimae.359.1",
+ "name": "上富士前",
+ "latitude": 35.731582,
+ "longitude": 139.749775,
+ "polygon": [
+ [
+ 139.74966510989012,
+ 35.73167209009009
+ ],
+ [
+ 139.74988489010988,
+ 35.73167209009009
+ ],
+ [
+ 139.74988489010988,
+ 35.73149190990991
+ ],
+ [
+ 139.74966510989012,
+ 35.73149190990991
+ ],
+ [
+ 139.74966510989012,
+ 35.73167209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiFujimae.359.2",
+ "name": "上富士前",
+ "latitude": 35.732573,
+ "longitude": 139.75002,
+ "polygon": [
+ [
+ 139.74991010989012,
+ 35.73266309009009
+ ],
+ [
+ 139.7501298901099,
+ 35.73266309009009
+ ],
+ [
+ 139.7501298901099,
+ 35.73248290990991
+ ],
+ [
+ 139.74991010989012,
+ 35.73248290990991
+ ],
+ [
+ 139.74991010989012,
+ 35.73266309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiFujimae.359.4",
+ "name": "上富士前",
+ "latitude": 35.732906,
+ "longitude": 139.748931,
+ "polygon": [
+ [
+ 139.74882110989012,
+ 35.73299609009009
+ ],
+ [
+ 139.74904089010988,
+ 35.73299609009009
+ ],
+ [
+ 139.74904089010988,
+ 35.73281590990991
+ ],
+ [
+ 139.74882110989012,
+ 35.73281590990991
+ ],
+ [
+ 139.74882110989012,
+ 35.73299609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiyachoStation.360.1",
+ "name": "神谷町駅前",
+ "latitude": 35.663639,
+ "longitude": 139.745512,
+ "polygon": [
+ [
+ 139.7454021098901,
+ 35.663729090090094
+ ],
+ [
+ 139.74562189010987,
+ 35.663729090090094
+ ],
+ [
+ 139.74562189010987,
+ 35.66354890990991
+ ],
+ [
+ 139.7454021098901,
+ 35.66354890990991
+ ],
+ [
+ 139.7454021098901,
+ 35.663729090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameariKeisatsusho.365.2",
+ "name": "亀有警察署前",
+ "latitude": 35.761767,
+ "longitude": 139.861898,
+ "polygon": [
+ [
+ 139.8617881098901,
+ 35.76185709009009
+ ],
+ [
+ 139.86200789010988,
+ 35.76185709009009
+ ],
+ [
+ 139.86200789010988,
+ 35.76167690990991
+ ],
+ [
+ 139.8617881098901,
+ 35.76167690990991
+ ],
+ [
+ 139.8617881098901,
+ 35.76185709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiyachoStation.360.2",
+ "name": "神谷町駅前",
+ "latitude": 35.662501,
+ "longitude": 139.744796,
+ "polygon": [
+ [
+ 139.74468610989013,
+ 35.66259109009009
+ ],
+ [
+ 139.7449058901099,
+ 35.66259109009009
+ ],
+ [
+ 139.7449058901099,
+ 35.66241090990991
+ ],
+ [
+ 139.74468610989013,
+ 35.66241090990991
+ ],
+ [
+ 139.74468610989013,
+ 35.66259109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiyachoStation.360.3",
+ "name": "神谷町駅前",
+ "latitude": 35.662919,
+ "longitude": 139.745859,
+ "polygon": [
+ [
+ 139.7457491098901,
+ 35.66300909009009
+ ],
+ [
+ 139.74596889010988,
+ 35.66300909009009
+ ],
+ [
+ 139.74596889010988,
+ 35.66282890990991
+ ],
+ [
+ 139.7457491098901,
+ 35.66282890990991
+ ],
+ [
+ 139.7457491098901,
+ 35.66300909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiyaItchome.361.1",
+ "name": "神谷一丁目",
+ "latitude": 35.7684,
+ "longitude": 139.730733,
+ "polygon": [
+ [
+ 139.7306231098901,
+ 35.76849009009009
+ ],
+ [
+ 139.73084289010987,
+ 35.76849009009009
+ ],
+ [
+ 139.73084289010987,
+ 35.76830990990991
+ ],
+ [
+ 139.7306231098901,
+ 35.76830990990991
+ ],
+ [
+ 139.7306231098901,
+ 35.76849009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamiyama.363.1",
+ "name": "神山",
+ "latitude": 35.664797,
+ "longitude": 139.693039,
+ "polygon": [
+ [
+ 139.69292910989012,
+ 35.66488709009009
+ ],
+ [
+ 139.69314889010988,
+ 35.66488709009009
+ ],
+ [
+ 139.69314889010988,
+ 35.66470690990991
+ ],
+ [
+ 139.69292910989012,
+ 35.66470690990991
+ ],
+ [
+ 139.69292910989012,
+ 35.66488709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameariKeisatsusho.365.1",
+ "name": "亀有警察署前",
+ "latitude": 35.762134,
+ "longitude": 139.862983,
+ "polygon": [
+ [
+ 139.86287310989013,
+ 35.76222409009009
+ ],
+ [
+ 139.8630928901099,
+ 35.76222409009009
+ ],
+ [
+ 139.8630928901099,
+ 35.76204390990991
+ ],
+ [
+ 139.86287310989013,
+ 35.76204390990991
+ ],
+ [
+ 139.86287310989013,
+ 35.76222409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameariShindoIriguchi.366.1",
+ "name": "亀有新道入口",
+ "latitude": 35.752374,
+ "longitude": 139.850247,
+ "polygon": [
+ [
+ 139.8501371098901,
+ 35.75246409009009
+ ],
+ [
+ 139.85035689010988,
+ 35.75246409009009
+ ],
+ [
+ 139.85035689010988,
+ 35.75228390990991
+ ],
+ [
+ 139.8501371098901,
+ 35.75228390990991
+ ],
+ [
+ 139.8501371098901,
+ 35.75246409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameariShindoIriguchi.366.2",
+ "name": "亀有新道入口",
+ "latitude": 35.753879,
+ "longitude": 139.851241,
+ "polygon": [
+ [
+ 139.8511311098901,
+ 35.75396909009009
+ ],
+ [
+ 139.85135089010987,
+ 35.75396909009009
+ ],
+ [
+ 139.85135089010987,
+ 35.75378890990991
+ ],
+ [
+ 139.8511311098901,
+ 35.75378890990991
+ ],
+ [
+ 139.8511311098901,
+ 35.75396909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStationDori.368.10",
+ "name": "亀戸駅通り",
+ "latitude": 35.696694,
+ "longitude": 139.824902,
+ "polygon": [
+ [
+ 139.82479210989013,
+ 35.69678409009009
+ ],
+ [
+ 139.8250118901099,
+ 35.69678409009009
+ ],
+ [
+ 139.8250118901099,
+ 35.69660390990991
+ ],
+ [
+ 139.82479210989013,
+ 35.69660390990991
+ ],
+ [
+ 139.82479210989013,
+ 35.69678409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStationDori.368.12",
+ "name": "亀戸駅通り",
+ "latitude": 35.695927,
+ "longitude": 139.825696,
+ "polygon": [
+ [
+ 139.8255861098901,
+ 35.69601709009009
+ ],
+ [
+ 139.82580589010988,
+ 35.69601709009009
+ ],
+ [
+ 139.82580589010988,
+ 35.69583690990991
+ ],
+ [
+ 139.8255861098901,
+ 35.69583690990991
+ ],
+ [
+ 139.8255861098901,
+ 35.69601709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStationDori.368.13",
+ "name": "亀戸駅通り",
+ "latitude": 35.695828,
+ "longitude": 139.825939,
+ "polygon": [
+ [
+ 139.82582910989012,
+ 35.69591809009009
+ ],
+ [
+ 139.8260488901099,
+ 35.69591809009009
+ ],
+ [
+ 139.8260488901099,
+ 35.69573790990991
+ ],
+ [
+ 139.82582910989012,
+ 35.69573790990991
+ ],
+ [
+ 139.82582910989012,
+ 35.69591809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStationDori.368.14",
+ "name": "亀戸駅通り",
+ "latitude": 35.695691,
+ "longitude": 139.825938,
+ "polygon": [
+ [
+ 139.82582810989013,
+ 35.69578109009009
+ ],
+ [
+ 139.8260478901099,
+ 35.69578109009009
+ ],
+ [
+ 139.8260478901099,
+ 35.695600909909906
+ ],
+ [
+ 139.82582810989013,
+ 35.695600909909906
+ ],
+ [
+ 139.82582810989013,
+ 35.69578109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.1",
+ "name": "亀戸駅前",
+ "latitude": 35.697914,
+ "longitude": 139.825987,
+ "polygon": [
+ [
+ 139.82587710989011,
+ 35.69800409009009
+ ],
+ [
+ 139.82609689010988,
+ 35.69800409009009
+ ],
+ [
+ 139.82609689010988,
+ 35.69782390990991
+ ],
+ [
+ 139.82587710989011,
+ 35.69782390990991
+ ],
+ [
+ 139.82587710989011,
+ 35.69800409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.2",
+ "name": "亀戸駅前",
+ "latitude": 35.697888,
+ "longitude": 139.825797,
+ "polygon": [
+ [
+ 139.8256871098901,
+ 35.69797809009009
+ ],
+ [
+ 139.82590689010988,
+ 35.69797809009009
+ ],
+ [
+ 139.82590689010988,
+ 35.69779790990991
+ ],
+ [
+ 139.8256871098901,
+ 35.69779790990991
+ ],
+ [
+ 139.8256871098901,
+ 35.69797809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.3",
+ "name": "亀戸駅前",
+ "latitude": 35.698027,
+ "longitude": 139.825773,
+ "polygon": [
+ [
+ 139.82566310989012,
+ 35.69811709009009
+ ],
+ [
+ 139.82588289010988,
+ 35.69811709009009
+ ],
+ [
+ 139.82588289010988,
+ 35.69793690990991
+ ],
+ [
+ 139.82566310989012,
+ 35.69793690990991
+ ],
+ [
+ 139.82566310989012,
+ 35.69811709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.4",
+ "name": "亀戸駅前",
+ "latitude": 35.69804,
+ "longitude": 139.825508,
+ "polygon": [
+ [
+ 139.82539810989013,
+ 35.69813009009009
+ ],
+ [
+ 139.8256178901099,
+ 35.69813009009009
+ ],
+ [
+ 139.8256178901099,
+ 35.69794990990991
+ ],
+ [
+ 139.82539810989013,
+ 35.69794990990991
+ ],
+ [
+ 139.82539810989013,
+ 35.69813009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.5",
+ "name": "亀戸駅前",
+ "latitude": 35.698064,
+ "longitude": 139.825385,
+ "polygon": [
+ [
+ 139.82527510989013,
+ 35.69815409009009
+ ],
+ [
+ 139.8254948901099,
+ 35.69815409009009
+ ],
+ [
+ 139.8254948901099,
+ 35.69797390990991
+ ],
+ [
+ 139.82527510989013,
+ 35.69797390990991
+ ],
+ [
+ 139.82527510989013,
+ 35.69815409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamezawaYonchome.375.2",
+ "name": "亀沢四丁目",
+ "latitude": 35.697713,
+ "longitude": 139.805347,
+ "polygon": [
+ [
+ 139.80523710989013,
+ 35.69780309009009
+ ],
+ [
+ 139.8054568901099,
+ 35.69780309009009
+ ],
+ [
+ 139.8054568901099,
+ 35.69762290990991
+ ],
+ [
+ 139.80523710989013,
+ 35.69762290990991
+ ],
+ [
+ 139.80523710989013,
+ 35.69780309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.6",
+ "name": "亀戸駅前",
+ "latitude": 35.698075,
+ "longitude": 139.825238,
+ "polygon": [
+ [
+ 139.82512810989013,
+ 35.69816509009009
+ ],
+ [
+ 139.8253478901099,
+ 35.69816509009009
+ ],
+ [
+ 139.8253478901099,
+ 35.69798490990991
+ ],
+ [
+ 139.82512810989013,
+ 35.69798490990991
+ ],
+ [
+ 139.82512810989013,
+ 35.69816509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.7",
+ "name": "亀戸駅前",
+ "latitude": 35.698032,
+ "longitude": 139.825077,
+ "polygon": [
+ [
+ 139.8249671098901,
+ 35.69812209009009
+ ],
+ [
+ 139.82518689010988,
+ 35.69812209009009
+ ],
+ [
+ 139.82518689010988,
+ 35.69794190990991
+ ],
+ [
+ 139.8249671098901,
+ 35.69794190990991
+ ],
+ [
+ 139.8249671098901,
+ 35.69812209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.8",
+ "name": "亀戸駅前",
+ "latitude": 35.698084,
+ "longitude": 139.824702,
+ "polygon": [
+ [
+ 139.82459210989012,
+ 35.69817409009009
+ ],
+ [
+ 139.82481189010988,
+ 35.69817409009009
+ ],
+ [
+ 139.82481189010988,
+ 35.69799390990991
+ ],
+ [
+ 139.82459210989012,
+ 35.69799390990991
+ ],
+ [
+ 139.82459210989012,
+ 35.69817409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.15",
+ "name": "亀戸駅前",
+ "latitude": 35.6979,
+ "longitude": 139.825244,
+ "polygon": [
+ [
+ 139.82513410989012,
+ 35.69799009009009
+ ],
+ [
+ 139.82535389010988,
+ 35.69799009009009
+ ],
+ [
+ 139.82535389010988,
+ 35.69780990990991
+ ],
+ [
+ 139.82513410989012,
+ 35.69780990990991
+ ],
+ [
+ 139.82513410989012,
+ 35.69799009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoStation.369.16",
+ "name": "亀戸駅前",
+ "latitude": 35.697773,
+ "longitude": 139.825403,
+ "polygon": [
+ [
+ 139.8252931098901,
+ 35.69786309009009
+ ],
+ [
+ 139.82551289010988,
+ 35.69786309009009
+ ],
+ [
+ 139.82551289010988,
+ 35.69768290990991
+ ],
+ [
+ 139.8252931098901,
+ 35.69768290990991
+ ],
+ [
+ 139.8252931098901,
+ 35.69786309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoTenjin.370.1",
+ "name": "亀戸天神前",
+ "latitude": 35.701353,
+ "longitude": 139.820349,
+ "polygon": [
+ [
+ 139.8202391098901,
+ 35.70144309009009
+ ],
+ [
+ 139.82045889010988,
+ 35.70144309009009
+ ],
+ [
+ 139.82045889010988,
+ 35.70126290990991
+ ],
+ [
+ 139.8202391098901,
+ 35.70126290990991
+ ],
+ [
+ 139.8202391098901,
+ 35.70144309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoTenjin.370.2",
+ "name": "亀戸天神前",
+ "latitude": 35.701575,
+ "longitude": 139.821124,
+ "polygon": [
+ [
+ 139.82101410989011,
+ 35.70166509009009
+ ],
+ [
+ 139.82123389010988,
+ 35.70166509009009
+ ],
+ [
+ 139.82123389010988,
+ 35.70148490990991
+ ],
+ [
+ 139.82101410989011,
+ 35.70148490990991
+ ],
+ [
+ 139.82101410989011,
+ 35.70166509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoYonchome.371.1",
+ "name": "亀戸四丁目",
+ "latitude": 35.701586,
+ "longitude": 139.824623,
+ "polygon": [
+ [
+ 139.82451310989012,
+ 35.70167609009009
+ ],
+ [
+ 139.82473289010989,
+ 35.70167609009009
+ ],
+ [
+ 139.82473289010989,
+ 35.70149590990991
+ ],
+ [
+ 139.82451310989012,
+ 35.70149590990991
+ ],
+ [
+ 139.82451310989012,
+ 35.70167609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoYonchome.371.2",
+ "name": "亀戸四丁目",
+ "latitude": 35.702253,
+ "longitude": 139.825317,
+ "polygon": [
+ [
+ 139.82520710989013,
+ 35.70234309009009
+ ],
+ [
+ 139.8254268901099,
+ 35.70234309009009
+ ],
+ [
+ 139.8254268901099,
+ 35.70216290990991
+ ],
+ [
+ 139.82520710989013,
+ 35.70216290990991
+ ],
+ [
+ 139.82520710989013,
+ 35.70234309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoYonchome.371.3",
+ "name": "亀戸四丁目",
+ "latitude": 35.701115,
+ "longitude": 139.825481,
+ "polygon": [
+ [
+ 139.8253711098901,
+ 35.70120509009009
+ ],
+ [
+ 139.82559089010988,
+ 35.70120509009009
+ ],
+ [
+ 139.82559089010988,
+ 35.70102490990991
+ ],
+ [
+ 139.8253711098901,
+ 35.70102490990991
+ ],
+ [
+ 139.8253711098901,
+ 35.70120509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamejimabashi.376.1",
+ "name": "亀島橋",
+ "latitude": 35.676699,
+ "longitude": 139.777684,
+ "polygon": [
+ [
+ 139.7775741098901,
+ 35.67678909009009
+ ],
+ [
+ 139.77779389010988,
+ 35.67678909009009
+ ],
+ [
+ 139.77779389010988,
+ 35.67660890990991
+ ],
+ [
+ 139.7775741098901,
+ 35.67660890990991
+ ],
+ [
+ 139.7775741098901,
+ 35.67678909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoYonchome.371.4",
+ "name": "亀戸四丁目",
+ "latitude": 35.702463,
+ "longitude": 139.825565,
+ "polygon": [
+ [
+ 139.82545510989013,
+ 35.70255309009009
+ ],
+ [
+ 139.8256748901099,
+ 35.70255309009009
+ ],
+ [
+ 139.8256748901099,
+ 35.70237290990991
+ ],
+ [
+ 139.82545510989013,
+ 35.70237290990991
+ ],
+ [
+ 139.82545510989013,
+ 35.70255309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoRokuchome.372.1",
+ "name": "亀戸六丁目",
+ "latitude": 35.696843,
+ "longitude": 139.832341,
+ "polygon": [
+ [
+ 139.83223110989013,
+ 35.69693309009009
+ ],
+ [
+ 139.8324508901099,
+ 35.69693309009009
+ ],
+ [
+ 139.8324508901099,
+ 35.69675290990991
+ ],
+ [
+ 139.83223110989013,
+ 35.69675290990991
+ ],
+ [
+ 139.83223110989013,
+ 35.69693309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoRokuchome.372.2",
+ "name": "亀戸六丁目",
+ "latitude": 35.697043,
+ "longitude": 139.830976,
+ "polygon": [
+ [
+ 139.8308661098901,
+ 35.69713309009009
+ ],
+ [
+ 139.83108589010988,
+ 35.69713309009009
+ ],
+ [
+ 139.83108589010988,
+ 35.69695290990991
+ ],
+ [
+ 139.8308661098901,
+ 35.69695290990991
+ ],
+ [
+ 139.8308661098901,
+ 35.69713309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoNanachome.373.1",
+ "name": "亀戸七丁目",
+ "latitude": 35.697246,
+ "longitude": 139.835754,
+ "polygon": [
+ [
+ 139.83564410989013,
+ 35.69733609009009
+ ],
+ [
+ 139.8358638901099,
+ 35.69733609009009
+ ],
+ [
+ 139.8358638901099,
+ 35.69715590990991
+ ],
+ [
+ 139.83564410989013,
+ 35.69715590990991
+ ],
+ [
+ 139.83564410989013,
+ 35.69733609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoNanachome.373.2",
+ "name": "亀戸七丁目",
+ "latitude": 35.696972,
+ "longitude": 139.835512,
+ "polygon": [
+ [
+ 139.8354021098901,
+ 35.69706209009009
+ ],
+ [
+ 139.83562189010988,
+ 35.69706209009009
+ ],
+ [
+ 139.83562189010988,
+ 35.69688190990991
+ ],
+ [
+ 139.8354021098901,
+ 35.69688190990991
+ ],
+ [
+ 139.8354021098901,
+ 35.69706209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoKyuchome.374.2",
+ "name": "亀戸九丁目",
+ "latitude": 35.697163,
+ "longitude": 139.839259,
+ "polygon": [
+ [
+ 139.83914910989012,
+ 35.69725309009009
+ ],
+ [
+ 139.83936889010988,
+ 35.69725309009009
+ ],
+ [
+ 139.83936889010988,
+ 35.69707290990991
+ ],
+ [
+ 139.83914910989012,
+ 35.69707290990991
+ ],
+ [
+ 139.83914910989012,
+ 35.69725309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamezawaYonchome.375.1",
+ "name": "亀沢四丁目",
+ "latitude": 35.698029,
+ "longitude": 139.805121,
+ "polygon": [
+ [
+ 139.80501110989013,
+ 35.69811909009009
+ ],
+ [
+ 139.8052308901099,
+ 35.69811909009009
+ ],
+ [
+ 139.8052308901099,
+ 35.69793890990991
+ ],
+ [
+ 139.80501110989013,
+ 35.69793890990991
+ ],
+ [
+ 139.80501110989013,
+ 35.69811909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kamejimabashi.376.2",
+ "name": "亀島橋",
+ "latitude": 35.677169,
+ "longitude": 139.777156,
+ "polygon": [
+ [
+ 139.7770461098901,
+ 35.67725909009009
+ ],
+ [
+ 139.77726589010987,
+ 35.67725909009009
+ ],
+ [
+ 139.77726589010987,
+ 35.67707890990991
+ ],
+ [
+ 139.7770461098901,
+ 35.67707890990991
+ ],
+ [
+ 139.7770461098901,
+ 35.67725909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kametakabashi.377.1",
+ "name": "亀高橋",
+ "latitude": 35.676986,
+ "longitude": 139.833927,
+ "polygon": [
+ [
+ 139.8338171098901,
+ 35.67707609009009
+ ],
+ [
+ 139.83403689010987,
+ 35.67707609009009
+ ],
+ [
+ 139.83403689010987,
+ 35.67689590990991
+ ],
+ [
+ 139.8338171098901,
+ 35.67689590990991
+ ],
+ [
+ 139.8338171098901,
+ 35.67707609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kametakabashi.377.2",
+ "name": "亀高橋",
+ "latitude": 35.676792,
+ "longitude": 139.834074,
+ "polygon": [
+ [
+ 139.8339641098901,
+ 35.67688209009009
+ ],
+ [
+ 139.83418389010987,
+ 35.67688209009009
+ ],
+ [
+ 139.83418389010987,
+ 35.67670190990991
+ ],
+ [
+ 139.8339641098901,
+ 35.67670190990991
+ ],
+ [
+ 139.8339641098901,
+ 35.67688209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kametakabashi.377.3",
+ "name": "亀高橋",
+ "latitude": 35.676283,
+ "longitude": 139.834491,
+ "polygon": [
+ [
+ 139.83438110989013,
+ 35.67637309009009
+ ],
+ [
+ 139.8346008901099,
+ 35.67637309009009
+ ],
+ [
+ 139.8346008901099,
+ 35.67619290990991
+ ],
+ [
+ 139.83438110989013,
+ 35.67619290990991
+ ],
+ [
+ 139.83438110989013,
+ 35.67637309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kametakabashi.377.4",
+ "name": "亀高橋",
+ "latitude": 35.676031,
+ "longitude": 139.834696,
+ "polygon": [
+ [
+ 139.83458610989013,
+ 35.67612109009009
+ ],
+ [
+ 139.8348058901099,
+ 35.67612109009009
+ ],
+ [
+ 139.8348058901099,
+ 35.67594090990991
+ ],
+ [
+ 139.83458610989013,
+ 35.67594090990991
+ ],
+ [
+ 139.83458610989013,
+ 35.67612109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kayabacho.378.3",
+ "name": "茅場町",
+ "latitude": 35.68128,
+ "longitude": 139.778527,
+ "polygon": [
+ [
+ 139.7784171098901,
+ 35.68137009009009
+ ],
+ [
+ 139.77863689010988,
+ 35.68137009009009
+ ],
+ [
+ 139.77863689010988,
+ 35.68118990990991
+ ],
+ [
+ 139.7784171098901,
+ 35.68118990990991
+ ],
+ [
+ 139.7784171098901,
+ 35.68137009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kayabacho.378.4",
+ "name": "茅場町",
+ "latitude": 35.681242,
+ "longitude": 139.77869,
+ "polygon": [
+ [
+ 139.77858010989013,
+ 35.68133209009009
+ ],
+ [
+ 139.7787998901099,
+ 35.68133209009009
+ ],
+ [
+ 139.7787998901099,
+ 35.68115190990991
+ ],
+ [
+ 139.77858010989013,
+ 35.68115190990991
+ ],
+ [
+ 139.77858010989013,
+ 35.68133209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kayabacho.378.5",
+ "name": "茅場町",
+ "latitude": 35.680074,
+ "longitude": 139.779475,
+ "polygon": [
+ [
+ 139.7793651098901,
+ 35.68016409009009
+ ],
+ [
+ 139.77958489010987,
+ 35.68016409009009
+ ],
+ [
+ 139.77958489010987,
+ 35.67998390990991
+ ],
+ [
+ 139.7793651098901,
+ 35.67998390990991
+ ],
+ [
+ 139.7793651098901,
+ 35.68016409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kayabacho.378.6",
+ "name": "茅場町",
+ "latitude": 35.679742,
+ "longitude": 139.780797,
+ "polygon": [
+ [
+ 139.78068710989012,
+ 35.67983209009009
+ ],
+ [
+ 139.7809068901099,
+ 35.67983209009009
+ ],
+ [
+ 139.7809068901099,
+ 35.67965190990991
+ ],
+ [
+ 139.78068710989012,
+ 35.67965190990991
+ ],
+ [
+ 139.78068710989012,
+ 35.67983209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kawadacho.379.1",
+ "name": "河田町",
+ "latitude": 35.699235,
+ "longitude": 139.717968,
+ "polygon": [
+ [
+ 139.71785810989013,
+ 35.69932509009009
+ ],
+ [
+ 139.7180778901099,
+ 35.69932509009009
+ ],
+ [
+ 139.7180778901099,
+ 35.69914490990991
+ ],
+ [
+ 139.71785810989013,
+ 35.69914490990991
+ ],
+ [
+ 139.71785810989013,
+ 35.69932509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kawadacho.379.2",
+ "name": "河田町",
+ "latitude": 35.69906,
+ "longitude": 139.717954,
+ "polygon": [
+ [
+ 139.7178441098901,
+ 35.69915009009009
+ ],
+ [
+ 139.71806389010987,
+ 35.69915009009009
+ ],
+ [
+ 139.71806389010987,
+ 35.69896990990991
+ ],
+ [
+ 139.7178441098901,
+ 35.69896990990991
+ ],
+ [
+ 139.7178441098901,
+ 35.69915009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuramaeItchome.457.1",
+ "name": "蔵前一丁目",
+ "latitude": 35.700728,
+ "longitude": 139.78836,
+ "polygon": [
+ [
+ 139.78825010989013,
+ 35.70081809009009
+ ],
+ [
+ 139.7884698901099,
+ 35.70081809009009
+ ],
+ [
+ 139.7884698901099,
+ 35.70063790990991
+ ],
+ [
+ 139.78825010989013,
+ 35.70063790990991
+ ],
+ [
+ 139.78825010989013,
+ 35.70081809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kawadacho.379.3",
+ "name": "河田町",
+ "latitude": 35.699388,
+ "longitude": 139.718996,
+ "polygon": [
+ [
+ 139.71888610989012,
+ 35.69947809009009
+ ],
+ [
+ 139.7191058901099,
+ 35.69947809009009
+ ],
+ [
+ 139.7191058901099,
+ 35.69929790990991
+ ],
+ [
+ 139.71888610989012,
+ 35.69929790990991
+ ],
+ [
+ 139.71888610989012,
+ 35.69947809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kawadacho.379.4",
+ "name": "河田町",
+ "latitude": 35.699568,
+ "longitude": 139.719177,
+ "polygon": [
+ [
+ 139.71906710989012,
+ 35.69965809009009
+ ],
+ [
+ 139.71928689010988,
+ 35.69965809009009
+ ],
+ [
+ 139.71928689010988,
+ 35.69947790990991
+ ],
+ [
+ 139.71906710989012,
+ 35.69947790990991
+ ],
+ [
+ 139.71906710989012,
+ 35.69965809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSanchome.380.1",
+ "name": "東三丁目",
+ "latitude": 35.650156,
+ "longitude": 139.710147,
+ "polygon": [
+ [
+ 139.71003710989012,
+ 35.65024609009009
+ ],
+ [
+ 139.7102568901099,
+ 35.65024609009009
+ ],
+ [
+ 139.7102568901099,
+ 35.65006590990991
+ ],
+ [
+ 139.71003710989012,
+ 35.65006590990991
+ ],
+ [
+ 139.71003710989012,
+ 35.65024609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSanchome.380.2",
+ "name": "東三丁目",
+ "latitude": 35.650495,
+ "longitude": 139.709484,
+ "polygon": [
+ [
+ 139.70937410989012,
+ 35.65058509009009
+ ],
+ [
+ 139.7095938901099,
+ 35.65058509009009
+ ],
+ [
+ 139.7095938901099,
+ 35.65040490990991
+ ],
+ [
+ 139.70937410989012,
+ 35.65040490990991
+ ],
+ [
+ 139.70937410989012,
+ 35.65058509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KandaStation.381.1",
+ "name": "神田駅前",
+ "latitude": 35.693876,
+ "longitude": 139.770944,
+ "polygon": [
+ [
+ 139.7708341098901,
+ 35.69396609009009
+ ],
+ [
+ 139.77105389010987,
+ 35.69396609009009
+ ],
+ [
+ 139.77105389010987,
+ 35.69378590990991
+ ],
+ [
+ 139.7708341098901,
+ 35.69378590990991
+ ],
+ [
+ 139.7708341098901,
+ 35.69396609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KandaStation.381.2",
+ "name": "神田駅前",
+ "latitude": 35.691793,
+ "longitude": 139.771528,
+ "polygon": [
+ [
+ 139.7714181098901,
+ 35.69188309009009
+ ],
+ [
+ 139.77163789010987,
+ 35.69188309009009
+ ],
+ [
+ 139.77163789010987,
+ 35.69170290990991
+ ],
+ [
+ 139.7714181098901,
+ 35.69170290990991
+ ],
+ [
+ 139.7714181098901,
+ 35.69188309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KandaNishikicho.382.1",
+ "name": "神田錦町",
+ "latitude": 35.692809,
+ "longitude": 139.762076,
+ "polygon": [
+ [
+ 139.76196610989012,
+ 35.69289909009009
+ ],
+ [
+ 139.7621858901099,
+ 35.69289909009009
+ ],
+ [
+ 139.7621858901099,
+ 35.69271890990991
+ ],
+ [
+ 139.76196610989012,
+ 35.69271890990991
+ ],
+ [
+ 139.76196610989012,
+ 35.69289909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KandaNishikicho.382.2",
+ "name": "神田錦町",
+ "latitude": 35.693311,
+ "longitude": 139.76099,
+ "polygon": [
+ [
+ 139.7608801098901,
+ 35.69340109009009
+ ],
+ [
+ 139.76109989010988,
+ 35.69340109009009
+ ],
+ [
+ 139.76109989010988,
+ 35.69322090990991
+ ],
+ [
+ 139.7608801098901,
+ 35.69322090990991
+ ],
+ [
+ 139.7608801098901,
+ 35.69340109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kandabashi.383.1",
+ "name": "神田橋",
+ "latitude": 35.687516,
+ "longitude": 139.763619,
+ "polygon": [
+ [
+ 139.76350910989012,
+ 35.68760609009009
+ ],
+ [
+ 139.7637288901099,
+ 35.68760609009009
+ ],
+ [
+ 139.7637288901099,
+ 35.68742590990991
+ ],
+ [
+ 139.76350910989012,
+ 35.68742590990991
+ ],
+ [
+ 139.76350910989012,
+ 35.68760609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kandabashi.383.2",
+ "name": "神田橋",
+ "latitude": 35.687775,
+ "longitude": 139.764029,
+ "polygon": [
+ [
+ 139.7639191098901,
+ 35.68786509009009
+ ],
+ [
+ 139.76413889010988,
+ 35.68786509009009
+ ],
+ [
+ 139.76413889010988,
+ 35.68768490990991
+ ],
+ [
+ 139.7639191098901,
+ 35.68768490990991
+ ],
+ [
+ 139.7639191098901,
+ 35.68786509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KandaMyojin.384.1",
+ "name": "神田明神前",
+ "latitude": 35.70121,
+ "longitude": 139.766703,
+ "polygon": [
+ [
+ 139.76659310989012,
+ 35.70130009009009
+ ],
+ [
+ 139.7668128901099,
+ 35.70130009009009
+ ],
+ [
+ 139.7668128901099,
+ 35.70111990990991
+ ],
+ [
+ 139.76659310989012,
+ 35.70111990990991
+ ],
+ [
+ 139.76659310989012,
+ 35.70130009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarajukuGaienChugakko.385.1",
+ "name": "原宿外苑中学校前",
+ "latitude": 35.673485,
+ "longitude": 139.705332,
+ "polygon": [
+ [
+ 139.70522210989012,
+ 35.67357509009009
+ ],
+ [
+ 139.70544189010988,
+ 35.67357509009009
+ ],
+ [
+ 139.70544189010988,
+ 35.67339490990991
+ ],
+ [
+ 139.70522210989012,
+ 35.67339490990991
+ ],
+ [
+ 139.70522210989012,
+ 35.67357509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarajukuGaienChugakko.385.2",
+ "name": "原宿外苑中学校前",
+ "latitude": 35.67356,
+ "longitude": 139.705137,
+ "polygon": [
+ [
+ 139.70502710989012,
+ 35.67365009009009
+ ],
+ [
+ 139.7052468901099,
+ 35.67365009009009
+ ],
+ [
+ 139.7052468901099,
+ 35.67346990990991
+ ],
+ [
+ 139.70502710989012,
+ 35.67346990990991
+ ],
+ [
+ 139.70502710989012,
+ 35.67365009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GakushuinShita.387.1",
+ "name": "学習院下",
+ "latitude": 35.715871,
+ "longitude": 139.712223,
+ "polygon": [
+ [
+ 139.7121131098901,
+ 35.71596109009009
+ ],
+ [
+ 139.71233289010988,
+ 35.71596109009009
+ ],
+ [
+ 139.71233289010988,
+ 35.71578090990991
+ ],
+ [
+ 139.7121131098901,
+ 35.71578090990991
+ ],
+ [
+ 139.7121131098901,
+ 35.71596109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GakushuinShita.387.2",
+ "name": "学習院下",
+ "latitude": 35.715992,
+ "longitude": 139.712043,
+ "polygon": [
+ [
+ 139.7119331098901,
+ 35.71608209009009
+ ],
+ [
+ 139.71215289010988,
+ 35.71608209009009
+ ],
+ [
+ 139.71215289010988,
+ 35.71590190990991
+ ],
+ [
+ 139.7119331098901,
+ 35.71590190990991
+ ],
+ [
+ 139.7119331098901,
+ 35.71608209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuSeisoshaShako.388.1",
+ "name": "南千住清掃車車庫前",
+ "latitude": 35.731463,
+ "longitude": 139.804549,
+ "polygon": [
+ [
+ 139.80443910989013,
+ 35.73155309009009
+ ],
+ [
+ 139.8046588901099,
+ 35.73155309009009
+ ],
+ [
+ 139.8046588901099,
+ 35.73137290990991
+ ],
+ [
+ 139.80443910989013,
+ 35.73137290990991
+ ],
+ [
+ 139.80443910989013,
+ 35.73155309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuSeisoshaShako.388.3",
+ "name": "南千住清掃車車庫前",
+ "latitude": 35.731919,
+ "longitude": 139.805826,
+ "polygon": [
+ [
+ 139.8057161098901,
+ 35.73200909009009
+ ],
+ [
+ 139.80593589010988,
+ 35.73200909009009
+ ],
+ [
+ 139.80593589010988,
+ 35.73182890990991
+ ],
+ [
+ 139.8057161098901,
+ 35.73182890990991
+ ],
+ [
+ 139.8057161098901,
+ 35.73200909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GakkoDori.389.5",
+ "name": "学校通り",
+ "latitude": 35.671856,
+ "longitude": 139.831943,
+ "polygon": [
+ [
+ 139.8318331098901,
+ 35.67194609009009
+ ],
+ [
+ 139.83205289010988,
+ 35.67194609009009
+ ],
+ [
+ 139.83205289010988,
+ 35.67176590990991
+ ],
+ [
+ 139.8318331098901,
+ 35.67176590990991
+ ],
+ [
+ 139.8318331098901,
+ 35.67194609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KurosawaJinja.461.1",
+ "name": "黒沢神社前",
+ "latitude": 35.813861,
+ "longitude": 139.264432,
+ "polygon": [
+ [
+ 139.26432210989012,
+ 35.81395109009009
+ ],
+ [
+ 139.26454189010988,
+ 35.81395109009009
+ ],
+ [
+ 139.26454189010988,
+ 35.81377090990991
+ ],
+ [
+ 139.26432210989012,
+ 35.81377090990991
+ ],
+ [
+ 139.26432210989012,
+ 35.81395109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GakkoDori.389.6",
+ "name": "学校通り",
+ "latitude": 35.671437,
+ "longitude": 139.832993,
+ "polygon": [
+ [
+ 139.8328831098901,
+ 35.67152709009009
+ ],
+ [
+ 139.83310289010987,
+ 35.67152709009009
+ ],
+ [
+ 139.83310289010987,
+ 35.67134690990991
+ ],
+ [
+ 139.8328831098901,
+ 35.67134690990991
+ ],
+ [
+ 139.8328831098901,
+ 35.67152709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kikuicho.391.1",
+ "name": "喜久井町",
+ "latitude": 35.703037,
+ "longitude": 139.721646,
+ "polygon": [
+ [
+ 139.7215361098901,
+ 35.70312709009009
+ ],
+ [
+ 139.72175589010988,
+ 35.70312709009009
+ ],
+ [
+ 139.72175589010988,
+ 35.70294690990991
+ ],
+ [
+ 139.7215361098901,
+ 35.70294690990991
+ ],
+ [
+ 139.7215361098901,
+ 35.70312709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kikuicho.391.2",
+ "name": "喜久井町",
+ "latitude": 35.703162,
+ "longitude": 139.721571,
+ "polygon": [
+ [
+ 139.72146110989013,
+ 35.70325209009009
+ ],
+ [
+ 139.7216808901099,
+ 35.70325209009009
+ ],
+ [
+ 139.7216808901099,
+ 35.70307190990991
+ ],
+ [
+ 139.72146110989013,
+ 35.70307190990991
+ ],
+ [
+ 139.72146110989013,
+ 35.70325209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikukawaStation.392.1",
+ "name": "菊川駅前",
+ "latitude": 35.688451,
+ "longitude": 139.805417,
+ "polygon": [
+ [
+ 139.80530710989012,
+ 35.68854109009009
+ ],
+ [
+ 139.8055268901099,
+ 35.68854109009009
+ ],
+ [
+ 139.8055268901099,
+ 35.68836090990991
+ ],
+ [
+ 139.80530710989012,
+ 35.68836090990991
+ ],
+ [
+ 139.80530710989012,
+ 35.68854109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikukawaStation.392.2",
+ "name": "菊川駅前",
+ "latitude": 35.688294,
+ "longitude": 139.805539,
+ "polygon": [
+ [
+ 139.80542910989013,
+ 35.68838409009009
+ ],
+ [
+ 139.8056488901099,
+ 35.68838409009009
+ ],
+ [
+ 139.8056488901099,
+ 35.68820390990991
+ ],
+ [
+ 139.80542910989013,
+ 35.68820390990991
+ ],
+ [
+ 139.80542910989013,
+ 35.68838409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikukawaStation.392.4",
+ "name": "菊川駅前",
+ "latitude": 35.687646,
+ "longitude": 139.806201,
+ "polygon": [
+ [
+ 139.8060911098901,
+ 35.68773609009009
+ ],
+ [
+ 139.80631089010987,
+ 35.68773609009009
+ ],
+ [
+ 139.80631089010987,
+ 35.68755590990991
+ ],
+ [
+ 139.8060911098901,
+ 35.68755590990991
+ ],
+ [
+ 139.8060911098901,
+ 35.68773609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikukawaStation.392.5",
+ "name": "菊川駅前",
+ "latitude": 35.687231,
+ "longitude": 139.806038,
+ "polygon": [
+ [
+ 139.80592810989012,
+ 35.68732109009009
+ ],
+ [
+ 139.80614789010988,
+ 35.68732109009009
+ ],
+ [
+ 139.80614789010988,
+ 35.68714090990991
+ ],
+ [
+ 139.80592810989012,
+ 35.68714090990991
+ ],
+ [
+ 139.80592810989012,
+ 35.68732109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikukawaItchome.393.1",
+ "name": "菊川一丁目",
+ "latitude": 35.688143,
+ "longitude": 139.802574,
+ "polygon": [
+ [
+ 139.8024641098901,
+ 35.68823309009009
+ ],
+ [
+ 139.80268389010988,
+ 35.68823309009009
+ ],
+ [
+ 139.80268389010988,
+ 35.688052909909906
+ ],
+ [
+ 139.8024641098901,
+ 35.688052909909906
+ ],
+ [
+ 139.8024641098901,
+ 35.68823309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikukawaItchome.393.2",
+ "name": "菊川一丁目",
+ "latitude": 35.688281,
+ "longitude": 139.801694,
+ "polygon": [
+ [
+ 139.80158410989011,
+ 35.688371090090094
+ ],
+ [
+ 139.80180389010988,
+ 35.688371090090094
+ ],
+ [
+ 139.80180389010988,
+ 35.68819090990991
+ ],
+ [
+ 139.80158410989011,
+ 35.68819090990991
+ ],
+ [
+ 139.80158410989011,
+ 35.688371090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikukawaSanchome.394.1",
+ "name": "菊川三丁目",
+ "latitude": 35.688417,
+ "longitude": 139.80791,
+ "polygon": [
+ [
+ 139.8078001098901,
+ 35.68850709009009
+ ],
+ [
+ 139.80801989010988,
+ 35.68850709009009
+ ],
+ [
+ 139.80801989010988,
+ 35.68832690990991
+ ],
+ [
+ 139.8078001098901,
+ 35.68832690990991
+ ],
+ [
+ 139.8078001098901,
+ 35.68850709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaNichome.410.2",
+ "name": "北砂二丁目",
+ "latitude": 35.678991,
+ "longitude": 139.827315,
+ "polygon": [
+ [
+ 139.82720510989012,
+ 35.679081090090094
+ ],
+ [
+ 139.82742489010988,
+ 35.679081090090094
+ ],
+ [
+ 139.82742489010988,
+ 35.67890090990991
+ ],
+ [
+ 139.82720510989012,
+ 35.67890090990991
+ ],
+ [
+ 139.82720510989012,
+ 35.679081090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikukawaSanchome.394.2",
+ "name": "菊川三丁目",
+ "latitude": 35.688624,
+ "longitude": 139.808674,
+ "polygon": [
+ [
+ 139.8085641098901,
+ 35.68871409009009
+ ],
+ [
+ 139.80878389010988,
+ 35.68871409009009
+ ],
+ [
+ 139.80878389010988,
+ 35.68853390990991
+ ],
+ [
+ 139.8085641098901,
+ 35.68853390990991
+ ],
+ [
+ 139.8085641098901,
+ 35.68871409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikusakaShita.395.1",
+ "name": "菊坂下",
+ "latitude": 35.711429,
+ "longitude": 139.754664,
+ "polygon": [
+ [
+ 139.7545541098901,
+ 35.71151909009009
+ ],
+ [
+ 139.75477389010987,
+ 35.71151909009009
+ ],
+ [
+ 139.75477389010987,
+ 35.71133890990991
+ ],
+ [
+ 139.7545541098901,
+ 35.71133890990991
+ ],
+ [
+ 139.7545541098901,
+ 35.71151909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KikusakaShita.395.2",
+ "name": "菊坂下",
+ "latitude": 35.711437,
+ "longitude": 139.755125,
+ "polygon": [
+ [
+ 139.7550151098901,
+ 35.71152709009009
+ ],
+ [
+ 139.75523489010988,
+ 35.71152709009009
+ ],
+ [
+ 139.75523489010988,
+ 35.711346909909906
+ ],
+ [
+ 139.7550151098901,
+ 35.711346909909906
+ ],
+ [
+ 139.7550151098901,
+ 35.71152709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kikuyabashi.396.1",
+ "name": "菊屋橋",
+ "latitude": 35.71056,
+ "longitude": 139.787442,
+ "polygon": [
+ [
+ 139.78733210989012,
+ 35.71065009009009
+ ],
+ [
+ 139.78755189010988,
+ 35.71065009009009
+ ],
+ [
+ 139.78755189010988,
+ 35.71046990990991
+ ],
+ [
+ 139.78733210989012,
+ 35.71046990990991
+ ],
+ [
+ 139.78733210989012,
+ 35.71065009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kikuyabashi.396.2",
+ "name": "菊屋橋",
+ "latitude": 35.710337,
+ "longitude": 139.787516,
+ "polygon": [
+ [
+ 139.78740610989013,
+ 35.71042709009009
+ ],
+ [
+ 139.7876258901099,
+ 35.71042709009009
+ ],
+ [
+ 139.7876258901099,
+ 35.71024690990991
+ ],
+ [
+ 139.78740610989013,
+ 35.71024690990991
+ ],
+ [
+ 139.78740610989013,
+ 35.71042709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaSanchome.411.1",
+ "name": "北砂三丁目",
+ "latitude": 35.681886,
+ "longitude": 139.827333,
+ "polygon": [
+ [
+ 139.82722310989013,
+ 35.68197609009009
+ ],
+ [
+ 139.8274428901099,
+ 35.68197609009009
+ ],
+ [
+ 139.8274428901099,
+ 35.68179590990991
+ ],
+ [
+ 139.82722310989013,
+ 35.68179590990991
+ ],
+ [
+ 139.82722310989013,
+ 35.68197609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kishi.397.1",
+ "name": "岸",
+ "latitude": 35.763967,
+ "longitude": 139.36507,
+ "polygon": [
+ [
+ 139.36496010989012,
+ 35.76405709009009
+ ],
+ [
+ 139.36517989010989,
+ 35.76405709009009
+ ],
+ [
+ 139.36517989010989,
+ 35.76387690990991
+ ],
+ [
+ 139.36496010989012,
+ 35.76387690990991
+ ],
+ [
+ 139.36496010989012,
+ 35.76405709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kishi.397.2",
+ "name": "岸",
+ "latitude": 35.763906,
+ "longitude": 139.36503,
+ "polygon": [
+ [
+ 139.3649201098901,
+ 35.76399609009009
+ ],
+ [
+ 139.36513989010987,
+ 35.76399609009009
+ ],
+ [
+ 139.36513989010987,
+ 35.76381590990991
+ ],
+ [
+ 139.3649201098901,
+ 35.76381590990991
+ ],
+ [
+ 139.3649201098901,
+ 35.76399609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kishimojin.398.1",
+ "name": "鬼子母神前",
+ "latitude": 35.717988,
+ "longitude": 139.715656,
+ "polygon": [
+ [
+ 139.7155461098901,
+ 35.71807809009009
+ ],
+ [
+ 139.71576589010988,
+ 35.71807809009009
+ ],
+ [
+ 139.71576589010988,
+ 35.71789790990991
+ ],
+ [
+ 139.7155461098901,
+ 35.71789790990991
+ ],
+ [
+ 139.7155461098901,
+ 35.71807809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kishimojin.398.2",
+ "name": "鬼子母神前",
+ "latitude": 35.71821,
+ "longitude": 139.714812,
+ "polygon": [
+ [
+ 139.7147021098901,
+ 35.71830009009009
+ ],
+ [
+ 139.71492189010988,
+ 35.71830009009009
+ ],
+ [
+ 139.71492189010988,
+ 35.71811990990991
+ ],
+ [
+ 139.7147021098901,
+ 35.71811990990991
+ ],
+ [
+ 139.7147021098901,
+ 35.71830009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaSanchome.427.1",
+ "name": "木場三丁目",
+ "latitude": 35.672825,
+ "longitude": 139.806351,
+ "polygon": [
+ [
+ 139.80624110989012,
+ 35.67291509009009
+ ],
+ [
+ 139.8064608901099,
+ 35.67291509009009
+ ],
+ [
+ 139.8064608901099,
+ 35.67273490990991
+ ],
+ [
+ 139.80624110989012,
+ 35.67273490990991
+ ],
+ [
+ 139.80624110989012,
+ 35.67291509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaAoyamaSanchome.400.1",
+ "name": "北青山三丁目",
+ "latitude": 35.669679,
+ "longitude": 139.715175,
+ "polygon": [
+ [
+ 139.7150651098901,
+ 35.66976909009009
+ ],
+ [
+ 139.71528489010987,
+ 35.66976909009009
+ ],
+ [
+ 139.71528489010987,
+ 35.66958890990991
+ ],
+ [
+ 139.7150651098901,
+ 35.66958890990991
+ ],
+ [
+ 139.7150651098901,
+ 35.66976909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaNichome.410.1",
+ "name": "北砂二丁目",
+ "latitude": 35.679554,
+ "longitude": 139.827578,
+ "polygon": [
+ [
+ 139.8274681098901,
+ 35.67964409009009
+ ],
+ [
+ 139.82768789010987,
+ 35.67964409009009
+ ],
+ [
+ 139.82768789010987,
+ 35.67946390990991
+ ],
+ [
+ 139.8274681098901,
+ 35.67946390990991
+ ],
+ [
+ 139.8274681098901,
+ 35.67964409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaAoyamaSanchome.400.2",
+ "name": "北青山三丁目",
+ "latitude": 35.669494,
+ "longitude": 139.715075,
+ "polygon": [
+ [
+ 139.71496510989013,
+ 35.66958409009009
+ ],
+ [
+ 139.7151848901099,
+ 35.66958409009009
+ ],
+ [
+ 139.7151848901099,
+ 35.66940390990991
+ ],
+ [
+ 139.71496510989013,
+ 35.66940390990991
+ ],
+ [
+ 139.71496510989013,
+ 35.66958409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakashita.402.1",
+ "name": "坂下",
+ "latitude": 35.819059,
+ "longitude": 139.245237,
+ "polygon": [
+ [
+ 139.24512710989012,
+ 35.81914909009009
+ ],
+ [
+ 139.2453468901099,
+ 35.81914909009009
+ ],
+ [
+ 139.2453468901099,
+ 35.81896890990991
+ ],
+ [
+ 139.24512710989012,
+ 35.81896890990991
+ ],
+ [
+ 139.24512710989012,
+ 35.81914909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakashita.402.2",
+ "name": "坂下",
+ "latitude": 35.819004,
+ "longitude": 139.245282,
+ "polygon": [
+ [
+ 139.24517210989012,
+ 35.81909409009009
+ ],
+ [
+ 139.2453918901099,
+ 35.81909409009009
+ ],
+ [
+ 139.2453918901099,
+ 35.81891390990991
+ ],
+ [
+ 139.24517210989012,
+ 35.81891390990991
+ ],
+ [
+ 139.24517210989012,
+ 35.81909409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitakuKamiyacho.403.1",
+ "name": "北区神谷町",
+ "latitude": 35.768589,
+ "longitude": 139.734752,
+ "polygon": [
+ [
+ 139.7346421098901,
+ 35.76867909009009
+ ],
+ [
+ 139.73486189010987,
+ 35.76867909009009
+ ],
+ [
+ 139.73486189010987,
+ 35.76849890990991
+ ],
+ [
+ 139.7346421098901,
+ 35.76849890990991
+ ],
+ [
+ 139.7346421098901,
+ 35.76867909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitakuKamiyacho.403.2",
+ "name": "北区神谷町",
+ "latitude": 35.768055,
+ "longitude": 139.734652,
+ "polygon": [
+ [
+ 139.73454210989013,
+ 35.76814509009009
+ ],
+ [
+ 139.7347618901099,
+ 35.76814509009009
+ ],
+ [
+ 139.7347618901099,
+ 35.76796490990991
+ ],
+ [
+ 139.73454210989013,
+ 35.76796490990991
+ ],
+ [
+ 139.73454210989013,
+ 35.76814509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaSando.404.1",
+ "name": "北参道",
+ "latitude": 35.679394,
+ "longitude": 139.704619,
+ "polygon": [
+ [
+ 139.70450910989013,
+ 35.67948409009009
+ ],
+ [
+ 139.7047288901099,
+ 35.67948409009009
+ ],
+ [
+ 139.7047288901099,
+ 35.67930390990991
+ ],
+ [
+ 139.70450910989013,
+ 35.67930390990991
+ ],
+ [
+ 139.70450910989013,
+ 35.67948409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasatoKenkyusho.405.1",
+ "name": "北里研究所前",
+ "latitude": 35.644471,
+ "longitude": 139.725787,
+ "polygon": [
+ [
+ 139.7256771098901,
+ 35.64456109009009
+ ],
+ [
+ 139.72589689010988,
+ 35.64456109009009
+ ],
+ [
+ 139.72589689010988,
+ 35.64438090990991
+ ],
+ [
+ 139.7256771098901,
+ 35.64438090990991
+ ],
+ [
+ 139.7256771098901,
+ 35.64456109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasatoKenkyusho.405.2",
+ "name": "北里研究所前",
+ "latitude": 35.64442,
+ "longitude": 139.725529,
+ "polygon": [
+ [
+ 139.7254191098901,
+ 35.64451009009009
+ ],
+ [
+ 139.72563889010988,
+ 35.64451009009009
+ ],
+ [
+ 139.72563889010988,
+ 35.64432990990991
+ ],
+ [
+ 139.7254191098901,
+ 35.64432990990991
+ ],
+ [
+ 139.7254191098901,
+ 35.64451009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaShako.407.1",
+ "name": "北車庫前",
+ "latitude": 35.773841,
+ "longitude": 139.73302,
+ "polygon": [
+ [
+ 139.73291010989013,
+ 35.77393109009009
+ ],
+ [
+ 139.7331298901099,
+ 35.77393109009009
+ ],
+ [
+ 139.7331298901099,
+ 35.77375090990991
+ ],
+ [
+ 139.73291010989013,
+ 35.77375090990991
+ ],
+ [
+ 139.73291010989013,
+ 35.77393109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaShako.407.2",
+ "name": "北車庫前",
+ "latitude": 35.773505,
+ "longitude": 139.733248,
+ "polygon": [
+ [
+ 139.73313810989012,
+ 35.77359509009009
+ ],
+ [
+ 139.7333578901099,
+ 35.77359509009009
+ ],
+ [
+ 139.7333578901099,
+ 35.77341490990991
+ ],
+ [
+ 139.73313810989012,
+ 35.77341490990991
+ ],
+ [
+ 139.73313810989012,
+ 35.77359509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaShako.407.3",
+ "name": "北車庫前",
+ "latitude": 35.773575,
+ "longitude": 139.732999,
+ "polygon": [
+ [
+ 139.73288910989012,
+ 35.77366509009009
+ ],
+ [
+ 139.7331088901099,
+ 35.77366509009009
+ ],
+ [
+ 139.7331088901099,
+ 35.77348490990991
+ ],
+ [
+ 139.73288910989012,
+ 35.77348490990991
+ ],
+ [
+ 139.73288910989012,
+ 35.77366509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaItchome.409.1",
+ "name": "北砂一丁目",
+ "latitude": 35.680891,
+ "longitude": 139.822539,
+ "polygon": [
+ [
+ 139.82242910989012,
+ 35.68098109009009
+ ],
+ [
+ 139.8226488901099,
+ 35.68098109009009
+ ],
+ [
+ 139.8226488901099,
+ 35.68080090990991
+ ],
+ [
+ 139.82242910989012,
+ 35.68080090990991
+ ],
+ [
+ 139.82242910989012,
+ 35.68098109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaSanchome.427.2",
+ "name": "木場三丁目",
+ "latitude": 35.672905,
+ "longitude": 139.80661,
+ "polygon": [
+ [
+ 139.80650010989012,
+ 35.67299509009009
+ ],
+ [
+ 139.8067198901099,
+ 35.67299509009009
+ ],
+ [
+ 139.8067198901099,
+ 35.67281490990991
+ ],
+ [
+ 139.80650010989012,
+ 35.67281490990991
+ ],
+ [
+ 139.80650010989012,
+ 35.67299509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaItchome.409.2",
+ "name": "北砂一丁目",
+ "latitude": 35.680677,
+ "longitude": 139.822482,
+ "polygon": [
+ [
+ 139.82237210989013,
+ 35.68076709009009
+ ],
+ [
+ 139.8225918901099,
+ 35.68076709009009
+ ],
+ [
+ 139.8225918901099,
+ 35.68058690990991
+ ],
+ [
+ 139.82237210989013,
+ 35.68058690990991
+ ],
+ [
+ 139.82237210989013,
+ 35.68076709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaSanchome.411.2",
+ "name": "北砂三丁目",
+ "latitude": 35.681837,
+ "longitude": 139.827566,
+ "polygon": [
+ [
+ 139.8274561098901,
+ 35.68192709009009
+ ],
+ [
+ 139.82767589010987,
+ 35.68192709009009
+ ],
+ [
+ 139.82767589010987,
+ 35.68174690990991
+ ],
+ [
+ 139.8274561098901,
+ 35.68174690990991
+ ],
+ [
+ 139.8274561098901,
+ 35.68192709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaYonchome.412.1",
+ "name": "北砂四丁目",
+ "latitude": 35.6767,
+ "longitude": 139.83109,
+ "polygon": [
+ [
+ 139.8309801098901,
+ 35.67679009009009
+ ],
+ [
+ 139.83119989010987,
+ 35.67679009009009
+ ],
+ [
+ 139.83119989010987,
+ 35.67660990990991
+ ],
+ [
+ 139.8309801098901,
+ 35.67660990990991
+ ],
+ [
+ 139.8309801098901,
+ 35.67679009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaYonchome.412.2",
+ "name": "北砂四丁目",
+ "latitude": 35.676654,
+ "longitude": 139.830105,
+ "polygon": [
+ [
+ 139.82999510989012,
+ 35.67674409009009
+ ],
+ [
+ 139.8302148901099,
+ 35.67674409009009
+ ],
+ [
+ 139.8302148901099,
+ 35.67656390990991
+ ],
+ [
+ 139.82999510989012,
+ 35.67656390990991
+ ],
+ [
+ 139.82999510989012,
+ 35.67674409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaGochome.413.1",
+ "name": "北砂五丁目",
+ "latitude": 35.681892,
+ "longitude": 139.83536,
+ "polygon": [
+ [
+ 139.83525010989013,
+ 35.68198209009009
+ ],
+ [
+ 139.8354698901099,
+ 35.68198209009009
+ ],
+ [
+ 139.8354698901099,
+ 35.68180190990991
+ ],
+ [
+ 139.83525010989013,
+ 35.68180190990991
+ ],
+ [
+ 139.83525010989013,
+ 35.68198209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaGochome.413.2",
+ "name": "北砂五丁目",
+ "latitude": 35.682087,
+ "longitude": 139.835653,
+ "polygon": [
+ [
+ 139.83554310989012,
+ 35.68217709009009
+ ],
+ [
+ 139.8357628901099,
+ 35.68217709009009
+ ],
+ [
+ 139.8357628901099,
+ 35.68199690990991
+ ],
+ [
+ 139.83554310989012,
+ 35.68199690990991
+ ],
+ [
+ 139.83554310989012,
+ 35.68217709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaRokuchome.414.1",
+ "name": "北砂六丁目",
+ "latitude": 35.683933,
+ "longitude": 139.835934,
+ "polygon": [
+ [
+ 139.83582410989013,
+ 35.68402309009009
+ ],
+ [
+ 139.8360438901099,
+ 35.68402309009009
+ ],
+ [
+ 139.8360438901099,
+ 35.68384290990991
+ ],
+ [
+ 139.83582410989013,
+ 35.68384290990991
+ ],
+ [
+ 139.83582410989013,
+ 35.68402309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaRokuchome.414.2",
+ "name": "北砂六丁目",
+ "latitude": 35.683501,
+ "longitude": 139.836061,
+ "polygon": [
+ [
+ 139.83595110989012,
+ 35.68359109009009
+ ],
+ [
+ 139.83617089010988,
+ 35.68359109009009
+ ],
+ [
+ 139.83617089010988,
+ 35.68341090990991
+ ],
+ [
+ 139.83595110989012,
+ 35.68341090990991
+ ],
+ [
+ 139.83595110989012,
+ 35.68359109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaRokuchome.414.3",
+ "name": "北砂六丁目",
+ "latitude": 35.684402,
+ "longitude": 139.836966,
+ "polygon": [
+ [
+ 139.8368561098901,
+ 35.68449209009009
+ ],
+ [
+ 139.83707589010987,
+ 35.68449209009009
+ ],
+ [
+ 139.83707589010987,
+ 35.68431190990991
+ ],
+ [
+ 139.8368561098901,
+ 35.68431190990991
+ ],
+ [
+ 139.8368561098901,
+ 35.68449209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaRokuchome.414.4",
+ "name": "北砂六丁目",
+ "latitude": 35.68451,
+ "longitude": 139.837415,
+ "polygon": [
+ [
+ 139.8373051098901,
+ 35.68460009009009
+ ],
+ [
+ 139.83752489010988,
+ 35.68460009009009
+ ],
+ [
+ 139.83752489010988,
+ 35.68441990990991
+ ],
+ [
+ 139.8373051098901,
+ 35.68441990990991
+ ],
+ [
+ 139.8373051098901,
+ 35.68460009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaNanachome.415.1",
+ "name": "北砂七丁目",
+ "latitude": 35.679526,
+ "longitude": 139.834676,
+ "polygon": [
+ [
+ 139.83456610989012,
+ 35.67961609009009
+ ],
+ [
+ 139.83478589010988,
+ 35.67961609009009
+ ],
+ [
+ 139.83478589010988,
+ 35.67943590990991
+ ],
+ [
+ 139.83456610989012,
+ 35.67943590990991
+ ],
+ [
+ 139.83456610989012,
+ 35.67961609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaNanachome.415.2",
+ "name": "北砂七丁目",
+ "latitude": 35.679141,
+ "longitude": 139.834765,
+ "polygon": [
+ [
+ 139.83465510989012,
+ 35.67923109009009
+ ],
+ [
+ 139.8348748901099,
+ 35.67923109009009
+ ],
+ [
+ 139.8348748901099,
+ 35.67905090990991
+ ],
+ [
+ 139.83465510989012,
+ 35.67905090990991
+ ],
+ [
+ 139.83465510989012,
+ 35.67923109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaSenjuStation.416.3",
+ "name": "北千住駅前",
+ "latitude": 35.750226,
+ "longitude": 139.804541,
+ "polygon": [
+ [
+ 139.80443110989012,
+ 35.75031609009009
+ ],
+ [
+ 139.80465089010988,
+ 35.75031609009009
+ ],
+ [
+ 139.80465089010988,
+ 35.75013590990991
+ ],
+ [
+ 139.80443110989012,
+ 35.75013590990991
+ ],
+ [
+ 139.80443110989012,
+ 35.75031609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaYonchome.428.1",
+ "name": "木場四丁目",
+ "latitude": 35.674767,
+ "longitude": 139.80671,
+ "polygon": [
+ [
+ 139.80660010989013,
+ 35.67485709009009
+ ],
+ [
+ 139.8068198901099,
+ 35.67485709009009
+ ],
+ [
+ 139.8068198901099,
+ 35.67467690990991
+ ],
+ [
+ 139.80660010989013,
+ 35.67467690990991
+ ],
+ [
+ 139.80660010989013,
+ 35.67485709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiofuneKannonIriguchi.419.1",
+ "name": "塩船観音入口",
+ "latitude": 35.799539,
+ "longitude": 139.285887,
+ "polygon": [
+ [
+ 139.28577710989012,
+ 35.79962909009009
+ ],
+ [
+ 139.28599689010989,
+ 35.79962909009009
+ ],
+ [
+ 139.28599689010989,
+ 35.79944890990991
+ ],
+ [
+ 139.28577710989012,
+ 35.79944890990991
+ ],
+ [
+ 139.28577710989012,
+ 35.79962909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiofuneKannonIriguchi.419.2",
+ "name": "塩船観音入口",
+ "latitude": 35.799564,
+ "longitude": 139.286212,
+ "polygon": [
+ [
+ 139.28610210989012,
+ 35.79965409009009
+ ],
+ [
+ 139.2863218901099,
+ 35.79965409009009
+ ],
+ [
+ 139.2863218901099,
+ 35.799473909909906
+ ],
+ [
+ 139.28610210989012,
+ 35.799473909909906
+ ],
+ [
+ 139.28610210989012,
+ 35.79965409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaHokima.421.1",
+ "name": "北保木間",
+ "latitude": 35.802492,
+ "longitude": 139.801503,
+ "polygon": [
+ [
+ 139.8013931098901,
+ 35.80258209009009
+ ],
+ [
+ 139.80161289010988,
+ 35.80258209009009
+ ],
+ [
+ 139.80161289010988,
+ 35.80240190990991
+ ],
+ [
+ 139.8013931098901,
+ 35.80240190990991
+ ],
+ [
+ 139.8013931098901,
+ 35.80258209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaHokima.421.2",
+ "name": "北保木間",
+ "latitude": 35.803436,
+ "longitude": 139.801781,
+ "polygon": [
+ [
+ 139.80167110989012,
+ 35.80352609009009
+ ],
+ [
+ 139.8018908901099,
+ 35.80352609009009
+ ],
+ [
+ 139.8018908901099,
+ 35.80334590990991
+ ],
+ [
+ 139.80167110989012,
+ 35.80334590990991
+ ],
+ [
+ 139.80167110989012,
+ 35.80352609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kichijoji.422.1",
+ "name": "吉祥寺前",
+ "latitude": 35.727577,
+ "longitude": 139.752333,
+ "polygon": [
+ [
+ 139.7522231098901,
+ 35.72766709009009
+ ],
+ [
+ 139.75244289010988,
+ 35.72766709009009
+ ],
+ [
+ 139.75244289010988,
+ 35.727486909909906
+ ],
+ [
+ 139.7522231098901,
+ 35.727486909909906
+ ],
+ [
+ 139.7522231098901,
+ 35.72766709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kichijoji.422.2",
+ "name": "吉祥寺前",
+ "latitude": 35.726985,
+ "longitude": 139.753047,
+ "polygon": [
+ [
+ 139.75293710989013,
+ 35.72707509009009
+ ],
+ [
+ 139.7531568901099,
+ 35.72707509009009
+ ],
+ [
+ 139.7531568901099,
+ 35.72689490990991
+ ],
+ [
+ 139.75293710989013,
+ 35.72689490990991
+ ],
+ [
+ 139.75293710989013,
+ 35.72707509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSumidaKaikan.423.1",
+ "name": "東墨田会館前",
+ "latitude": 35.72128,
+ "longitude": 139.832465,
+ "polygon": [
+ [
+ 139.83235510989013,
+ 35.72137009009009
+ ],
+ [
+ 139.8325748901099,
+ 35.72137009009009
+ ],
+ [
+ 139.8325748901099,
+ 35.72118990990991
+ ],
+ [
+ 139.83235510989013,
+ 35.72118990990991
+ ],
+ [
+ 139.83235510989013,
+ 35.72137009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSumidaKaikan.423.2",
+ "name": "東墨田会館前",
+ "latitude": 35.721073,
+ "longitude": 139.832435,
+ "polygon": [
+ [
+ 139.83232510989012,
+ 35.72116309009009
+ ],
+ [
+ 139.8325448901099,
+ 35.72116309009009
+ ],
+ [
+ 139.8325448901099,
+ 35.72098290990991
+ ],
+ [
+ 139.83232510989012,
+ 35.72098290990991
+ ],
+ [
+ 139.83232510989012,
+ 35.72116309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaStation.425.1",
+ "name": "木場駅前",
+ "latitude": 35.66987,
+ "longitude": 139.805787,
+ "polygon": [
+ [
+ 139.80567710989013,
+ 35.66996009009009
+ ],
+ [
+ 139.8058968901099,
+ 35.66996009009009
+ ],
+ [
+ 139.8058968901099,
+ 35.66977990990991
+ ],
+ [
+ 139.80567710989013,
+ 35.66977990990991
+ ],
+ [
+ 139.80567710989013,
+ 35.66996009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaNichome.426.2",
+ "name": "木場二丁目",
+ "latitude": 35.669632,
+ "longitude": 139.803514,
+ "polygon": [
+ [
+ 139.80340410989012,
+ 35.66972209009009
+ ],
+ [
+ 139.8036238901099,
+ 35.66972209009009
+ ],
+ [
+ 139.8036238901099,
+ 35.66954190990991
+ ],
+ [
+ 139.80340410989012,
+ 35.66954190990991
+ ],
+ [
+ 139.80340410989012,
+ 35.66972209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaStation.425.2",
+ "name": "木場駅前",
+ "latitude": 35.67067,
+ "longitude": 139.806174,
+ "polygon": [
+ [
+ 139.80606410989012,
+ 35.67076009009009
+ ],
+ [
+ 139.80628389010988,
+ 35.67076009009009
+ ],
+ [
+ 139.80628389010988,
+ 35.67057990990991
+ ],
+ [
+ 139.80606410989012,
+ 35.67057990990991
+ ],
+ [
+ 139.80606410989012,
+ 35.67076009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaStation.425.3",
+ "name": "木場駅前",
+ "latitude": 35.669486,
+ "longitude": 139.806468,
+ "polygon": [
+ [
+ 139.8063581098901,
+ 35.66957609009009
+ ],
+ [
+ 139.80657789010988,
+ 35.66957609009009
+ ],
+ [
+ 139.80657789010988,
+ 35.66939590990991
+ ],
+ [
+ 139.8063581098901,
+ 35.66939590990991
+ ],
+ [
+ 139.8063581098901,
+ 35.66957609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaStation.425.4",
+ "name": "木場駅前",
+ "latitude": 35.669304,
+ "longitude": 139.806562,
+ "polygon": [
+ [
+ 139.80645210989013,
+ 35.66939409009009
+ ],
+ [
+ 139.8066718901099,
+ 35.66939409009009
+ ],
+ [
+ 139.8066718901099,
+ 35.66921390990991
+ ],
+ [
+ 139.80645210989013,
+ 35.66921390990991
+ ],
+ [
+ 139.80645210989013,
+ 35.66939409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaStation.425.5",
+ "name": "木場駅前",
+ "latitude": 35.669565,
+ "longitude": 139.805087,
+ "polygon": [
+ [
+ 139.8049771098901,
+ 35.66965509009009
+ ],
+ [
+ 139.80519689010987,
+ 35.66965509009009
+ ],
+ [
+ 139.80519689010987,
+ 35.66947490990991
+ ],
+ [
+ 139.8049771098901,
+ 35.66947490990991
+ ],
+ [
+ 139.8049771098901,
+ 35.66965509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaNichome.426.1",
+ "name": "木場二丁目",
+ "latitude": 35.66942,
+ "longitude": 139.803438,
+ "polygon": [
+ [
+ 139.80332810989012,
+ 35.66951009009009
+ ],
+ [
+ 139.80354789010988,
+ 35.66951009009009
+ ],
+ [
+ 139.80354789010988,
+ 35.66932990990991
+ ],
+ [
+ 139.80332810989012,
+ 35.66932990990991
+ ],
+ [
+ 139.80332810989012,
+ 35.66951009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaNichome.426.3",
+ "name": "木場二丁目",
+ "latitude": 35.6697,
+ "longitude": 139.803516,
+ "polygon": [
+ [
+ 139.80340610989012,
+ 35.66979009009009
+ ],
+ [
+ 139.80362589010988,
+ 35.66979009009009
+ ],
+ [
+ 139.80362589010988,
+ 35.66960990990991
+ ],
+ [
+ 139.80340610989012,
+ 35.66960990990991
+ ],
+ [
+ 139.80340610989012,
+ 35.66979009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaYonchome.428.2",
+ "name": "木場四丁目",
+ "latitude": 35.674822,
+ "longitude": 139.80697,
+ "polygon": [
+ [
+ 139.80686010989012,
+ 35.67491209009009
+ ],
+ [
+ 139.8070798901099,
+ 35.67491209009009
+ ],
+ [
+ 139.8070798901099,
+ 35.67473190990991
+ ],
+ [
+ 139.80686010989012,
+ 35.67473190990991
+ ],
+ [
+ 139.80686010989012,
+ 35.67491209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaRokuchomeGyazaria.429.1",
+ "name": "木場六丁目ギャザリア前",
+ "latitude": 35.667518,
+ "longitude": 139.805111,
+ "polygon": [
+ [
+ 139.80500110989013,
+ 35.66760809009009
+ ],
+ [
+ 139.8052208901099,
+ 35.66760809009009
+ ],
+ [
+ 139.8052208901099,
+ 35.66742790990991
+ ],
+ [
+ 139.80500110989013,
+ 35.66742790990991
+ ],
+ [
+ 139.80500110989013,
+ 35.66760809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaRokuchomeGyazaria.429.2",
+ "name": "木場六丁目ギャザリア前",
+ "latitude": 35.667856,
+ "longitude": 139.805479,
+ "polygon": [
+ [
+ 139.8053691098901,
+ 35.66794609009009
+ ],
+ [
+ 139.80558889010987,
+ 35.66794609009009
+ ],
+ [
+ 139.80558889010987,
+ 35.66776590990991
+ ],
+ [
+ 139.8053691098901,
+ 35.66776590990991
+ ],
+ [
+ 139.8053691098901,
+ 35.66794609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaRokuchomeGyazaria.429.3",
+ "name": "木場六丁目ギャザリア前",
+ "latitude": 35.667864,
+ "longitude": 139.805551,
+ "polygon": [
+ [
+ 139.80544110989013,
+ 35.66795409009009
+ ],
+ [
+ 139.8056608901099,
+ 35.66795409009009
+ ],
+ [
+ 139.8056608901099,
+ 35.66777390990991
+ ],
+ [
+ 139.80544110989013,
+ 35.66777390990991
+ ],
+ [
+ 139.80544110989013,
+ 35.66795409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyuKasaibashi.430.1",
+ "name": "旧葛西橋",
+ "latitude": 35.67487,
+ "longitude": 139.840494,
+ "polygon": [
+ [
+ 139.84038410989012,
+ 35.67496009009009
+ ],
+ [
+ 139.8406038901099,
+ 35.67496009009009
+ ],
+ [
+ 139.8406038901099,
+ 35.67477990990991
+ ],
+ [
+ 139.84038410989012,
+ 35.67477990990991
+ ],
+ [
+ 139.84038410989012,
+ 35.67496009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyuKasaibashi.430.2",
+ "name": "旧葛西橋",
+ "latitude": 35.675376,
+ "longitude": 139.840033,
+ "polygon": [
+ [
+ 139.83992310989012,
+ 35.67546609009009
+ ],
+ [
+ 139.8401428901099,
+ 35.67546609009009
+ ],
+ [
+ 139.8401428901099,
+ 35.67528590990991
+ ],
+ [
+ 139.83992310989012,
+ 35.67528590990991
+ ],
+ [
+ 139.83992310989012,
+ 35.67546609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyuKasaibashi.430.3",
+ "name": "旧葛西橋",
+ "latitude": 35.674959,
+ "longitude": 139.840593,
+ "polygon": [
+ [
+ 139.84048310989013,
+ 35.67504909009009
+ ],
+ [
+ 139.8407028901099,
+ 35.67504909009009
+ ],
+ [
+ 139.8407028901099,
+ 35.67486890990991
+ ],
+ [
+ 139.84048310989013,
+ 35.67486890990991
+ ],
+ [
+ 139.84048310989013,
+ 35.67504909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyuKasaibashi.430.4",
+ "name": "旧葛西橋",
+ "latitude": 35.675486,
+ "longitude": 139.839236,
+ "polygon": [
+ [
+ 139.83912610989012,
+ 35.67557609009009
+ ],
+ [
+ 139.83934589010988,
+ 35.67557609009009
+ ],
+ [
+ 139.83934589010988,
+ 35.67539590990991
+ ],
+ [
+ 139.83912610989012,
+ 35.67539590990991
+ ],
+ [
+ 139.83912610989012,
+ 35.67557609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyuKasaibashi.430.5",
+ "name": "旧葛西橋",
+ "latitude": 35.675453,
+ "longitude": 139.840908,
+ "polygon": [
+ [
+ 139.84079810989013,
+ 35.67554309009009
+ ],
+ [
+ 139.8410178901099,
+ 35.67554309009009
+ ],
+ [
+ 139.8410178901099,
+ 35.67536290990991
+ ],
+ [
+ 139.84079810989013,
+ 35.67536290990991
+ ],
+ [
+ 139.84079810989013,
+ 35.67554309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kyudo.431.1",
+ "name": "久道",
+ "latitude": 35.830004,
+ "longitude": 139.237465,
+ "polygon": [
+ [
+ 139.2373551098901,
+ 35.83009409009009
+ ],
+ [
+ 139.23757489010987,
+ 35.83009409009009
+ ],
+ [
+ 139.23757489010987,
+ 35.82991390990991
+ ],
+ [
+ 139.2373551098901,
+ 35.82991390990991
+ ],
+ [
+ 139.2373551098901,
+ 35.83009409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kyudo.431.2",
+ "name": "久道",
+ "latitude": 35.830059,
+ "longitude": 139.237737,
+ "polygon": [
+ [
+ 139.23762710989013,
+ 35.83014909009009
+ ],
+ [
+ 139.2378468901099,
+ 35.83014909009009
+ ],
+ [
+ 139.2378468901099,
+ 35.82996890990991
+ ],
+ [
+ 139.23762710989013,
+ 35.82996890990991
+ ],
+ [
+ 139.23762710989013,
+ 35.83014909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosumiItchome.439.2",
+ "name": "清澄一丁目",
+ "latitude": 35.681893,
+ "longitude": 139.795162,
+ "polygon": [
+ [
+ 139.79505210989012,
+ 35.68198309009009
+ ],
+ [
+ 139.7952718901099,
+ 35.68198309009009
+ ],
+ [
+ 139.7952718901099,
+ 35.68180290990991
+ ],
+ [
+ 139.79505210989012,
+ 35.68180290990991
+ ],
+ [
+ 139.79505210989012,
+ 35.68198309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyudoKosaten.432.1",
+ "name": "旧道交差点",
+ "latitude": 35.792732,
+ "longitude": 139.798593,
+ "polygon": [
+ [
+ 139.79848310989013,
+ 35.79282209009009
+ ],
+ [
+ 139.7987028901099,
+ 35.79282209009009
+ ],
+ [
+ 139.7987028901099,
+ 35.79264190990991
+ ],
+ [
+ 139.79848310989013,
+ 35.79264190990991
+ ],
+ [
+ 139.79848310989013,
+ 35.79282209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyokawaNichome.436.4",
+ "name": "清川二丁目",
+ "latitude": 35.725936,
+ "longitude": 139.800851,
+ "polygon": [
+ [
+ 139.8007411098901,
+ 35.72602609009009
+ ],
+ [
+ 139.80096089010988,
+ 35.72602609009009
+ ],
+ [
+ 139.80096089010988,
+ 35.72584590990991
+ ],
+ [
+ 139.8007411098901,
+ 35.72584590990991
+ ],
+ [
+ 139.8007411098901,
+ 35.72602609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyudoKosaten.432.2",
+ "name": "旧道交差点",
+ "latitude": 35.792906,
+ "longitude": 139.799157,
+ "polygon": [
+ [
+ 139.79904710989013,
+ 35.79299609009009
+ ],
+ [
+ 139.7992668901099,
+ 35.79299609009009
+ ],
+ [
+ 139.7992668901099,
+ 35.79281590990991
+ ],
+ [
+ 139.79904710989013,
+ 35.79281590990991
+ ],
+ [
+ 139.79904710989013,
+ 35.79299609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyudoKosaten.432.3",
+ "name": "旧道交差点",
+ "latitude": 35.792732,
+ "longitude": 139.798572,
+ "polygon": [
+ [
+ 139.79846210989012,
+ 35.79282209009009
+ ],
+ [
+ 139.7986818901099,
+ 35.79282209009009
+ ],
+ [
+ 139.7986818901099,
+ 35.79264190990991
+ ],
+ [
+ 139.79846210989012,
+ 35.79264190990991
+ ],
+ [
+ 139.79846210989012,
+ 35.79282209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyudoKosaten.432.4",
+ "name": "旧道交差点",
+ "latitude": 35.792906,
+ "longitude": 139.799179,
+ "polygon": [
+ [
+ 139.79906910989013,
+ 35.79299609009009
+ ],
+ [
+ 139.7992888901099,
+ 35.79299609009009
+ ],
+ [
+ 139.7992888901099,
+ 35.79281590990991
+ ],
+ [
+ 139.79906910989013,
+ 35.79281590990991
+ ],
+ [
+ 139.79906910989013,
+ 35.79299609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyodoHakubutsukanIriguchi.433.1",
+ "name": "郷土博物館入口",
+ "latitude": 35.78262,
+ "longitude": 139.254993,
+ "polygon": [
+ [
+ 139.25488310989013,
+ 35.78271009009009
+ ],
+ [
+ 139.2551028901099,
+ 35.78271009009009
+ ],
+ [
+ 139.2551028901099,
+ 35.78252990990991
+ ],
+ [
+ 139.25488310989013,
+ 35.78252990990991
+ ],
+ [
+ 139.25488310989013,
+ 35.78271009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyodoHakubutsukanIriguchi.433.2",
+ "name": "郷土博物館入口",
+ "latitude": 35.78255,
+ "longitude": 139.255249,
+ "polygon": [
+ [
+ 139.2551391098901,
+ 35.78264009009009
+ ],
+ [
+ 139.25535889010987,
+ 35.78264009009009
+ ],
+ [
+ 139.25535889010987,
+ 35.78245990990991
+ ],
+ [
+ 139.2551391098901,
+ 35.78245990990991
+ ],
+ [
+ 139.2551391098901,
+ 35.78264009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kiyokawa.435.1",
+ "name": "清川",
+ "latitude": 35.728886,
+ "longitude": 139.803387,
+ "polygon": [
+ [
+ 139.8032771098901,
+ 35.72897609009009
+ ],
+ [
+ 139.80349689010987,
+ 35.72897609009009
+ ],
+ [
+ 139.80349689010987,
+ 35.72879590990991
+ ],
+ [
+ 139.8032771098901,
+ 35.72879590990991
+ ],
+ [
+ 139.8032771098901,
+ 35.72897609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kiyokawa.435.2",
+ "name": "清川",
+ "latitude": 35.72871,
+ "longitude": 139.803412,
+ "polygon": [
+ [
+ 139.80330210989013,
+ 35.72880009009009
+ ],
+ [
+ 139.8035218901099,
+ 35.72880009009009
+ ],
+ [
+ 139.8035218901099,
+ 35.72861990990991
+ ],
+ [
+ 139.80330210989013,
+ 35.72861990990991
+ ],
+ [
+ 139.80330210989013,
+ 35.72880009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyokawaNichome.436.1",
+ "name": "清川二丁目",
+ "latitude": 35.725795,
+ "longitude": 139.801132,
+ "polygon": [
+ [
+ 139.8010221098901,
+ 35.72588509009009
+ ],
+ [
+ 139.80124189010988,
+ 35.72588509009009
+ ],
+ [
+ 139.80124189010988,
+ 35.72570490990991
+ ],
+ [
+ 139.8010221098901,
+ 35.72570490990991
+ ],
+ [
+ 139.8010221098901,
+ 35.72588509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyokawaNichome.436.2",
+ "name": "清川二丁目",
+ "latitude": 35.726739,
+ "longitude": 139.80068,
+ "polygon": [
+ [
+ 139.80057010989012,
+ 35.72682909009009
+ ],
+ [
+ 139.80078989010988,
+ 35.72682909009009
+ ],
+ [
+ 139.80078989010988,
+ 35.72664890990991
+ ],
+ [
+ 139.80057010989012,
+ 35.72664890990991
+ ],
+ [
+ 139.80057010989012,
+ 35.72682909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyokawaNichome.436.3",
+ "name": "清川二丁目",
+ "latitude": 35.726003,
+ "longitude": 139.800488,
+ "polygon": [
+ [
+ 139.80037810989012,
+ 35.72609309009009
+ ],
+ [
+ 139.80059789010988,
+ 35.72609309009009
+ ],
+ [
+ 139.80059789010988,
+ 35.72591290990991
+ ],
+ [
+ 139.80037810989012,
+ 35.72591290990991
+ ],
+ [
+ 139.80037810989012,
+ 35.72609309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kiyosubashi.437.1",
+ "name": "清洲橋",
+ "latitude": 35.684082,
+ "longitude": 139.78941,
+ "polygon": [
+ [
+ 139.78930010989012,
+ 35.68417209009009
+ ],
+ [
+ 139.7895198901099,
+ 35.68417209009009
+ ],
+ [
+ 139.7895198901099,
+ 35.683991909909906
+ ],
+ [
+ 139.78930010989012,
+ 35.683991909909906
+ ],
+ [
+ 139.78930010989012,
+ 35.68417209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kiyosubashi.437.2",
+ "name": "清洲橋",
+ "latitude": 35.684486,
+ "longitude": 139.789309,
+ "polygon": [
+ [
+ 139.78919910989012,
+ 35.68457609009009
+ ],
+ [
+ 139.78941889010989,
+ 35.68457609009009
+ ],
+ [
+ 139.78941889010989,
+ 35.68439590990991
+ ],
+ [
+ 139.78919910989012,
+ 35.68439590990991
+ ],
+ [
+ 139.78919910989012,
+ 35.68457609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosumiTeien.438.1",
+ "name": "清澄庭園前",
+ "latitude": 35.680933,
+ "longitude": 139.798818,
+ "polygon": [
+ [
+ 139.79870810989013,
+ 35.68102309009009
+ ],
+ [
+ 139.7989278901099,
+ 35.68102309009009
+ ],
+ [
+ 139.7989278901099,
+ 35.68084290990991
+ ],
+ [
+ 139.79870810989013,
+ 35.68084290990991
+ ],
+ [
+ 139.79870810989013,
+ 35.68102309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosumiTeien.438.2",
+ "name": "清澄庭園前",
+ "latitude": 35.680319,
+ "longitude": 139.799118,
+ "polygon": [
+ [
+ 139.7990081098901,
+ 35.68040909009009
+ ],
+ [
+ 139.79922789010988,
+ 35.68040909009009
+ ],
+ [
+ 139.79922789010988,
+ 35.68022890990991
+ ],
+ [
+ 139.7990081098901,
+ 35.68022890990991
+ ],
+ [
+ 139.7990081098901,
+ 35.68040909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosumiItchome.439.1",
+ "name": "清澄一丁目",
+ "latitude": 35.681773,
+ "longitude": 139.795494,
+ "polygon": [
+ [
+ 139.7953841098901,
+ 35.68186309009009
+ ],
+ [
+ 139.79560389010987,
+ 35.68186309009009
+ ],
+ [
+ 139.79560389010987,
+ 35.68168290990991
+ ],
+ [
+ 139.7953841098901,
+ 35.68168290990991
+ ],
+ [
+ 139.7953841098901,
+ 35.68186309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosumiShirakawaStation.440.1",
+ "name": "清澄白河駅前",
+ "latitude": 35.682577,
+ "longitude": 139.798834,
+ "polygon": [
+ [
+ 139.79872410989012,
+ 35.68266709009009
+ ],
+ [
+ 139.79894389010988,
+ 35.68266709009009
+ ],
+ [
+ 139.79894389010988,
+ 35.68248690990991
+ ],
+ [
+ 139.79872410989012,
+ 35.68248690990991
+ ],
+ [
+ 139.79872410989012,
+ 35.68266709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosumiShirakawaStation.440.2",
+ "name": "清澄白河駅前",
+ "latitude": 35.682424,
+ "longitude": 139.798629,
+ "polygon": [
+ [
+ 139.79851910989012,
+ 35.68251409009009
+ ],
+ [
+ 139.7987388901099,
+ 35.68251409009009
+ ],
+ [
+ 139.7987388901099,
+ 35.68233390990991
+ ],
+ [
+ 139.79851910989012,
+ 35.68233390990991
+ ],
+ [
+ 139.79851910989012,
+ 35.68251409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosumiShirakawaStation.440.3",
+ "name": "清澄白河駅前",
+ "latitude": 35.682062,
+ "longitude": 139.797905,
+ "polygon": [
+ [
+ 139.7977951098901,
+ 35.68215209009009
+ ],
+ [
+ 139.79801489010987,
+ 35.68215209009009
+ ],
+ [
+ 139.79801489010987,
+ 35.68197190990991
+ ],
+ [
+ 139.7977951098901,
+ 35.68197190990991
+ ],
+ [
+ 139.7977951098901,
+ 35.68215209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosumiShirakawaStation.440.4",
+ "name": "清澄白河駅前",
+ "latitude": 35.681939,
+ "longitude": 139.799117,
+ "polygon": [
+ [
+ 139.7990071098901,
+ 35.68202909009009
+ ],
+ [
+ 139.79922689010988,
+ 35.68202909009009
+ ],
+ [
+ 139.79922689010988,
+ 35.68184890990991
+ ],
+ [
+ 139.7990071098901,
+ 35.68184890990991
+ ],
+ [
+ 139.7990071098901,
+ 35.68202909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshiKoen.441.1",
+ "name": "錦糸公園前",
+ "latitude": 35.699229,
+ "longitude": 139.814753,
+ "polygon": [
+ [
+ 139.8146431098901,
+ 35.69931909009009
+ ],
+ [
+ 139.81486289010988,
+ 35.69931909009009
+ ],
+ [
+ 139.81486289010988,
+ 35.69913890990991
+ ],
+ [
+ 139.8146431098901,
+ 35.69913890990991
+ ],
+ [
+ 139.8146431098901,
+ 35.69931909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshiKoen.441.2",
+ "name": "錦糸公園前",
+ "latitude": 35.69933,
+ "longitude": 139.814946,
+ "polygon": [
+ [
+ 139.8148361098901,
+ 35.69942009009009
+ ],
+ [
+ 139.81505589010987,
+ 35.69942009009009
+ ],
+ [
+ 139.81505589010987,
+ 35.69923990990991
+ ],
+ [
+ 139.8148361098901,
+ 35.69923990990991
+ ],
+ [
+ 139.8148361098901,
+ 35.69942009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GyoranZakaShita.444.5",
+ "name": "魚籃坂下",
+ "latitude": 35.644559,
+ "longitude": 139.736126,
+ "polygon": [
+ [
+ 139.73601610989013,
+ 35.64464909009009
+ ],
+ [
+ 139.7362358901099,
+ 35.64464909009009
+ ],
+ [
+ 139.7362358901099,
+ 35.64446890990991
+ ],
+ [
+ 139.73601610989013,
+ 35.64446890990991
+ ],
+ [
+ 139.73601610989013,
+ 35.64464909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.1",
+ "name": "錦糸町駅前",
+ "latitude": 35.695894,
+ "longitude": 139.814529,
+ "polygon": [
+ [
+ 139.8144191098901,
+ 35.69598409009009
+ ],
+ [
+ 139.81463889010988,
+ 35.69598409009009
+ ],
+ [
+ 139.81463889010988,
+ 35.69580390990991
+ ],
+ [
+ 139.8144191098901,
+ 35.69580390990991
+ ],
+ [
+ 139.8144191098901,
+ 35.69598409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.2",
+ "name": "錦糸町駅前",
+ "latitude": 35.695984,
+ "longitude": 139.814117,
+ "polygon": [
+ [
+ 139.81400710989013,
+ 35.69607409009009
+ ],
+ [
+ 139.8142268901099,
+ 35.69607409009009
+ ],
+ [
+ 139.8142268901099,
+ 35.69589390990991
+ ],
+ [
+ 139.81400710989013,
+ 35.69589390990991
+ ],
+ [
+ 139.81400710989013,
+ 35.69607409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.3",
+ "name": "錦糸町駅前",
+ "latitude": 35.69589,
+ "longitude": 139.814296,
+ "polygon": [
+ [
+ 139.81418610989013,
+ 35.69598009009009
+ ],
+ [
+ 139.8144058901099,
+ 35.69598009009009
+ ],
+ [
+ 139.8144058901099,
+ 35.69579990990991
+ ],
+ [
+ 139.81418610989013,
+ 35.69579990990991
+ ],
+ [
+ 139.81418610989013,
+ 35.69598009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.4",
+ "name": "錦糸町駅前",
+ "latitude": 35.695799,
+ "longitude": 139.814367,
+ "polygon": [
+ [
+ 139.81425710989012,
+ 35.69588909009009
+ ],
+ [
+ 139.8144768901099,
+ 35.69588909009009
+ ],
+ [
+ 139.8144768901099,
+ 35.69570890990991
+ ],
+ [
+ 139.81425710989012,
+ 35.69570890990991
+ ],
+ [
+ 139.81425710989012,
+ 35.69588909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.5",
+ "name": "錦糸町駅前",
+ "latitude": 35.695786,
+ "longitude": 139.81425,
+ "polygon": [
+ [
+ 139.8141401098901,
+ 35.69587609009009
+ ],
+ [
+ 139.81435989010987,
+ 35.69587609009009
+ ],
+ [
+ 139.81435989010987,
+ 35.69569590990991
+ ],
+ [
+ 139.8141401098901,
+ 35.69569590990991
+ ],
+ [
+ 139.8141401098901,
+ 35.69587609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.6",
+ "name": "錦糸町駅前",
+ "latitude": 35.695721,
+ "longitude": 139.814407,
+ "polygon": [
+ [
+ 139.8142971098901,
+ 35.69581109009009
+ ],
+ [
+ 139.81451689010987,
+ 35.69581109009009
+ ],
+ [
+ 139.81451689010987,
+ 35.69563090990991
+ ],
+ [
+ 139.8142971098901,
+ 35.69563090990991
+ ],
+ [
+ 139.8142971098901,
+ 35.69581109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.7",
+ "name": "錦糸町駅前",
+ "latitude": 35.695709,
+ "longitude": 139.814201,
+ "polygon": [
+ [
+ 139.81409110989011,
+ 35.69579909009009
+ ],
+ [
+ 139.81431089010988,
+ 35.69579909009009
+ ],
+ [
+ 139.81431089010988,
+ 35.69561890990991
+ ],
+ [
+ 139.81409110989011,
+ 35.69561890990991
+ ],
+ [
+ 139.81409110989011,
+ 35.69579909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.8",
+ "name": "錦糸町駅前",
+ "latitude": 35.695377,
+ "longitude": 139.814114,
+ "polygon": [
+ [
+ 139.8140041098901,
+ 35.69546709009009
+ ],
+ [
+ 139.81422389010987,
+ 35.69546709009009
+ ],
+ [
+ 139.81422389010987,
+ 35.69528690990991
+ ],
+ [
+ 139.8140041098901,
+ 35.69528690990991
+ ],
+ [
+ 139.8140041098901,
+ 35.69546709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.10",
+ "name": "錦糸町駅前",
+ "latitude": 35.694996,
+ "longitude": 139.815258,
+ "polygon": [
+ [
+ 139.81514810989012,
+ 35.69508609009009
+ ],
+ [
+ 139.81536789010988,
+ 35.69508609009009
+ ],
+ [
+ 139.81536789010988,
+ 35.69490590990991
+ ],
+ [
+ 139.81514810989012,
+ 35.69490590990991
+ ],
+ [
+ 139.81514810989012,
+ 35.69508609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.11",
+ "name": "錦糸町駅前",
+ "latitude": 35.697305,
+ "longitude": 139.813687,
+ "polygon": [
+ [
+ 139.8135771098901,
+ 35.69739509009009
+ ],
+ [
+ 139.81379689010987,
+ 35.69739509009009
+ ],
+ [
+ 139.81379689010987,
+ 35.69721490990991
+ ],
+ [
+ 139.8135771098901,
+ 35.69721490990991
+ ],
+ [
+ 139.8135771098901,
+ 35.69739509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.12",
+ "name": "錦糸町駅前",
+ "latitude": 35.697298,
+ "longitude": 139.813495,
+ "polygon": [
+ [
+ 139.8133851098901,
+ 35.697388090090094
+ ],
+ [
+ 139.81360489010987,
+ 35.697388090090094
+ ],
+ [
+ 139.81360489010987,
+ 35.69720790990991
+ ],
+ [
+ 139.8133851098901,
+ 35.69720790990991
+ ],
+ [
+ 139.8133851098901,
+ 35.697388090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.13",
+ "name": "錦糸町駅前",
+ "latitude": 35.697447,
+ "longitude": 139.813314,
+ "polygon": [
+ [
+ 139.8132041098901,
+ 35.69753709009009
+ ],
+ [
+ 139.81342389010987,
+ 35.69753709009009
+ ],
+ [
+ 139.81342389010987,
+ 35.69735690990991
+ ],
+ [
+ 139.8132041098901,
+ 35.69735690990991
+ ],
+ [
+ 139.8132041098901,
+ 35.69753709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.14",
+ "name": "錦糸町駅前",
+ "latitude": 35.695761,
+ "longitude": 139.813873,
+ "polygon": [
+ [
+ 139.81376310989012,
+ 35.69585109009009
+ ],
+ [
+ 139.81398289010988,
+ 35.69585109009009
+ ],
+ [
+ 139.81398289010988,
+ 35.69567090990991
+ ],
+ [
+ 139.81376310989012,
+ 35.69567090990991
+ ],
+ [
+ 139.81376310989012,
+ 35.69585109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KinshichoStation.442.15",
+ "name": "錦糸町駅前",
+ "latitude": 35.697511,
+ "longitude": 139.813922,
+ "polygon": [
+ [
+ 139.8138121098901,
+ 35.69760109009009
+ ],
+ [
+ 139.81403189010987,
+ 35.69760109009009
+ ],
+ [
+ 139.81403189010987,
+ 35.69742090990991
+ ],
+ [
+ 139.8138121098901,
+ 35.69742090990991
+ ],
+ [
+ 139.8138121098901,
+ 35.69760109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kinshibori.443.1",
+ "name": "錦糸堀",
+ "latitude": 35.694386,
+ "longitude": 139.815312,
+ "polygon": [
+ [
+ 139.81520210989012,
+ 35.69447609009009
+ ],
+ [
+ 139.8154218901099,
+ 35.69447609009009
+ ],
+ [
+ 139.8154218901099,
+ 35.69429590990991
+ ],
+ [
+ 139.81520210989012,
+ 35.69429590990991
+ ],
+ [
+ 139.81520210989012,
+ 35.69447609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GyoranZakaShita.444.4",
+ "name": "魚籃坂下",
+ "latitude": 35.644574,
+ "longitude": 139.735933,
+ "polygon": [
+ [
+ 139.7358231098901,
+ 35.64466409009009
+ ],
+ [
+ 139.73604289010987,
+ 35.64466409009009
+ ],
+ [
+ 139.73604289010987,
+ 35.64448390990991
+ ],
+ [
+ 139.7358231098901,
+ 35.64448390990991
+ ],
+ [
+ 139.7358231098901,
+ 35.64466409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GyoranZakaShita.444.6",
+ "name": "魚籃坂下",
+ "latitude": 35.644501,
+ "longitude": 139.737121,
+ "polygon": [
+ [
+ 139.73701110989012,
+ 35.64459109009009
+ ],
+ [
+ 139.73723089010988,
+ 35.64459109009009
+ ],
+ [
+ 139.73723089010988,
+ 35.64441090990991
+ ],
+ [
+ 139.73701110989012,
+ 35.64441090990991
+ ],
+ [
+ 139.73701110989012,
+ 35.64459109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GyoranZakaShita.444.7",
+ "name": "魚籃坂下",
+ "latitude": 35.644197,
+ "longitude": 139.736996,
+ "polygon": [
+ [
+ 139.73688610989012,
+ 35.64428709009009
+ ],
+ [
+ 139.7371058901099,
+ 35.64428709009009
+ ],
+ [
+ 139.7371058901099,
+ 35.64410690990991
+ ],
+ [
+ 139.73688610989012,
+ 35.64410690990991
+ ],
+ [
+ 139.73688610989012,
+ 35.64428709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GinzaNishiRokuchome.445.3",
+ "name": "銀座西六丁目",
+ "latitude": 35.670877,
+ "longitude": 139.761623,
+ "polygon": [
+ [
+ 139.7615131098901,
+ 35.67096709009009
+ ],
+ [
+ 139.76173289010987,
+ 35.67096709009009
+ ],
+ [
+ 139.76173289010987,
+ 35.67078690990991
+ ],
+ [
+ 139.7615131098901,
+ 35.67078690990991
+ ],
+ [
+ 139.7615131098901,
+ 35.67096709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GinzaNishiRokuchome.445.4",
+ "name": "銀座西六丁目",
+ "latitude": 35.67099,
+ "longitude": 139.76143,
+ "polygon": [
+ [
+ 139.7613201098901,
+ 35.67108009009009
+ ],
+ [
+ 139.76153989010987,
+ 35.67108009009009
+ ],
+ [
+ 139.76153989010987,
+ 35.67089990990991
+ ],
+ [
+ 139.7613201098901,
+ 35.67089990990991
+ ],
+ [
+ 139.7613201098901,
+ 35.67108009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GinzaYonchome.448.5",
+ "name": "銀座四丁目",
+ "latitude": 35.670244,
+ "longitude": 139.766461,
+ "polygon": [
+ [
+ 139.7663511098901,
+ 35.67033409009009
+ ],
+ [
+ 139.76657089010988,
+ 35.67033409009009
+ ],
+ [
+ 139.76657089010988,
+ 35.67015390990991
+ ],
+ [
+ 139.7663511098901,
+ 35.67015390990991
+ ],
+ [
+ 139.7663511098901,
+ 35.67033409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KudanUe.451.1",
+ "name": "九段上",
+ "latitude": 35.694133,
+ "longitude": 139.745619,
+ "polygon": [
+ [
+ 139.74550910989012,
+ 35.69422309009009
+ ],
+ [
+ 139.7457288901099,
+ 35.69422309009009
+ ],
+ [
+ 139.7457288901099,
+ 35.69404290990991
+ ],
+ [
+ 139.74550910989012,
+ 35.69404290990991
+ ],
+ [
+ 139.74550910989012,
+ 35.69422309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GinzaYonchome.448.6",
+ "name": "銀座四丁目",
+ "latitude": 35.67038,
+ "longitude": 139.766317,
+ "polygon": [
+ [
+ 139.7662071098901,
+ 35.67047009009009
+ ],
+ [
+ 139.76642689010987,
+ 35.67047009009009
+ ],
+ [
+ 139.76642689010987,
+ 35.67028990990991
+ ],
+ [
+ 139.7662071098901,
+ 35.67028990990991
+ ],
+ [
+ 139.7662071098901,
+ 35.67047009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GinzaYonchome.448.7",
+ "name": "銀座四丁目",
+ "latitude": 35.670568,
+ "longitude": 139.76569,
+ "polygon": [
+ [
+ 139.76558010989012,
+ 35.67065809009009
+ ],
+ [
+ 139.7657998901099,
+ 35.67065809009009
+ ],
+ [
+ 139.7657998901099,
+ 35.67047790990991
+ ],
+ [
+ 139.76558010989012,
+ 35.67047790990991
+ ],
+ [
+ 139.76558010989012,
+ 35.67065809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GinzaYonchome.448.8",
+ "name": "銀座四丁目",
+ "latitude": 35.670623,
+ "longitude": 139.766037,
+ "polygon": [
+ [
+ 139.76592710989013,
+ 35.67071309009009
+ ],
+ [
+ 139.7661468901099,
+ 35.67071309009009
+ ],
+ [
+ 139.7661468901099,
+ 35.67053290990991
+ ],
+ [
+ 139.76592710989013,
+ 35.67053290990991
+ ],
+ [
+ 139.76592710989013,
+ 35.67071309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GinzaRokuchome.449.5",
+ "name": "銀座六丁目",
+ "latitude": 35.669695,
+ "longitude": 139.763577,
+ "polygon": [
+ [
+ 139.76346710989012,
+ 35.66978509009009
+ ],
+ [
+ 139.76368689010988,
+ 35.66978509009009
+ ],
+ [
+ 139.76368689010988,
+ 35.66960490990991
+ ],
+ [
+ 139.76346710989012,
+ 35.66960490990991
+ ],
+ [
+ 139.76346710989012,
+ 35.66978509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GinzaRokuchome.449.6",
+ "name": "銀座六丁目",
+ "latitude": 35.669994,
+ "longitude": 139.763597,
+ "polygon": [
+ [
+ 139.76348710989012,
+ 35.67008409009009
+ ],
+ [
+ 139.7637068901099,
+ 35.67008409009009
+ ],
+ [
+ 139.7637068901099,
+ 35.66990390990991
+ ],
+ [
+ 139.76348710989012,
+ 35.66990390990991
+ ],
+ [
+ 139.76348710989012,
+ 35.67008409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KudanUe.451.2",
+ "name": "九段上",
+ "latitude": 35.693986,
+ "longitude": 139.745767,
+ "polygon": [
+ [
+ 139.74565710989012,
+ 35.69407609009009
+ ],
+ [
+ 139.74587689010988,
+ 35.69407609009009
+ ],
+ [
+ 139.74587689010988,
+ 35.69389590990991
+ ],
+ [
+ 139.74565710989012,
+ 35.69389590990991
+ ],
+ [
+ 139.74565710989012,
+ 35.69407609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kudanshita.452.1",
+ "name": "九段下",
+ "latitude": 35.695913,
+ "longitude": 139.751118,
+ "polygon": [
+ [
+ 139.7510081098901,
+ 35.69600309009009
+ ],
+ [
+ 139.75122789010987,
+ 35.69600309009009
+ ],
+ [
+ 139.75122789010987,
+ 35.69582290990991
+ ],
+ [
+ 139.7510081098901,
+ 35.69582290990991
+ ],
+ [
+ 139.7510081098901,
+ 35.69600309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kudanshita.452.2",
+ "name": "九段下",
+ "latitude": 35.695436,
+ "longitude": 139.752348,
+ "polygon": [
+ [
+ 139.75223810989013,
+ 35.69552609009009
+ ],
+ [
+ 139.7524578901099,
+ 35.69552609009009
+ ],
+ [
+ 139.7524578901099,
+ 35.69534590990991
+ ],
+ [
+ 139.75223810989013,
+ 35.69534590990991
+ ],
+ [
+ 139.75223810989013,
+ 35.69552609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kudanshita.452.3",
+ "name": "九段下",
+ "latitude": 35.695673,
+ "longitude": 139.75207,
+ "polygon": [
+ [
+ 139.75196010989012,
+ 35.69576309009009
+ ],
+ [
+ 139.7521798901099,
+ 35.69576309009009
+ ],
+ [
+ 139.7521798901099,
+ 35.69558290990991
+ ],
+ [
+ 139.75196010989012,
+ 35.69558290990991
+ ],
+ [
+ 139.75196010989012,
+ 35.69576309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KudanSanchome.453.1",
+ "name": "九段三丁目",
+ "latitude": 35.692861,
+ "longitude": 139.742611,
+ "polygon": [
+ [
+ 139.74250110989013,
+ 35.69295109009009
+ ],
+ [
+ 139.7427208901099,
+ 35.69295109009009
+ ],
+ [
+ 139.7427208901099,
+ 35.69277090990991
+ ],
+ [
+ 139.74250110989013,
+ 35.69277090990991
+ ],
+ [
+ 139.74250110989013,
+ 35.69295109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KudanSanchome.453.2",
+ "name": "九段三丁目",
+ "latitude": 35.693269,
+ "longitude": 139.743222,
+ "polygon": [
+ [
+ 139.74311210989012,
+ 35.69335909009009
+ ],
+ [
+ 139.74333189010989,
+ 35.69335909009009
+ ],
+ [
+ 139.74333189010989,
+ 35.69317890990991
+ ],
+ [
+ 139.74311210989012,
+ 35.69317890990991
+ ],
+ [
+ 139.74311210989012,
+ 35.69335909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoiwaStationIriguchi.475.1",
+ "name": "小岩駅入口",
+ "latitude": 35.724512,
+ "longitude": 139.883159,
+ "polygon": [
+ [
+ 139.88304910989012,
+ 35.72460209009009
+ ],
+ [
+ 139.8832688901099,
+ 35.72460209009009
+ ],
+ [
+ 139.8832688901099,
+ 35.72442190990991
+ ],
+ [
+ 139.88304910989012,
+ 35.72442190990991
+ ],
+ [
+ 139.88304910989012,
+ 35.72460209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kumanomae.454.2",
+ "name": "熊野前",
+ "latitude": 35.748387,
+ "longitude": 139.769838,
+ "polygon": [
+ [
+ 139.7697281098901,
+ 35.74847709009009
+ ],
+ [
+ 139.76994789010988,
+ 35.74847709009009
+ ],
+ [
+ 139.76994789010988,
+ 35.74829690990991
+ ],
+ [
+ 139.7697281098901,
+ 35.74829690990991
+ ],
+ [
+ 139.7697281098901,
+ 35.74847709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kumanogu.455.1",
+ "name": "熊野宮前",
+ "latitude": 35.730767,
+ "longitude": 139.490946,
+ "polygon": [
+ [
+ 139.49083610989013,
+ 35.73085709009009
+ ],
+ [
+ 139.4910558901099,
+ 35.73085709009009
+ ],
+ [
+ 139.4910558901099,
+ 35.73067690990991
+ ],
+ [
+ 139.49083610989013,
+ 35.73067690990991
+ ],
+ [
+ 139.49083610989013,
+ 35.73085709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kumanogu.455.2",
+ "name": "熊野宮前",
+ "latitude": 35.73071,
+ "longitude": 139.489559,
+ "polygon": [
+ [
+ 139.48944910989013,
+ 35.73080009009009
+ ],
+ [
+ 139.4896688901099,
+ 35.73080009009009
+ ],
+ [
+ 139.4896688901099,
+ 35.73061990990991
+ ],
+ [
+ 139.48944910989013,
+ 35.73061990990991
+ ],
+ [
+ 139.48944910989013,
+ 35.73080009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinjukuHokenCenter.456.1",
+ "name": "東新宿保健センター前",
+ "latitude": 35.697584,
+ "longitude": 139.709838,
+ "polygon": [
+ [
+ 139.7097281098901,
+ 35.69767409009009
+ ],
+ [
+ 139.70994789010987,
+ 35.69767409009009
+ ],
+ [
+ 139.70994789010987,
+ 35.69749390990991
+ ],
+ [
+ 139.7097281098901,
+ 35.69749390990991
+ ],
+ [
+ 139.7097281098901,
+ 35.69767409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinjukuHokenCenter.456.2",
+ "name": "東新宿保健センター前",
+ "latitude": 35.697785,
+ "longitude": 139.709882,
+ "polygon": [
+ [
+ 139.7097721098901,
+ 35.69787509009009
+ ],
+ [
+ 139.70999189010988,
+ 35.69787509009009
+ ],
+ [
+ 139.70999189010988,
+ 35.69769490990991
+ ],
+ [
+ 139.7097721098901,
+ 35.69769490990991
+ ],
+ [
+ 139.7097721098901,
+ 35.69787509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuramaeItchome.457.2",
+ "name": "蔵前一丁目",
+ "latitude": 35.700703,
+ "longitude": 139.788709,
+ "polygon": [
+ [
+ 139.78859910989013,
+ 35.70079309009009
+ ],
+ [
+ 139.7888188901099,
+ 35.70079309009009
+ ],
+ [
+ 139.7888188901099,
+ 35.70061290990991
+ ],
+ [
+ 139.78859910989013,
+ 35.70061290990991
+ ],
+ [
+ 139.78859910989013,
+ 35.70079309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuramaeNichome.458.5",
+ "name": "蔵前二丁目",
+ "latitude": 35.703109,
+ "longitude": 139.790589,
+ "polygon": [
+ [
+ 139.79047910989013,
+ 35.70319909009009
+ ],
+ [
+ 139.7906988901099,
+ 35.70319909009009
+ ],
+ [
+ 139.7906988901099,
+ 35.70301890990991
+ ],
+ [
+ 139.79047910989013,
+ 35.70301890990991
+ ],
+ [
+ 139.79047910989013,
+ 35.70319909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuramaeNichome.458.6",
+ "name": "蔵前二丁目",
+ "latitude": 35.703697,
+ "longitude": 139.791649,
+ "polygon": [
+ [
+ 139.79153910989012,
+ 35.70378709009009
+ ],
+ [
+ 139.7917588901099,
+ 35.70378709009009
+ ],
+ [
+ 139.7917588901099,
+ 35.70360690990991
+ ],
+ [
+ 139.79153910989012,
+ 35.70360690990991
+ ],
+ [
+ 139.79153910989012,
+ 35.70378709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kuriharacho.459.1",
+ "name": "栗原町",
+ "latitude": 35.778183,
+ "longitude": 139.783304,
+ "polygon": [
+ [
+ 139.7831941098901,
+ 35.77827309009009
+ ],
+ [
+ 139.78341389010987,
+ 35.77827309009009
+ ],
+ [
+ 139.78341389010987,
+ 35.77809290990991
+ ],
+ [
+ 139.7831941098901,
+ 35.77809290990991
+ ],
+ [
+ 139.7831941098901,
+ 35.77827309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kuriharacho.459.2",
+ "name": "栗原町",
+ "latitude": 35.777936,
+ "longitude": 139.78385,
+ "polygon": [
+ [
+ 139.78374010989012,
+ 35.77802609009009
+ ],
+ [
+ 139.78395989010988,
+ 35.77802609009009
+ ],
+ [
+ 139.78395989010988,
+ 35.77784590990991
+ ],
+ [
+ 139.78374010989012,
+ 35.77784590990991
+ ],
+ [
+ 139.78374010989012,
+ 35.77802609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kurosawa.460.1",
+ "name": "黒沢",
+ "latitude": 35.813307,
+ "longitude": 139.254058,
+ "polygon": [
+ [
+ 139.2539481098901,
+ 35.81339709009009
+ ],
+ [
+ 139.25416789010987,
+ 35.81339709009009
+ ],
+ [
+ 139.25416789010987,
+ 35.81321690990991
+ ],
+ [
+ 139.2539481098901,
+ 35.81321690990991
+ ],
+ [
+ 139.2539481098901,
+ 35.81339709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kurosawa.460.2",
+ "name": "黒沢",
+ "latitude": 35.813428,
+ "longitude": 139.253717,
+ "polygon": [
+ [
+ 139.2536071098901,
+ 35.81351809009009
+ ],
+ [
+ 139.25382689010988,
+ 35.81351809009009
+ ],
+ [
+ 139.25382689010988,
+ 35.81333790990991
+ ],
+ [
+ 139.2536071098901,
+ 35.81333790990991
+ ],
+ [
+ 139.2536071098901,
+ 35.81351809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KurosawaJinja.461.2",
+ "name": "黒沢神社前",
+ "latitude": 35.814133,
+ "longitude": 139.264616,
+ "polygon": [
+ [
+ 139.2645061098901,
+ 35.81422309009009
+ ],
+ [
+ 139.26472589010987,
+ 35.81422309009009
+ ],
+ [
+ 139.26472589010987,
+ 35.81404290990991
+ ],
+ [
+ 139.2645061098901,
+ 35.81404290990991
+ ],
+ [
+ 139.2645061098901,
+ 35.81422309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kuwagawacho.462.1",
+ "name": "桑川町",
+ "latitude": 35.671345,
+ "longitude": 139.875685,
+ "polygon": [
+ [
+ 139.87557510989012,
+ 35.67143509009009
+ ],
+ [
+ 139.8757948901099,
+ 35.67143509009009
+ ],
+ [
+ 139.8757948901099,
+ 35.67125490990991
+ ],
+ [
+ 139.87557510989012,
+ 35.67125490990991
+ ],
+ [
+ 139.87557510989012,
+ 35.67143509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kuwagawacho.462.2",
+ "name": "桑川町",
+ "latitude": 35.67141,
+ "longitude": 139.875447,
+ "polygon": [
+ [
+ 139.87533710989013,
+ 35.67150009009009
+ ],
+ [
+ 139.8755568901099,
+ 35.67150009009009
+ ],
+ [
+ 139.8755568901099,
+ 35.67131990990991
+ ],
+ [
+ 139.87533710989013,
+ 35.67131990990991
+ ],
+ [
+ 139.87533710989013,
+ 35.67150009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GroundSakaShita.463.1",
+ "name": "グランド坂下",
+ "latitude": 35.711414,
+ "longitude": 139.720781,
+ "polygon": [
+ [
+ 139.7206711098901,
+ 35.71150409009009
+ ],
+ [
+ 139.72089089010987,
+ 35.71150409009009
+ ],
+ [
+ 139.72089089010987,
+ 35.71132390990991
+ ],
+ [
+ 139.7206711098901,
+ 35.71132390990991
+ ],
+ [
+ 139.7206711098901,
+ 35.71150409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiogijukuDai.464.3",
+ "name": "慶応義塾大前",
+ "latitude": 35.648036,
+ "longitude": 139.742669,
+ "polygon": [
+ [
+ 139.74255910989012,
+ 35.64812609009009
+ ],
+ [
+ 139.7427788901099,
+ 35.64812609009009
+ ],
+ [
+ 139.7427788901099,
+ 35.64794590990991
+ ],
+ [
+ 139.74255910989012,
+ 35.64794590990991
+ ],
+ [
+ 139.74255910989012,
+ 35.64812609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiogijukuDai.464.4",
+ "name": "慶応義塾大前",
+ "latitude": 35.647834,
+ "longitude": 139.741574,
+ "polygon": [
+ [
+ 139.74146410989013,
+ 35.64792409009009
+ ],
+ [
+ 139.7416838901099,
+ 35.64792409009009
+ ],
+ [
+ 139.7416838901099,
+ 35.64774390990991
+ ],
+ [
+ 139.74146410989013,
+ 35.64774390990991
+ ],
+ [
+ 139.74146410989013,
+ 35.64792409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Keishicho.466.1",
+ "name": "警視庁前",
+ "latitude": 35.677508,
+ "longitude": 139.751829,
+ "polygon": [
+ [
+ 139.7517191098901,
+ 35.67759809009009
+ ],
+ [
+ 139.75193889010987,
+ 35.67759809009009
+ ],
+ [
+ 139.75193889010987,
+ 35.67741790990991
+ ],
+ [
+ 139.7517191098901,
+ 35.67741790990991
+ ],
+ [
+ 139.7517191098901,
+ 35.67759809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Keishicho.466.2",
+ "name": "警視庁前",
+ "latitude": 35.677192,
+ "longitude": 139.751773,
+ "polygon": [
+ [
+ 139.7516631098901,
+ 35.67728209009009
+ ],
+ [
+ 139.75188289010987,
+ 35.67728209009009
+ ],
+ [
+ 139.75188289010987,
+ 35.67710190990991
+ ],
+ [
+ 139.7516631098901,
+ 35.67710190990991
+ ],
+ [
+ 139.7516631098901,
+ 35.67728209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiseiNakagumi.467.1",
+ "name": "京成中組",
+ "latitude": 35.742801,
+ "longitude": 139.797815,
+ "polygon": [
+ [
+ 139.79770510989013,
+ 35.74289109009009
+ ],
+ [
+ 139.7979248901099,
+ 35.74289109009009
+ ],
+ [
+ 139.7979248901099,
+ 35.74271090990991
+ ],
+ [
+ 139.79770510989013,
+ 35.74271090990991
+ ],
+ [
+ 139.79770510989013,
+ 35.74289109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoishikawaYonchome.474.1",
+ "name": "小石川四丁目",
+ "latitude": 35.714253,
+ "longitude": 139.740805,
+ "polygon": [
+ [
+ 139.7406951098901,
+ 35.71434309009009
+ ],
+ [
+ 139.74091489010988,
+ 35.71434309009009
+ ],
+ [
+ 139.74091489010988,
+ 35.71416290990991
+ ],
+ [
+ 139.7406951098901,
+ 35.71416290990991
+ ],
+ [
+ 139.7406951098901,
+ 35.71434309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiseiNakagumi.467.2",
+ "name": "京成中組",
+ "latitude": 35.742543,
+ "longitude": 139.797537,
+ "polygon": [
+ [
+ 139.79742710989012,
+ 35.74263309009009
+ ],
+ [
+ 139.7976468901099,
+ 35.74263309009009
+ ],
+ [
+ 139.7976468901099,
+ 35.74245290990991
+ ],
+ [
+ 139.79742710989012,
+ 35.74245290990991
+ ],
+ [
+ 139.79742710989012,
+ 35.74263309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiyoKosaten.468.2",
+ "name": "京葉交差点",
+ "latitude": 35.701884,
+ "longitude": 139.867867,
+ "polygon": [
+ [
+ 139.8677571098901,
+ 35.70197409009009
+ ],
+ [
+ 139.86797689010987,
+ 35.70197409009009
+ ],
+ [
+ 139.86797689010987,
+ 35.70179390990991
+ ],
+ [
+ 139.8677571098901,
+ 35.70179390990991
+ ],
+ [
+ 139.8677571098901,
+ 35.70197409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiyoKosaten.468.3",
+ "name": "京葉交差点",
+ "latitude": 35.702316,
+ "longitude": 139.868032,
+ "polygon": [
+ [
+ 139.86792210989012,
+ 35.70240609009009
+ ],
+ [
+ 139.86814189010988,
+ 35.70240609009009
+ ],
+ [
+ 139.86814189010988,
+ 35.70222590990991
+ ],
+ [
+ 139.86792210989012,
+ 35.70222590990991
+ ],
+ [
+ 139.86792210989012,
+ 35.70240609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiyoKosaten.468.5",
+ "name": "京葉交差点",
+ "latitude": 35.703003,
+ "longitude": 139.867302,
+ "polygon": [
+ [
+ 139.8671921098901,
+ 35.70309309009009
+ ],
+ [
+ 139.86741189010988,
+ 35.70309309009009
+ ],
+ [
+ 139.86741189010988,
+ 35.70291290990991
+ ],
+ [
+ 139.8671921098901,
+ 35.70291290990991
+ ],
+ [
+ 139.8671921098901,
+ 35.70309309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiyoKosaten.468.6",
+ "name": "京葉交差点",
+ "latitude": 35.703142,
+ "longitude": 139.867097,
+ "polygon": [
+ [
+ 139.86698710989012,
+ 35.70323209009009
+ ],
+ [
+ 139.86720689010988,
+ 35.70323209009009
+ ],
+ [
+ 139.86720689010988,
+ 35.70305190990991
+ ],
+ [
+ 139.86698710989012,
+ 35.70305190990991
+ ],
+ [
+ 139.86698710989012,
+ 35.70323209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoishikawaSanchome.473.1",
+ "name": "小石川三丁目",
+ "latitude": 35.714283,
+ "longitude": 139.749018,
+ "polygon": [
+ [
+ 139.74890810989012,
+ 35.71437309009009
+ ],
+ [
+ 139.7491278901099,
+ 35.71437309009009
+ ],
+ [
+ 139.7491278901099,
+ 35.71419290990991
+ ],
+ [
+ 139.74890810989012,
+ 35.71419290990991
+ ],
+ [
+ 139.74890810989012,
+ 35.71437309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OdaibaKaihinKoenStation.469.1",
+ "name": "お台場海浜公園駅前",
+ "latitude": 35.629583,
+ "longitude": 139.777906,
+ "polygon": [
+ [
+ 139.77779610989012,
+ 35.62967309009009
+ ],
+ [
+ 139.77801589010988,
+ 35.62967309009009
+ ],
+ [
+ 139.77801589010988,
+ 35.62949290990991
+ ],
+ [
+ 139.77779610989012,
+ 35.62949290990991
+ ],
+ [
+ 139.77779610989012,
+ 35.62967309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OdaibaKaihinKoenStation.469.2",
+ "name": "お台場海浜公園駅前",
+ "latitude": 35.629504,
+ "longitude": 139.778365,
+ "polygon": [
+ [
+ 139.77825510989013,
+ 35.62959409009009
+ ],
+ [
+ 139.7784748901099,
+ 35.62959409009009
+ ],
+ [
+ 139.7784748901099,
+ 35.62941390990991
+ ],
+ [
+ 139.77825510989013,
+ 35.62941390990991
+ ],
+ [
+ 139.77825510989013,
+ 35.62959409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoishikawaNichome.472.1",
+ "name": "小石川二丁目",
+ "latitude": 35.712459,
+ "longitude": 139.751332,
+ "polygon": [
+ [
+ 139.7512221098901,
+ 35.71254909009009
+ ],
+ [
+ 139.75144189010987,
+ 35.71254909009009
+ ],
+ [
+ 139.75144189010987,
+ 35.71236890990991
+ ],
+ [
+ 139.7512221098901,
+ 35.71236890990991
+ ],
+ [
+ 139.7512221098901,
+ 35.71254909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoishikawaNichome.472.2",
+ "name": "小石川二丁目",
+ "latitude": 35.712456,
+ "longitude": 139.751218,
+ "polygon": [
+ [
+ 139.7511081098901,
+ 35.71254609009009
+ ],
+ [
+ 139.75132789010988,
+ 35.71254609009009
+ ],
+ [
+ 139.75132789010988,
+ 35.71236590990991
+ ],
+ [
+ 139.7511081098901,
+ 35.71236590990991
+ ],
+ [
+ 139.7511081098901,
+ 35.71254609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoishikawaSanchome.473.2",
+ "name": "小石川三丁目",
+ "latitude": 35.715259,
+ "longitude": 139.747904,
+ "polygon": [
+ [
+ 139.74779410989012,
+ 35.71534909009009
+ ],
+ [
+ 139.7480138901099,
+ 35.71534909009009
+ ],
+ [
+ 139.7480138901099,
+ 35.71516890990991
+ ],
+ [
+ 139.74779410989012,
+ 35.71516890990991
+ ],
+ [
+ 139.74779410989012,
+ 35.71534909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoishikawaYonchome.474.2",
+ "name": "小石川四丁目",
+ "latitude": 35.714401,
+ "longitude": 139.740299,
+ "polygon": [
+ [
+ 139.7401891098901,
+ 35.71449109009009
+ ],
+ [
+ 139.74040889010988,
+ 35.71449109009009
+ ],
+ [
+ 139.74040889010988,
+ 35.71431090990991
+ ],
+ [
+ 139.7401891098901,
+ 35.71431090990991
+ ],
+ [
+ 139.7401891098901,
+ 35.71449109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoiwaStationDori.476.1",
+ "name": "小岩駅通り",
+ "latitude": 35.725559,
+ "longitude": 139.88319,
+ "polygon": [
+ [
+ 139.88308010989013,
+ 35.72564909009009
+ ],
+ [
+ 139.8832998901099,
+ 35.72564909009009
+ ],
+ [
+ 139.8832998901099,
+ 35.72546890990991
+ ],
+ [
+ 139.88308010989013,
+ 35.72546890990991
+ ],
+ [
+ 139.88308010989013,
+ 35.72564909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoiwaStationDori.476.2",
+ "name": "小岩駅通り",
+ "latitude": 35.725435,
+ "longitude": 139.883534,
+ "polygon": [
+ [
+ 139.88342410989011,
+ 35.72552509009009
+ ],
+ [
+ 139.88364389010988,
+ 35.72552509009009
+ ],
+ [
+ 139.88364389010988,
+ 35.72534490990991
+ ],
+ [
+ 139.88342410989011,
+ 35.72534490990991
+ ],
+ [
+ 139.88342410989011,
+ 35.72552509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoiwaStation.477.4",
+ "name": "小岩駅前",
+ "latitude": 35.732515,
+ "longitude": 139.881972,
+ "polygon": [
+ [
+ 139.8818621098901,
+ 35.73260509009009
+ ],
+ [
+ 139.88208189010987,
+ 35.73260509009009
+ ],
+ [
+ 139.88208189010987,
+ 35.73242490990991
+ ],
+ [
+ 139.8818621098901,
+ 35.73242490990991
+ ],
+ [
+ 139.8818621098901,
+ 35.73260509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoiwaStation.477.6",
+ "name": "小岩駅前",
+ "latitude": 35.732613,
+ "longitude": 139.881605,
+ "polygon": [
+ [
+ 139.88149510989012,
+ 35.73270309009009
+ ],
+ [
+ 139.8817148901099,
+ 35.73270309009009
+ ],
+ [
+ 139.8817148901099,
+ 35.73252290990991
+ ],
+ [
+ 139.88149510989012,
+ 35.73252290990991
+ ],
+ [
+ 139.88149510989012,
+ 35.73270309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiStationIriguchi.478.1",
+ "name": "高円寺駅入口",
+ "latitude": 35.704906,
+ "longitude": 139.654938,
+ "polygon": [
+ [
+ 139.6548281098901,
+ 35.70499609009009
+ ],
+ [
+ 139.65504789010987,
+ 35.70499609009009
+ ],
+ [
+ 139.65504789010987,
+ 35.70481590990991
+ ],
+ [
+ 139.6548281098901,
+ 35.70481590990991
+ ],
+ [
+ 139.6548281098901,
+ 35.70499609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuItchomeKita.490.2",
+ "name": "新宿一丁目北",
+ "latitude": 35.691529,
+ "longitude": 139.711086,
+ "polygon": [
+ [
+ 139.7109761098901,
+ 35.69161909009009
+ ],
+ [
+ 139.71119589010988,
+ 35.69161909009009
+ ],
+ [
+ 139.71119589010988,
+ 35.69143890990991
+ ],
+ [
+ 139.7109761098901,
+ 35.69143890990991
+ ],
+ [
+ 139.7109761098901,
+ 35.69161909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiStationIriguchi.478.2",
+ "name": "高円寺駅入口",
+ "latitude": 35.706719,
+ "longitude": 139.654363,
+ "polygon": [
+ [
+ 139.6542531098901,
+ 35.70680909009009
+ ],
+ [
+ 139.65447289010987,
+ 35.70680909009009
+ ],
+ [
+ 139.65447289010987,
+ 35.70662890990991
+ ],
+ [
+ 139.6542531098901,
+ 35.70662890990991
+ ],
+ [
+ 139.6542531098901,
+ 35.70680909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiTaiikukan.479.1",
+ "name": "高円寺体育館前",
+ "latitude": 35.700453,
+ "longitude": 139.654904,
+ "polygon": [
+ [
+ 139.6547941098901,
+ 35.70054309009009
+ ],
+ [
+ 139.65501389010987,
+ 35.70054309009009
+ ],
+ [
+ 139.65501389010987,
+ 35.70036290990991
+ ],
+ [
+ 139.6547941098901,
+ 35.70036290990991
+ ],
+ [
+ 139.6547941098901,
+ 35.70054309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiTaiikukan.479.2",
+ "name": "高円寺体育館前",
+ "latitude": 35.700478,
+ "longitude": 139.65456,
+ "polygon": [
+ [
+ 139.65445010989012,
+ 35.70056809009009
+ ],
+ [
+ 139.6546698901099,
+ 35.70056809009009
+ ],
+ [
+ 139.6546698901099,
+ 35.70038790990991
+ ],
+ [
+ 139.65445010989012,
+ 35.70038790990991
+ ],
+ [
+ 139.65445010989012,
+ 35.70056809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoShako.493.1",
+ "name": "江東車庫前",
+ "latitude": 35.695691,
+ "longitude": 139.817532,
+ "polygon": [
+ [
+ 139.81742210989012,
+ 35.69578109009009
+ ],
+ [
+ 139.81764189010988,
+ 35.69578109009009
+ ],
+ [
+ 139.81764189010988,
+ 35.695600909909906
+ ],
+ [
+ 139.81742210989012,
+ 35.695600909909906
+ ],
+ [
+ 139.81742210989012,
+ 35.69578109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiMinamiItchome.480.1",
+ "name": "高円寺南一丁目",
+ "latitude": 35.697894,
+ "longitude": 139.659205,
+ "polygon": [
+ [
+ 139.6590951098901,
+ 35.69798409009009
+ ],
+ [
+ 139.65931489010987,
+ 35.69798409009009
+ ],
+ [
+ 139.65931489010987,
+ 35.69780390990991
+ ],
+ [
+ 139.6590951098901,
+ 35.69780390990991
+ ],
+ [
+ 139.6590951098901,
+ 35.69798409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiMinamiItchome.480.2",
+ "name": "高円寺南一丁目",
+ "latitude": 35.69758,
+ "longitude": 139.660197,
+ "polygon": [
+ [
+ 139.66008710989013,
+ 35.69767009009009
+ ],
+ [
+ 139.6603068901099,
+ 35.69767009009009
+ ],
+ [
+ 139.6603068901099,
+ 35.69748990990991
+ ],
+ [
+ 139.66008710989013,
+ 35.69748990990991
+ ],
+ [
+ 139.66008710989013,
+ 35.69767009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiMinamiYonchome.481.1",
+ "name": "高円寺南四丁目",
+ "latitude": 35.701847,
+ "longitude": 139.65459,
+ "polygon": [
+ [
+ 139.65448010989013,
+ 35.70193709009009
+ ],
+ [
+ 139.6546998901099,
+ 35.70193709009009
+ ],
+ [
+ 139.6546998901099,
+ 35.70175690990991
+ ],
+ [
+ 139.65448010989013,
+ 35.70175690990991
+ ],
+ [
+ 139.65448010989013,
+ 35.70193709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiMinamiYonchome.481.2",
+ "name": "高円寺南四丁目",
+ "latitude": 35.701867,
+ "longitude": 139.654953,
+ "polygon": [
+ [
+ 139.65484310989012,
+ 35.70195709009009
+ ],
+ [
+ 139.6550628901099,
+ 35.70195709009009
+ ],
+ [
+ 139.6550628901099,
+ 35.70177690990991
+ ],
+ [
+ 139.65484310989012,
+ 35.70177690990991
+ ],
+ [
+ 139.65484310989012,
+ 35.70195709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkibaFutoKoen.483.1",
+ "name": "新木場埠頭公園前",
+ "latitude": 35.641731,
+ "longitude": 139.823907,
+ "polygon": [
+ [
+ 139.8237971098901,
+ 35.64182109009009
+ ],
+ [
+ 139.82401689010987,
+ 35.64182109009009
+ ],
+ [
+ 139.82401689010987,
+ 35.64164090990991
+ ],
+ [
+ 139.8237971098901,
+ 35.64164090990991
+ ],
+ [
+ 139.8237971098901,
+ 35.64182109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenMae.484.1",
+ "name": "公園前",
+ "latitude": 35.792862,
+ "longitude": 139.794824,
+ "polygon": [
+ [
+ 139.79471410989012,
+ 35.79295209009009
+ ],
+ [
+ 139.7949338901099,
+ 35.79295209009009
+ ],
+ [
+ 139.7949338901099,
+ 35.79277190990991
+ ],
+ [
+ 139.79471410989012,
+ 35.79277190990991
+ ],
+ [
+ 139.79471410989012,
+ 35.79295209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenMae.484.2",
+ "name": "公園前",
+ "latitude": 35.793001,
+ "longitude": 139.794616,
+ "polygon": [
+ [
+ 139.7945061098901,
+ 35.79309109009009
+ ],
+ [
+ 139.79472589010987,
+ 35.79309109009009
+ ],
+ [
+ 139.79472589010987,
+ 35.79291090990991
+ ],
+ [
+ 139.7945061098901,
+ 35.79291090990991
+ ],
+ [
+ 139.7945061098901,
+ 35.79309109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenMae.484.3",
+ "name": "公園前",
+ "latitude": 35.792872,
+ "longitude": 139.79481,
+ "polygon": [
+ [
+ 139.79470010989013,
+ 35.79296209009009
+ ],
+ [
+ 139.7949198901099,
+ 35.79296209009009
+ ],
+ [
+ 139.7949198901099,
+ 35.79278190990991
+ ],
+ [
+ 139.79470010989013,
+ 35.79278190990991
+ ],
+ [
+ 139.79470010989013,
+ 35.79296209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenMae.484.4",
+ "name": "公園前",
+ "latitude": 35.793001,
+ "longitude": 139.794627,
+ "polygon": [
+ [
+ 139.7945171098901,
+ 35.79309109009009
+ ],
+ [
+ 139.79473689010987,
+ 35.79309109009009
+ ],
+ [
+ 139.79473689010987,
+ 35.79291090990991
+ ],
+ [
+ 139.7945171098901,
+ 35.79291090990991
+ ],
+ [
+ 139.7945171098901,
+ 35.79309109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Koshoji.485.1",
+ "name": "光照寺",
+ "latitude": 35.718021,
+ "longitude": 139.869899,
+ "polygon": [
+ [
+ 139.86978910989012,
+ 35.71811109009009
+ ],
+ [
+ 139.8700088901099,
+ 35.71811109009009
+ ],
+ [
+ 139.8700088901099,
+ 35.71793090990991
+ ],
+ [
+ 139.86978910989012,
+ 35.71793090990991
+ ],
+ [
+ 139.86978910989012,
+ 35.71811109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Koshoji.485.2",
+ "name": "光照寺",
+ "latitude": 35.717936,
+ "longitude": 139.870116,
+ "polygon": [
+ [
+ 139.8700061098901,
+ 35.71802609009009
+ ],
+ [
+ 139.87022589010988,
+ 35.71802609009009
+ ],
+ [
+ 139.87022589010988,
+ 35.71784590990991
+ ],
+ [
+ 139.8700061098901,
+ 35.71784590990991
+ ],
+ [
+ 139.8700061098901,
+ 35.71802609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanSanchome.502.1",
+ "name": "港南三丁目",
+ "latitude": 35.634571,
+ "longitude": 139.750758,
+ "polygon": [
+ [
+ 139.7506481098901,
+ 35.63466109009009
+ ],
+ [
+ 139.75086789010987,
+ 35.63466109009009
+ ],
+ [
+ 139.75086789010987,
+ 35.63448090990991
+ ],
+ [
+ 139.7506481098901,
+ 35.63448090990991
+ ],
+ [
+ 139.7506481098901,
+ 35.63466109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Koshinzuka.486.1",
+ "name": "庚申塚",
+ "latitude": 35.746172,
+ "longitude": 139.428197,
+ "polygon": [
+ [
+ 139.42808710989013,
+ 35.74626209009009
+ ],
+ [
+ 139.4283068901099,
+ 35.74626209009009
+ ],
+ [
+ 139.4283068901099,
+ 35.74608190990991
+ ],
+ [
+ 139.42808710989013,
+ 35.74608190990991
+ ],
+ [
+ 139.42808710989013,
+ 35.74626209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoKuyakusho.491.1",
+ "name": "江東区役所前",
+ "latitude": 35.672445,
+ "longitude": 139.816397,
+ "polygon": [
+ [
+ 139.8162871098901,
+ 35.67253509009009
+ ],
+ [
+ 139.81650689010988,
+ 35.67253509009009
+ ],
+ [
+ 139.81650689010988,
+ 35.67235490990991
+ ],
+ [
+ 139.8162871098901,
+ 35.67235490990991
+ ],
+ [
+ 139.8162871098901,
+ 35.67253509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Koshinzuka.486.2",
+ "name": "庚申塚",
+ "latitude": 35.746413,
+ "longitude": 139.427943,
+ "polygon": [
+ [
+ 139.42783310989012,
+ 35.74650309009009
+ ],
+ [
+ 139.42805289010988,
+ 35.74650309009009
+ ],
+ [
+ 139.42805289010988,
+ 35.74632290990991
+ ],
+ [
+ 139.42783310989012,
+ 35.74632290990991
+ ],
+ [
+ 139.42783310989012,
+ 35.74650309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KojimachiNichome.487.1",
+ "name": "麹町二丁目",
+ "latitude": 35.684051,
+ "longitude": 139.740506,
+ "polygon": [
+ [
+ 139.74039610989013,
+ 35.68414109009009
+ ],
+ [
+ 139.7406158901099,
+ 35.68414109009009
+ ],
+ [
+ 139.7406158901099,
+ 35.683960909909906
+ ],
+ [
+ 139.74039610989013,
+ 35.683960909909906
+ ],
+ [
+ 139.74039610989013,
+ 35.68414109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KojimachiNichome.487.2",
+ "name": "麹町二丁目",
+ "latitude": 35.684277,
+ "longitude": 139.73996,
+ "polygon": [
+ [
+ 139.7398501098901,
+ 35.68436709009009
+ ],
+ [
+ 139.74006989010988,
+ 35.68436709009009
+ ],
+ [
+ 139.74006989010988,
+ 35.68418690990991
+ ],
+ [
+ 139.7398501098901,
+ 35.68418690990991
+ ],
+ [
+ 139.7398501098901,
+ 35.68436709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KojimachiYonchome.488.1",
+ "name": "麹町四丁目",
+ "latitude": 35.683526,
+ "longitude": 139.738223,
+ "polygon": [
+ [
+ 139.73811310989012,
+ 35.68361609009009
+ ],
+ [
+ 139.7383328901099,
+ 35.68361609009009
+ ],
+ [
+ 139.7383328901099,
+ 35.68343590990991
+ ],
+ [
+ 139.73811310989012,
+ 35.68343590990991
+ ],
+ [
+ 139.73811310989012,
+ 35.68361609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KojimachiYonchome.488.2",
+ "name": "麹町四丁目",
+ "latitude": 35.683848,
+ "longitude": 139.738817,
+ "polygon": [
+ [
+ 139.73870710989013,
+ 35.68393809009009
+ ],
+ [
+ 139.7389268901099,
+ 35.68393809009009
+ ],
+ [
+ 139.7389268901099,
+ 35.68375790990991
+ ],
+ [
+ 139.73870710989013,
+ 35.68375790990991
+ ],
+ [
+ 139.73870710989013,
+ 35.68393809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KojimachiYonchome.488.3",
+ "name": "麹町四丁目",
+ "latitude": 35.684037,
+ "longitude": 139.736914,
+ "polygon": [
+ [
+ 139.73680410989013,
+ 35.68412709009009
+ ],
+ [
+ 139.7370238901099,
+ 35.68412709009009
+ ],
+ [
+ 139.7370238901099,
+ 35.683946909909906
+ ],
+ [
+ 139.73680410989013,
+ 35.683946909909906
+ ],
+ [
+ 139.73680410989013,
+ 35.68412709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KojimachiYonchome.488.4",
+ "name": "麹町四丁目",
+ "latitude": 35.683279,
+ "longitude": 139.738142,
+ "polygon": [
+ [
+ 139.73803210989013,
+ 35.68336909009009
+ ],
+ [
+ 139.7382518901099,
+ 35.68336909009009
+ ],
+ [
+ 139.7382518901099,
+ 35.68318890990991
+ ],
+ [
+ 139.73803210989013,
+ 35.68318890990991
+ ],
+ [
+ 139.73803210989013,
+ 35.68336909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KojimachiGochome.489.1",
+ "name": "麹町五丁目",
+ "latitude": 35.6845,
+ "longitude": 139.733552,
+ "polygon": [
+ [
+ 139.73344210989012,
+ 35.68459009009009
+ ],
+ [
+ 139.7336618901099,
+ 35.68459009009009
+ ],
+ [
+ 139.7336618901099,
+ 35.68440990990991
+ ],
+ [
+ 139.73344210989012,
+ 35.68440990990991
+ ],
+ [
+ 139.73344210989012,
+ 35.68459009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KojimachiGochome.489.2",
+ "name": "麹町五丁目",
+ "latitude": 35.684492,
+ "longitude": 139.734165,
+ "polygon": [
+ [
+ 139.7340551098901,
+ 35.68458209009009
+ ],
+ [
+ 139.73427489010987,
+ 35.68458209009009
+ ],
+ [
+ 139.73427489010987,
+ 35.68440190990991
+ ],
+ [
+ 139.7340551098901,
+ 35.68440190990991
+ ],
+ [
+ 139.7340551098901,
+ 35.68458209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuItchomeKita.490.1",
+ "name": "新宿一丁目北",
+ "latitude": 35.691354,
+ "longitude": 139.710568,
+ "polygon": [
+ [
+ 139.7104581098901,
+ 35.69144409009009
+ ],
+ [
+ 139.71067789010988,
+ 35.69144409009009
+ ],
+ [
+ 139.71067789010988,
+ 35.69126390990991
+ ],
+ [
+ 139.7104581098901,
+ 35.69126390990991
+ ],
+ [
+ 139.7104581098901,
+ 35.69144409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoKuyakusho.491.2",
+ "name": "江東区役所前",
+ "latitude": 35.671641,
+ "longitude": 139.816229,
+ "polygon": [
+ [
+ 139.8161191098901,
+ 35.67173109009009
+ ],
+ [
+ 139.81633889010988,
+ 35.67173109009009
+ ],
+ [
+ 139.81633889010988,
+ 35.67155090990991
+ ],
+ [
+ 139.8161191098901,
+ 35.67155090990991
+ ],
+ [
+ 139.8161191098901,
+ 35.67173109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoKokaido.492.1",
+ "name": "江東公会堂前",
+ "latitude": 35.689012,
+ "longitude": 139.818575,
+ "polygon": [
+ [
+ 139.81846510989013,
+ 35.68910209009009
+ ],
+ [
+ 139.8186848901099,
+ 35.68910209009009
+ ],
+ [
+ 139.8186848901099,
+ 35.68892190990991
+ ],
+ [
+ 139.81846510989013,
+ 35.68892190990991
+ ],
+ [
+ 139.81846510989013,
+ 35.68910209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoKokaido.492.2",
+ "name": "江東公会堂前",
+ "latitude": 35.689171,
+ "longitude": 139.819029,
+ "polygon": [
+ [
+ 139.81891910989012,
+ 35.68926109009009
+ ],
+ [
+ 139.81913889010988,
+ 35.68926109009009
+ ],
+ [
+ 139.81913889010988,
+ 35.68908090990991
+ ],
+ [
+ 139.81891910989012,
+ 35.68908090990991
+ ],
+ [
+ 139.81891910989012,
+ 35.68926109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoShako.493.2",
+ "name": "江東車庫前",
+ "latitude": 35.696105,
+ "longitude": 139.817638,
+ "polygon": [
+ [
+ 139.8175281098901,
+ 35.69619509009009
+ ],
+ [
+ 139.81774789010987,
+ 35.69619509009009
+ ],
+ [
+ 139.81774789010987,
+ 35.69601490990991
+ ],
+ [
+ 139.8175281098901,
+ 35.69601490990991
+ ],
+ [
+ 139.8175281098901,
+ 35.69619509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kotobashi.494.1",
+ "name": "江東橋",
+ "latitude": 35.695455,
+ "longitude": 139.810308,
+ "polygon": [
+ [
+ 139.8101981098901,
+ 35.69554509009009
+ ],
+ [
+ 139.81041789010987,
+ 35.69554509009009
+ ],
+ [
+ 139.81041789010987,
+ 35.69536490990991
+ ],
+ [
+ 139.8101981098901,
+ 35.69536490990991
+ ],
+ [
+ 139.8101981098901,
+ 35.69554509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanGochome.503.1",
+ "name": "港南五丁目",
+ "latitude": 35.626182,
+ "longitude": 139.754154,
+ "polygon": [
+ [
+ 139.75404410989012,
+ 35.62627209009009
+ ],
+ [
+ 139.75426389010988,
+ 35.62627209009009
+ ],
+ [
+ 139.75426389010988,
+ 35.62609190990991
+ ],
+ [
+ 139.75404410989012,
+ 35.62609190990991
+ ],
+ [
+ 139.75404410989012,
+ 35.62627209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kotobashi.494.2",
+ "name": "江東橋",
+ "latitude": 35.695118,
+ "longitude": 139.809983,
+ "polygon": [
+ [
+ 139.8098731098901,
+ 35.69520809009009
+ ],
+ [
+ 139.81009289010987,
+ 35.69520809009009
+ ],
+ [
+ 139.81009289010987,
+ 35.69502790990991
+ ],
+ [
+ 139.8098731098901,
+ 35.69502790990991
+ ],
+ [
+ 139.8098731098901,
+ 35.69520809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotobashiItchome.495.1",
+ "name": "江東橋一丁目",
+ "latitude": 35.694178,
+ "longitude": 139.809574,
+ "polygon": [
+ [
+ 139.80946410989011,
+ 35.69426809009009
+ ],
+ [
+ 139.80968389010988,
+ 35.69426809009009
+ ],
+ [
+ 139.80968389010988,
+ 35.69408790990991
+ ],
+ [
+ 139.80946410989011,
+ 35.69408790990991
+ ],
+ [
+ 139.80946410989011,
+ 35.69426809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoGakkoKotoBunkyoshitsu.497.1",
+ "name": "城東特別支援学校前",
+ "latitude": 35.69198,
+ "longitude": 139.835215,
+ "polygon": [
+ [
+ 139.83510510989012,
+ 35.69207009009009
+ ],
+ [
+ 139.8353248901099,
+ 35.69207009009009
+ ],
+ [
+ 139.8353248901099,
+ 35.69188990990991
+ ],
+ [
+ 139.83510510989012,
+ 35.69188990990991
+ ],
+ [
+ 139.83510510989012,
+ 35.69207009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoGakkoKotoBunkyoshitsu.497.2",
+ "name": "城東特別支援学校前",
+ "latitude": 35.692059,
+ "longitude": 139.834952,
+ "polygon": [
+ [
+ 139.8348421098901,
+ 35.69214909009009
+ ],
+ [
+ 139.83506189010987,
+ 35.69214909009009
+ ],
+ [
+ 139.83506189010987,
+ 35.69196890990991
+ ],
+ [
+ 139.8348421098901,
+ 35.69196890990991
+ ],
+ [
+ 139.8348421098901,
+ 35.69214909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanOhashi.498.1",
+ "name": "港南大橋",
+ "latitude": 35.631215,
+ "longitude": 139.75401,
+ "polygon": [
+ [
+ 139.7539001098901,
+ 35.63130509009009
+ ],
+ [
+ 139.75411989010988,
+ 35.63130509009009
+ ],
+ [
+ 139.75411989010988,
+ 35.63112490990991
+ ],
+ [
+ 139.7539001098901,
+ 35.63112490990991
+ ],
+ [
+ 139.7539001098901,
+ 35.63130509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaDote.504.1",
+ "name": "荒川土手",
+ "latitude": 35.767782,
+ "longitude": 139.762036,
+ "polygon": [
+ [
+ 139.7619261098901,
+ 35.76787209009009
+ ],
+ [
+ 139.76214589010988,
+ 35.76787209009009
+ ],
+ [
+ 139.76214589010988,
+ 35.76769190990991
+ ],
+ [
+ 139.7619261098901,
+ 35.76769190990991
+ ],
+ [
+ 139.7619261098901,
+ 35.76787209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanChugakko.500.1",
+ "name": "港南中学校前",
+ "latitude": 35.631742,
+ "longitude": 139.747667,
+ "polygon": [
+ [
+ 139.74755710989012,
+ 35.63183209009009
+ ],
+ [
+ 139.7477768901099,
+ 35.63183209009009
+ ],
+ [
+ 139.7477768901099,
+ 35.63165190990991
+ ],
+ [
+ 139.74755710989012,
+ 35.63165190990991
+ ],
+ [
+ 139.74755710989012,
+ 35.63183209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanChugakko.500.2",
+ "name": "港南中学校前",
+ "latitude": 35.6314,
+ "longitude": 139.748164,
+ "polygon": [
+ [
+ 139.74805410989012,
+ 35.63149009009009
+ ],
+ [
+ 139.74827389010989,
+ 35.63149009009009
+ ],
+ [
+ 139.74827389010989,
+ 35.63130990990991
+ ],
+ [
+ 139.74805410989012,
+ 35.63130990990991
+ ],
+ [
+ 139.74805410989012,
+ 35.63149009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanItchome.501.1",
+ "name": "港南一丁目",
+ "latitude": 35.632302,
+ "longitude": 139.745186,
+ "polygon": [
+ [
+ 139.7450761098901,
+ 35.63239209009009
+ ],
+ [
+ 139.74529589010987,
+ 35.63239209009009
+ ],
+ [
+ 139.74529589010987,
+ 35.63221190990991
+ ],
+ [
+ 139.7450761098901,
+ 35.63221190990991
+ ],
+ [
+ 139.7450761098901,
+ 35.63239209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanItchome.501.2",
+ "name": "港南一丁目",
+ "latitude": 35.632513,
+ "longitude": 139.745403,
+ "polygon": [
+ [
+ 139.74529310989013,
+ 35.63260309009009
+ ],
+ [
+ 139.7455128901099,
+ 35.63260309009009
+ ],
+ [
+ 139.7455128901099,
+ 35.63242290990991
+ ],
+ [
+ 139.74529310989013,
+ 35.63242290990991
+ ],
+ [
+ 139.74529310989013,
+ 35.63260309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanSanchome.502.2",
+ "name": "港南三丁目",
+ "latitude": 35.633949,
+ "longitude": 139.750157,
+ "polygon": [
+ [
+ 139.75004710989012,
+ 35.63403909009009
+ ],
+ [
+ 139.75026689010988,
+ 35.63403909009009
+ ],
+ [
+ 139.75026689010988,
+ 35.63385890990991
+ ],
+ [
+ 139.75004710989012,
+ 35.63385890990991
+ ],
+ [
+ 139.75004710989012,
+ 35.63403909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawaDote.504.2",
+ "name": "荒川土手",
+ "latitude": 35.767825,
+ "longitude": 139.76232,
+ "polygon": [
+ [
+ 139.7622101098901,
+ 35.76791509009009
+ ],
+ [
+ 139.76242989010987,
+ 35.76791509009009
+ ],
+ [
+ 139.76242989010987,
+ 35.76773490990991
+ ],
+ [
+ 139.7622101098901,
+ 35.76773490990991
+ ],
+ [
+ 139.7622101098901,
+ 35.76791509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuRokuchomeDanchi.505.1",
+ "name": "江北六丁目団地前",
+ "latitude": 35.782349,
+ "longitude": 139.769905,
+ "polygon": [
+ [
+ 139.7697951098901,
+ 35.782439090090094
+ ],
+ [
+ 139.77001489010988,
+ 35.782439090090094
+ ],
+ [
+ 139.77001489010988,
+ 35.78225890990991
+ ],
+ [
+ 139.7697951098901,
+ 35.78225890990991
+ ],
+ [
+ 139.7697951098901,
+ 35.782439090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuRokuchomeDanchi.505.2",
+ "name": "江北六丁目団地前",
+ "latitude": 35.782546,
+ "longitude": 139.770199,
+ "polygon": [
+ [
+ 139.7700891098901,
+ 35.782636090090094
+ ],
+ [
+ 139.77030889010987,
+ 35.782636090090094
+ ],
+ [
+ 139.77030889010987,
+ 35.78245590990991
+ ],
+ [
+ 139.7700891098901,
+ 35.78245590990991
+ ],
+ [
+ 139.7700891098901,
+ 35.782636090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuRikkyoShita.506.1",
+ "name": "江北陸橋下",
+ "latitude": 35.778071,
+ "longitude": 139.769305,
+ "polygon": [
+ [
+ 139.76919510989012,
+ 35.77816109009009
+ ],
+ [
+ 139.76941489010989,
+ 35.77816109009009
+ ],
+ [
+ 139.76941489010989,
+ 35.77798090990991
+ ],
+ [
+ 139.76919510989012,
+ 35.77798090990991
+ ],
+ [
+ 139.76919510989012,
+ 35.77816109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuRikkyoShita.506.2",
+ "name": "江北陸橋下",
+ "latitude": 35.777615,
+ "longitude": 139.770075,
+ "polygon": [
+ [
+ 139.7699651098901,
+ 35.77770509009009
+ ],
+ [
+ 139.77018489010987,
+ 35.77770509009009
+ ],
+ [
+ 139.77018489010987,
+ 35.77752490990991
+ ],
+ [
+ 139.7699651098901,
+ 35.77752490990991
+ ],
+ [
+ 139.7699651098901,
+ 35.77770509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuRikkyoShita.506.3",
+ "name": "江北陸橋下",
+ "latitude": 35.778333,
+ "longitude": 139.768974,
+ "polygon": [
+ [
+ 139.7688641098901,
+ 35.778423090090094
+ ],
+ [
+ 139.76908389010987,
+ 35.778423090090094
+ ],
+ [
+ 139.76908389010987,
+ 35.77824290990991
+ ],
+ [
+ 139.7688641098901,
+ 35.77824290990991
+ ],
+ [
+ 139.7688641098901,
+ 35.778423090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuRikkyoShita.506.4",
+ "name": "江北陸橋下",
+ "latitude": 35.777545,
+ "longitude": 139.770314,
+ "polygon": [
+ [
+ 139.77020410989013,
+ 35.777635090090094
+ ],
+ [
+ 139.7704238901099,
+ 35.777635090090094
+ ],
+ [
+ 139.7704238901099,
+ 35.77745490990991
+ ],
+ [
+ 139.77020410989013,
+ 35.77745490990991
+ ],
+ [
+ 139.77020410989013,
+ 35.777635090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuItchome.507.1",
+ "name": "江北一丁目",
+ "latitude": 35.77093,
+ "longitude": 139.766728,
+ "polygon": [
+ [
+ 139.76661810989012,
+ 35.77102009009009
+ ],
+ [
+ 139.76683789010988,
+ 35.77102009009009
+ ],
+ [
+ 139.76683789010988,
+ 35.77083990990991
+ ],
+ [
+ 139.76661810989012,
+ 35.77083990990991
+ ],
+ [
+ 139.76661810989012,
+ 35.77102009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuItchome.507.2",
+ "name": "江北一丁目",
+ "latitude": 35.770772,
+ "longitude": 139.766369,
+ "polygon": [
+ [
+ 139.76625910989011,
+ 35.77086209009009
+ ],
+ [
+ 139.76647889010988,
+ 35.77086209009009
+ ],
+ [
+ 139.76647889010988,
+ 35.77068190990991
+ ],
+ [
+ 139.76625910989011,
+ 35.77068190990991
+ ],
+ [
+ 139.76625910989011,
+ 35.77086209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuYonchome.508.1",
+ "name": "江北四丁目",
+ "latitude": 35.772411,
+ "longitude": 139.770563,
+ "polygon": [
+ [
+ 139.77045310989013,
+ 35.77250109009009
+ ],
+ [
+ 139.7706728901099,
+ 35.77250109009009
+ ],
+ [
+ 139.7706728901099,
+ 35.77232090990991
+ ],
+ [
+ 139.77045310989013,
+ 35.77232090990991
+ ],
+ [
+ 139.77045310989013,
+ 35.77250109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuYonchome.508.2",
+ "name": "江北四丁目",
+ "latitude": 35.772546,
+ "longitude": 139.769407,
+ "polygon": [
+ [
+ 139.76929710989012,
+ 35.77263609009009
+ ],
+ [
+ 139.76951689010988,
+ 35.77263609009009
+ ],
+ [
+ 139.76951689010988,
+ 35.77245590990991
+ ],
+ [
+ 139.76929710989012,
+ 35.77245590990991
+ ],
+ [
+ 139.76929710989012,
+ 35.77263609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuYonchome.508.4",
+ "name": "江北四丁目",
+ "latitude": 35.772367,
+ "longitude": 139.768971,
+ "polygon": [
+ [
+ 139.7688611098901,
+ 35.77245709009009
+ ],
+ [
+ 139.76908089010988,
+ 35.77245709009009
+ ],
+ [
+ 139.76908089010988,
+ 35.77227690990991
+ ],
+ [
+ 139.7688611098901,
+ 35.77227690990991
+ ],
+ [
+ 139.7688611098901,
+ 35.77245709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuRokuchomeDanchiIriguchi.509.1",
+ "name": "江北六丁目団地入口",
+ "latitude": 35.779766,
+ "longitude": 139.770005,
+ "polygon": [
+ [
+ 139.76989510989011,
+ 35.77985609009009
+ ],
+ [
+ 139.77011489010988,
+ 35.77985609009009
+ ],
+ [
+ 139.77011489010988,
+ 35.77967590990991
+ ],
+ [
+ 139.76989510989011,
+ 35.77967590990991
+ ],
+ [
+ 139.76989510989011,
+ 35.77985609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuRokuchomeDanchiIriguchi.509.2",
+ "name": "江北六丁目団地入口",
+ "latitude": 35.779991,
+ "longitude": 139.770258,
+ "polygon": [
+ [
+ 139.77014810989013,
+ 35.78008109009009
+ ],
+ [
+ 139.7703678901099,
+ 35.78008109009009
+ ],
+ [
+ 139.7703678901099,
+ 35.77990090990991
+ ],
+ [
+ 139.77014810989013,
+ 35.77990090990991
+ ],
+ [
+ 139.77014810989013,
+ 35.78008109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomyojiShita.510.1",
+ "name": "光明寺下",
+ "latitude": 35.794062,
+ "longitude": 139.273729,
+ "polygon": [
+ [
+ 139.27361910989012,
+ 35.79415209009009
+ ],
+ [
+ 139.2738388901099,
+ 35.79415209009009
+ ],
+ [
+ 139.2738388901099,
+ 35.79397190990991
+ ],
+ [
+ 139.27361910989012,
+ 35.79397190990991
+ ],
+ [
+ 139.27361910989012,
+ 35.79415209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomyojiShita.510.2",
+ "name": "光明寺下",
+ "latitude": 35.793929,
+ "longitude": 139.273795,
+ "polygon": [
+ [
+ 139.27368510989012,
+ 35.79401909009009
+ ],
+ [
+ 139.2739048901099,
+ 35.79401909009009
+ ],
+ [
+ 139.2739048901099,
+ 35.79383890990991
+ ],
+ [
+ 139.27368510989012,
+ 35.79383890990991
+ ],
+ [
+ 139.27368510989012,
+ 35.79401909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Korakuen.512.1",
+ "name": "後楽園",
+ "latitude": 35.704586,
+ "longitude": 139.754564,
+ "polygon": [
+ [
+ 139.7544541098901,
+ 35.70467609009009
+ ],
+ [
+ 139.75467389010987,
+ 35.70467609009009
+ ],
+ [
+ 139.75467389010987,
+ 35.70449590990991
+ ],
+ [
+ 139.7544541098901,
+ 35.70449590990991
+ ],
+ [
+ 139.7544541098901,
+ 35.70467609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Korakuen.512.2",
+ "name": "後楽園",
+ "latitude": 35.703449,
+ "longitude": 139.755307,
+ "polygon": [
+ [
+ 139.7551971098901,
+ 35.70353909009009
+ ],
+ [
+ 139.75541689010987,
+ 35.70353909009009
+ ],
+ [
+ 139.75541689010987,
+ 35.70335890990991
+ ],
+ [
+ 139.7551971098901,
+ 35.70335890990991
+ ],
+ [
+ 139.7551971098901,
+ 35.70353909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Korinji.513.1",
+ "name": "光林寺前",
+ "latitude": 35.646877,
+ "longitude": 139.727442,
+ "polygon": [
+ [
+ 139.7273321098901,
+ 35.646967090090094
+ ],
+ [
+ 139.72755189010988,
+ 35.646967090090094
+ ],
+ [
+ 139.72755189010988,
+ 35.64678690990991
+ ],
+ [
+ 139.7273321098901,
+ 35.64678690990991
+ ],
+ [
+ 139.7273321098901,
+ 35.646967090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Korinji.513.2",
+ "name": "光林寺前",
+ "latitude": 35.64659,
+ "longitude": 139.727476,
+ "polygon": [
+ [
+ 139.7273661098901,
+ 35.64668009009009
+ ],
+ [
+ 139.72758589010988,
+ 35.64668009009009
+ ],
+ [
+ 139.72758589010988,
+ 35.64649990990991
+ ],
+ [
+ 139.7273661098901,
+ 35.64649990990991
+ ],
+ [
+ 139.7273661098901,
+ 35.64668009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokugakuinDaigaku.516.2",
+ "name": "国学院大学前",
+ "latitude": 35.656077,
+ "longitude": 139.710972,
+ "polygon": [
+ [
+ 139.71086210989012,
+ 35.65616709009009
+ ],
+ [
+ 139.71108189010988,
+ 35.65616709009009
+ ],
+ [
+ 139.71108189010988,
+ 35.65598690990991
+ ],
+ [
+ 139.71086210989012,
+ 35.65598690990991
+ ],
+ [
+ 139.71086210989012,
+ 35.65616709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Koemoncho.514.1",
+ "name": "小右衛門町",
+ "latitude": 35.777884,
+ "longitude": 139.803032,
+ "polygon": [
+ [
+ 139.80292210989012,
+ 35.77797409009009
+ ],
+ [
+ 139.80314189010988,
+ 35.77797409009009
+ ],
+ [
+ 139.80314189010988,
+ 35.77779390990991
+ ],
+ [
+ 139.80292210989012,
+ 35.77779390990991
+ ],
+ [
+ 139.80292210989012,
+ 35.77797409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Koemoncho.514.2",
+ "name": "小右衛門町",
+ "latitude": 35.777828,
+ "longitude": 139.803255,
+ "polygon": [
+ [
+ 139.80314510989012,
+ 35.77791809009009
+ ],
+ [
+ 139.8033648901099,
+ 35.77791809009009
+ ],
+ [
+ 139.8033648901099,
+ 35.77773790990991
+ ],
+ [
+ 139.80314510989012,
+ 35.77773790990991
+ ],
+ [
+ 139.80314510989012,
+ 35.77791809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kokaibashi.515.1",
+ "name": "小ヶ井橋",
+ "latitude": 35.836834,
+ "longitude": 139.217299,
+ "polygon": [
+ [
+ 139.2171891098901,
+ 35.83692409009009
+ ],
+ [
+ 139.21740889010988,
+ 35.83692409009009
+ ],
+ [
+ 139.21740889010988,
+ 35.83674390990991
+ ],
+ [
+ 139.2171891098901,
+ 35.83674390990991
+ ],
+ [
+ 139.2171891098901,
+ 35.83692409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kokaibashi.515.2",
+ "name": "小ヶ井橋",
+ "latitude": 35.836888,
+ "longitude": 139.217368,
+ "polygon": [
+ [
+ 139.2172581098901,
+ 35.83697809009009
+ ],
+ [
+ 139.21747789010988,
+ 35.83697809009009
+ ],
+ [
+ 139.21747789010988,
+ 35.83679790990991
+ ],
+ [
+ 139.2172581098901,
+ 35.83679790990991
+ ],
+ [
+ 139.2172581098901,
+ 35.83697809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokugakuinDaigaku.516.1",
+ "name": "国学院大学前",
+ "latitude": 35.655462,
+ "longitude": 139.71099,
+ "polygon": [
+ [
+ 139.71088010989013,
+ 35.65555209009009
+ ],
+ [
+ 139.7110998901099,
+ 35.65555209009009
+ ],
+ [
+ 139.7110998901099,
+ 35.65537190990991
+ ],
+ [
+ 139.71088010989013,
+ 35.65537190990991
+ ],
+ [
+ 139.71088010989013,
+ 35.65555209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toyamacho.518.1",
+ "name": "戸山町",
+ "latitude": 35.701022,
+ "longitude": 139.71871,
+ "polygon": [
+ [
+ 139.7186001098901,
+ 35.70111209009009
+ ],
+ [
+ 139.71881989010987,
+ 35.70111209009009
+ ],
+ [
+ 139.71881989010987,
+ 35.70093190990991
+ ],
+ [
+ 139.7186001098901,
+ 35.70093190990991
+ ],
+ [
+ 139.7186001098901,
+ 35.70111209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kojima.522.1",
+ "name": "小島",
+ "latitude": 35.673952,
+ "longitude": 139.853332,
+ "polygon": [
+ [
+ 139.8532221098901,
+ 35.67404209009009
+ ],
+ [
+ 139.85344189010988,
+ 35.67404209009009
+ ],
+ [
+ 139.85344189010988,
+ 35.67386190990991
+ ],
+ [
+ 139.8532221098901,
+ 35.67386190990991
+ ],
+ [
+ 139.8532221098901,
+ 35.67404209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toyamacho.518.2",
+ "name": "戸山町",
+ "latitude": 35.701165,
+ "longitude": 139.717788,
+ "polygon": [
+ [
+ 139.71767810989013,
+ 35.70125509009009
+ ],
+ [
+ 139.7178978901099,
+ 35.70125509009009
+ ],
+ [
+ 139.7178978901099,
+ 35.70107490990991
+ ],
+ [
+ 139.71767810989013,
+ 35.70107490990991
+ ],
+ [
+ 139.71767810989013,
+ 35.70125509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaDairokuShogakkoIriguchi.519.1",
+ "name": "四谷第六小学校入口",
+ "latitude": 35.681525,
+ "longitude": 139.714472,
+ "polygon": [
+ [
+ 139.71436210989012,
+ 35.68161509009009
+ ],
+ [
+ 139.71458189010988,
+ 35.68161509009009
+ ],
+ [
+ 139.71458189010988,
+ 35.68143490990991
+ ],
+ [
+ 139.71436210989012,
+ 35.68143490990991
+ ],
+ [
+ 139.71436210989012,
+ 35.68161509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaDairokuShogakkoIriguchi.519.2",
+ "name": "四谷第六小学校入口",
+ "latitude": 35.6816,
+ "longitude": 139.714261,
+ "polygon": [
+ [
+ 139.7141511098901,
+ 35.68169009009009
+ ],
+ [
+ 139.71437089010988,
+ 35.68169009009009
+ ],
+ [
+ 139.71437089010988,
+ 35.68150990990991
+ ],
+ [
+ 139.7141511098901,
+ 35.68150990990991
+ ],
+ [
+ 139.7141511098901,
+ 35.68169009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GodoJutaku.520.1",
+ "name": "合同住宅前",
+ "latitude": 35.726853,
+ "longitude": 139.666063,
+ "polygon": [
+ [
+ 139.66595310989013,
+ 35.72694309009009
+ ],
+ [
+ 139.6661728901099,
+ 35.72694309009009
+ ],
+ [
+ 139.6661728901099,
+ 35.72676290990991
+ ],
+ [
+ 139.66595310989013,
+ 35.72676290990991
+ ],
+ [
+ 139.66595310989013,
+ 35.72694309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GodoJutaku.520.2",
+ "name": "合同住宅前",
+ "latitude": 35.727127,
+ "longitude": 139.665629,
+ "polygon": [
+ [
+ 139.6655191098901,
+ 35.72721709009009
+ ],
+ [
+ 139.66573889010988,
+ 35.72721709009009
+ ],
+ [
+ 139.66573889010988,
+ 35.72703690990991
+ ],
+ [
+ 139.6655191098901,
+ 35.72703690990991
+ ],
+ [
+ 139.6655191098901,
+ 35.72721709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kojima.522.2",
+ "name": "小島",
+ "latitude": 35.674112,
+ "longitude": 139.853149,
+ "polygon": [
+ [
+ 139.85303910989012,
+ 35.67420209009009
+ ],
+ [
+ 139.85325889010988,
+ 35.67420209009009
+ ],
+ [
+ 139.85325889010988,
+ 35.67402190990991
+ ],
+ [
+ 139.85303910989012,
+ 35.67402190990991
+ ],
+ [
+ 139.85303910989012,
+ 35.67420209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaKasaiNichome.523.1",
+ "name": "北葛西二丁目",
+ "latitude": 35.67179,
+ "longitude": 139.856317,
+ "polygon": [
+ [
+ 139.8562071098901,
+ 35.67188009009009
+ ],
+ [
+ 139.85642689010987,
+ 35.67188009009009
+ ],
+ [
+ 139.85642689010987,
+ 35.67169990990991
+ ],
+ [
+ 139.8562071098901,
+ 35.67169990990991
+ ],
+ [
+ 139.8562071098901,
+ 35.67188009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaKasaiNichome.523.2",
+ "name": "北葛西二丁目",
+ "latitude": 35.672049,
+ "longitude": 139.855744,
+ "polygon": [
+ [
+ 139.8556341098901,
+ 35.67213909009009
+ ],
+ [
+ 139.85585389010987,
+ 35.67213909009009
+ ],
+ [
+ 139.85585389010987,
+ 35.67195890990991
+ ],
+ [
+ 139.8556341098901,
+ 35.67195890990991
+ ],
+ [
+ 139.8556341098901,
+ 35.67213909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotakechoNichome.524.1",
+ "name": "小竹町二丁目",
+ "latitude": 35.744179,
+ "longitude": 139.672795,
+ "polygon": [
+ [
+ 139.67268510989012,
+ 35.74426909009009
+ ],
+ [
+ 139.6729048901099,
+ 35.74426909009009
+ ],
+ [
+ 139.6729048901099,
+ 35.74408890990991
+ ],
+ [
+ 139.67268510989012,
+ 35.74408890990991
+ ],
+ [
+ 139.67268510989012,
+ 35.74426909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotakechoNichome.524.2",
+ "name": "小竹町二丁目",
+ "latitude": 35.74336,
+ "longitude": 139.671998,
+ "polygon": [
+ [
+ 139.67188810989012,
+ 35.74345009009009
+ ],
+ [
+ 139.67210789010988,
+ 35.74345009009009
+ ],
+ [
+ 139.67210789010988,
+ 35.74326990990991
+ ],
+ [
+ 139.67188810989012,
+ 35.74326990990991
+ ],
+ [
+ 139.67188810989012,
+ 35.74345009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaDaiichiShogakko.525.1",
+ "name": "小平第一小学校前",
+ "latitude": 35.730336,
+ "longitude": 139.463412,
+ "polygon": [
+ [
+ 139.46330210989012,
+ 35.73042609009009
+ ],
+ [
+ 139.4635218901099,
+ 35.73042609009009
+ ],
+ [
+ 139.4635218901099,
+ 35.73024590990991
+ ],
+ [
+ 139.46330210989012,
+ 35.73024590990991
+ ],
+ [
+ 139.46330210989012,
+ 35.73042609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaDaiichiShogakko.525.2",
+ "name": "小平第一小学校前",
+ "latitude": 35.730223,
+ "longitude": 139.463791,
+ "polygon": [
+ [
+ 139.4636811098901,
+ 35.73031309009009
+ ],
+ [
+ 139.46390089010987,
+ 35.73031309009009
+ ],
+ [
+ 139.46390089010987,
+ 35.73013290990991
+ ],
+ [
+ 139.4636811098901,
+ 35.73013290990991
+ ],
+ [
+ 139.4636811098901,
+ 35.73031309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaStationIriguchi.526.1",
+ "name": "小平駅入口",
+ "latitude": 35.731447,
+ "longitude": 139.487662,
+ "polygon": [
+ [
+ 139.48755210989012,
+ 35.73153709009009
+ ],
+ [
+ 139.48777189010988,
+ 35.73153709009009
+ ],
+ [
+ 139.48777189010988,
+ 35.73135690990991
+ ],
+ [
+ 139.48755210989012,
+ 35.73135690990991
+ ],
+ [
+ 139.48755210989012,
+ 35.73153709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaStationIriguchi.526.2",
+ "name": "小平駅入口",
+ "latitude": 35.730653,
+ "longitude": 139.486185,
+ "polygon": [
+ [
+ 139.48607510989012,
+ 35.73074309009009
+ ],
+ [
+ 139.4862948901099,
+ 35.73074309009009
+ ],
+ [
+ 139.4862948901099,
+ 35.73056290990991
+ ],
+ [
+ 139.48607510989012,
+ 35.73056290990991
+ ],
+ [
+ 139.48607510989012,
+ 35.73074309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaStation.527.3",
+ "name": "小平駅前",
+ "latitude": 35.736984,
+ "longitude": 139.488158,
+ "polygon": [
+ [
+ 139.48804810989012,
+ 35.73707409009009
+ ],
+ [
+ 139.48826789010988,
+ 35.73707409009009
+ ],
+ [
+ 139.48826789010988,
+ 35.73689390990991
+ ],
+ [
+ 139.48804810989012,
+ 35.73689390990991
+ ],
+ [
+ 139.48804810989012,
+ 35.73707409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakamachiTerrace.528.1",
+ "name": "なかまちテラス",
+ "latitude": 35.730729,
+ "longitude": 139.484574,
+ "polygon": [
+ [
+ 139.48446410989013,
+ 35.73081909009009
+ ],
+ [
+ 139.4846838901099,
+ 35.73081909009009
+ ],
+ [
+ 139.4846838901099,
+ 35.730638909909906
+ ],
+ [
+ 139.48446410989013,
+ 35.730638909909906
+ ],
+ [
+ 139.48446410989013,
+ 35.73081909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakamachiTerrace.528.2",
+ "name": "なかまちテラス",
+ "latitude": 35.730611,
+ "longitude": 139.483879,
+ "polygon": [
+ [
+ 139.48376910989012,
+ 35.73070109009009
+ ],
+ [
+ 139.48398889010988,
+ 35.73070109009009
+ ],
+ [
+ 139.48398889010988,
+ 35.73052090990991
+ ],
+ [
+ 139.48376910989012,
+ 35.73052090990991
+ ],
+ [
+ 139.48376910989012,
+ 35.73070109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaGodoChosha.529.1",
+ "name": "小平合同庁舎前",
+ "latitude": 35.730486,
+ "longitude": 139.512914,
+ "polygon": [
+ [
+ 139.5128041098901,
+ 35.73057609009009
+ ],
+ [
+ 139.51302389010988,
+ 35.73057609009009
+ ],
+ [
+ 139.51302389010988,
+ 35.73039590990991
+ ],
+ [
+ 139.5128041098901,
+ 35.73039590990991
+ ],
+ [
+ 139.5128041098901,
+ 35.73057609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoKomatsubashi.650.1",
+ "name": "下小松橋",
+ "latitude": 35.720163,
+ "longitude": 139.865975,
+ "polygon": [
+ [
+ 139.8658651098901,
+ 35.72025309009009
+ ],
+ [
+ 139.86608489010987,
+ 35.72025309009009
+ ],
+ [
+ 139.86608489010987,
+ 35.72007290990991
+ ],
+ [
+ 139.8658651098901,
+ 35.72007290990991
+ ],
+ [
+ 139.8658651098901,
+ 35.72025309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaGodoChosha.529.2",
+ "name": "小平合同庁舎前",
+ "latitude": 35.730376,
+ "longitude": 139.513508,
+ "polygon": [
+ [
+ 139.51339810989012,
+ 35.73046609009009
+ ],
+ [
+ 139.51361789010988,
+ 35.73046609009009
+ ],
+ [
+ 139.51361789010988,
+ 35.73028590990991
+ ],
+ [
+ 139.51339810989012,
+ 35.73028590990991
+ ],
+ [
+ 139.51339810989012,
+ 35.73046609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaNakamachi.530.1",
+ "name": "小平仲町",
+ "latitude": 35.732843,
+ "longitude": 139.487724,
+ "polygon": [
+ [
+ 139.4876141098901,
+ 35.73293309009009
+ ],
+ [
+ 139.48783389010987,
+ 35.73293309009009
+ ],
+ [
+ 139.48783389010987,
+ 35.73275290990991
+ ],
+ [
+ 139.4876141098901,
+ 35.73275290990991
+ ],
+ [
+ 139.4876141098901,
+ 35.73293309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kototoibashi.533.1",
+ "name": "言問橋",
+ "latitude": 35.712085,
+ "longitude": 139.805183,
+ "polygon": [
+ [
+ 139.80507310989012,
+ 35.71217509009009
+ ],
+ [
+ 139.80529289010988,
+ 35.71217509009009
+ ],
+ [
+ 139.80529289010988,
+ 35.71199490990991
+ ],
+ [
+ 139.80507310989012,
+ 35.71199490990991
+ ],
+ [
+ 139.80507310989012,
+ 35.71217509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaNakamachi.530.2",
+ "name": "小平仲町",
+ "latitude": 35.732227,
+ "longitude": 139.487889,
+ "polygon": [
+ [
+ 139.4877791098901,
+ 35.73231709009009
+ ],
+ [
+ 139.48799889010988,
+ 35.73231709009009
+ ],
+ [
+ 139.48799889010988,
+ 35.73213690990991
+ ],
+ [
+ 139.4877791098901,
+ 35.73213690990991
+ ],
+ [
+ 139.4877791098901,
+ 35.73231709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokkaiGijido.531.1",
+ "name": "国会議事堂前",
+ "latitude": 35.677804,
+ "longitude": 139.744603,
+ "polygon": [
+ [
+ 139.74449310989013,
+ 35.67789409009009
+ ],
+ [
+ 139.7447128901099,
+ 35.67789409009009
+ ],
+ [
+ 139.7447128901099,
+ 35.67771390990991
+ ],
+ [
+ 139.74449310989013,
+ 35.67771390990991
+ ],
+ [
+ 139.74449310989013,
+ 35.67789409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokkaiGijido.531.2",
+ "name": "国会議事堂前",
+ "latitude": 35.677516,
+ "longitude": 139.744067,
+ "polygon": [
+ [
+ 139.74395710989012,
+ 35.67760609009009
+ ],
+ [
+ 139.74417689010988,
+ 35.67760609009009
+ ],
+ [
+ 139.74417689010988,
+ 35.67742590990991
+ ],
+ [
+ 139.74395710989012,
+ 35.67742590990991
+ ],
+ [
+ 139.74395710989012,
+ 35.67760609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kodemmacho.532.1",
+ "name": "小伝馬町",
+ "latitude": 35.690043,
+ "longitude": 139.778956,
+ "polygon": [
+ [
+ 139.7788461098901,
+ 35.69013309009009
+ ],
+ [
+ 139.77906589010988,
+ 35.69013309009009
+ ],
+ [
+ 139.77906589010988,
+ 35.68995290990991
+ ],
+ [
+ 139.7788461098901,
+ 35.68995290990991
+ ],
+ [
+ 139.7788461098901,
+ 35.69013309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kodemmacho.532.2",
+ "name": "小伝馬町",
+ "latitude": 35.691103,
+ "longitude": 139.779394,
+ "polygon": [
+ [
+ 139.7792841098901,
+ 35.69119309009009
+ ],
+ [
+ 139.77950389010988,
+ 35.69119309009009
+ ],
+ [
+ 139.77950389010988,
+ 35.69101290990991
+ ],
+ [
+ 139.7792841098901,
+ 35.69101290990991
+ ],
+ [
+ 139.7792841098901,
+ 35.69119309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kodemmacho.532.3",
+ "name": "小伝馬町",
+ "latitude": 35.690422,
+ "longitude": 139.777744,
+ "polygon": [
+ [
+ 139.77763410989013,
+ 35.69051209009009
+ ],
+ [
+ 139.7778538901099,
+ 35.69051209009009
+ ],
+ [
+ 139.7778538901099,
+ 35.69033190990991
+ ],
+ [
+ 139.77763410989013,
+ 35.69033190990991
+ ],
+ [
+ 139.77763410989013,
+ 35.69051209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kototoibashi.533.2",
+ "name": "言問橋",
+ "latitude": 35.712543,
+ "longitude": 139.806163,
+ "polygon": [
+ [
+ 139.80605310989012,
+ 35.71263309009009
+ ],
+ [
+ 139.80627289010988,
+ 35.71263309009009
+ ],
+ [
+ 139.80627289010988,
+ 35.712452909909906
+ ],
+ [
+ 139.80605310989012,
+ 35.712452909909906
+ ],
+ [
+ 139.80605310989012,
+ 35.71263309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kototoibashi.533.3",
+ "name": "言問橋",
+ "latitude": 35.712249,
+ "longitude": 139.805083,
+ "polygon": [
+ [
+ 139.8049731098901,
+ 35.71233909009009
+ ],
+ [
+ 139.80519289010988,
+ 35.71233909009009
+ ],
+ [
+ 139.80519289010988,
+ 35.71215890990991
+ ],
+ [
+ 139.8049731098901,
+ 35.71215890990991
+ ],
+ [
+ 139.8049731098901,
+ 35.71233909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kototoibashi.533.4",
+ "name": "言問橋",
+ "latitude": 35.712562,
+ "longitude": 139.806424,
+ "polygon": [
+ [
+ 139.8063141098901,
+ 35.71265209009009
+ ],
+ [
+ 139.80653389010988,
+ 35.71265209009009
+ ],
+ [
+ 139.80653389010988,
+ 35.71247190990991
+ ],
+ [
+ 139.8063141098901,
+ 35.71247190990991
+ ],
+ [
+ 139.8063141098901,
+ 35.71265209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotobukiSanchome.534.1",
+ "name": "寿三丁目",
+ "latitude": 35.706076,
+ "longitude": 139.79025,
+ "polygon": [
+ [
+ 139.7901401098901,
+ 35.70616609009009
+ ],
+ [
+ 139.79035989010987,
+ 35.70616609009009
+ ],
+ [
+ 139.79035989010987,
+ 35.70598590990991
+ ],
+ [
+ 139.7901401098901,
+ 35.70598590990991
+ ],
+ [
+ 139.7901401098901,
+ 35.70616609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotobukiSanchome.534.2",
+ "name": "寿三丁目",
+ "latitude": 35.706312,
+ "longitude": 139.78964,
+ "polygon": [
+ [
+ 139.7895301098901,
+ 35.70640209009009
+ ],
+ [
+ 139.78974989010987,
+ 35.70640209009009
+ ],
+ [
+ 139.78974989010987,
+ 35.70622190990991
+ ],
+ [
+ 139.7895301098901,
+ 35.70622190990991
+ ],
+ [
+ 139.7895301098901,
+ 35.70640209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohinataYonchome.536.1",
+ "name": "小日向四丁目",
+ "latitude": 35.7164,
+ "longitude": 139.739003,
+ "polygon": [
+ [
+ 139.7388931098901,
+ 35.71649009009009
+ ],
+ [
+ 139.73911289010988,
+ 35.71649009009009
+ ],
+ [
+ 139.73911289010988,
+ 35.71630990990991
+ ],
+ [
+ 139.7388931098901,
+ 35.71630990990991
+ ],
+ [
+ 139.7388931098901,
+ 35.71649009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohinataYonchome.536.2",
+ "name": "小日向四丁目",
+ "latitude": 35.716333,
+ "longitude": 139.738718,
+ "polygon": [
+ [
+ 139.73860810989012,
+ 35.71642309009009
+ ],
+ [
+ 139.7388278901099,
+ 35.71642309009009
+ ],
+ [
+ 139.7388278901099,
+ 35.71624290990991
+ ],
+ [
+ 139.73860810989012,
+ 35.71624290990991
+ ],
+ [
+ 139.73860810989012,
+ 35.71642309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komagatabashi.537.1",
+ "name": "駒形橋",
+ "latitude": 35.707999,
+ "longitude": 139.795487,
+ "polygon": [
+ [
+ 139.79537710989013,
+ 35.70808909009009
+ ],
+ [
+ 139.7955968901099,
+ 35.70808909009009
+ ],
+ [
+ 139.7955968901099,
+ 35.70790890990991
+ ],
+ [
+ 139.79537710989013,
+ 35.70790890990991
+ ],
+ [
+ 139.79537710989013,
+ 35.70808909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komagatabashi.537.2",
+ "name": "駒形橋",
+ "latitude": 35.708138,
+ "longitude": 139.795811,
+ "polygon": [
+ [
+ 139.7957011098901,
+ 35.70822809009009
+ ],
+ [
+ 139.79592089010987,
+ 35.70822809009009
+ ],
+ [
+ 139.79592089010987,
+ 35.70804790990991
+ ],
+ [
+ 139.7957011098901,
+ 35.70804790990991
+ ],
+ [
+ 139.7957011098901,
+ 35.70822809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komagatabashi.537.3",
+ "name": "駒形橋",
+ "latitude": 35.708837,
+ "longitude": 139.794975,
+ "polygon": [
+ [
+ 139.7948651098901,
+ 35.70892709009009
+ ],
+ [
+ 139.79508489010988,
+ 35.70892709009009
+ ],
+ [
+ 139.79508489010988,
+ 35.70874690990991
+ ],
+ [
+ 139.7948651098901,
+ 35.70874690990991
+ ],
+ [
+ 139.7948651098901,
+ 35.70892709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komakicho.538.1",
+ "name": "駒木町",
+ "latitude": 35.78245,
+ "longitude": 139.258644,
+ "polygon": [
+ [
+ 139.25853410989012,
+ 35.78254009009009
+ ],
+ [
+ 139.2587538901099,
+ 35.78254009009009
+ ],
+ [
+ 139.2587538901099,
+ 35.78235990990991
+ ],
+ [
+ 139.25853410989012,
+ 35.78235990990991
+ ],
+ [
+ 139.25853410989012,
+ 35.78254009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komakicho.538.2",
+ "name": "駒木町",
+ "latitude": 35.782383,
+ "longitude": 139.258414,
+ "polygon": [
+ [
+ 139.2583041098901,
+ 35.78247309009009
+ ],
+ [
+ 139.25852389010987,
+ 35.78247309009009
+ ],
+ [
+ 139.25852389010987,
+ 35.78229290990991
+ ],
+ [
+ 139.2583041098901,
+ 35.78229290990991
+ ],
+ [
+ 139.2583041098901,
+ 35.78247309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komakichosanchome.539.1",
+ "name": "駒木町三丁目",
+ "latitude": 35.783297,
+ "longitude": 139.25047,
+ "polygon": [
+ [
+ 139.25036010989012,
+ 35.78338709009009
+ ],
+ [
+ 139.2505798901099,
+ 35.78338709009009
+ ],
+ [
+ 139.2505798901099,
+ 35.78320690990991
+ ],
+ [
+ 139.25036010989012,
+ 35.78320690990991
+ ],
+ [
+ 139.25036010989012,
+ 35.78338709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komakichosanchome.539.2",
+ "name": "駒木町三丁目",
+ "latitude": 35.783384,
+ "longitude": 139.24992,
+ "polygon": [
+ [
+ 139.24981010989012,
+ 35.78347409009009
+ ],
+ [
+ 139.2500298901099,
+ 35.78347409009009
+ ],
+ [
+ 139.2500298901099,
+ 35.78329390990991
+ ],
+ [
+ 139.24981010989012,
+ 35.78329390990991
+ ],
+ [
+ 139.24981010989012,
+ 35.78347409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaItchome.540.1",
+ "name": "畑中一丁目",
+ "latitude": 35.783909,
+ "longitude": 139.247728,
+ "polygon": [
+ [
+ 139.2476181098901,
+ 35.78399909009009
+ ],
+ [
+ 139.24783789010988,
+ 35.78399909009009
+ ],
+ [
+ 139.24783789010988,
+ 35.78381890990991
+ ],
+ [
+ 139.2476181098901,
+ 35.78381890990991
+ ],
+ [
+ 139.2476181098901,
+ 35.78399909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaItchome.540.2",
+ "name": "畑中一丁目",
+ "latitude": 35.784018,
+ "longitude": 139.248108,
+ "polygon": [
+ [
+ 139.24799810989012,
+ 35.78410809009009
+ ],
+ [
+ 139.24821789010988,
+ 35.78410809009009
+ ],
+ [
+ 139.24821789010988,
+ 35.78392790990991
+ ],
+ [
+ 139.24799810989012,
+ 35.78392790990991
+ ],
+ [
+ 139.24799810989012,
+ 35.78410809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomagomeStationMinamiguchi.542.1",
+ "name": "駒込駅南口",
+ "latitude": 35.73585,
+ "longitude": 139.74715,
+ "polygon": [
+ [
+ 139.74704010989012,
+ 35.73594009009009
+ ],
+ [
+ 139.7472598901099,
+ 35.73594009009009
+ ],
+ [
+ 139.7472598901099,
+ 35.73575990990991
+ ],
+ [
+ 139.74704010989012,
+ 35.73575990990991
+ ],
+ [
+ 139.74704010989012,
+ 35.73594009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sannohashi.587.1",
+ "name": "三ノ橋",
+ "latitude": 35.649957,
+ "longitude": 139.736575,
+ "polygon": [
+ [
+ 139.7364651098901,
+ 35.65004709009009
+ ],
+ [
+ 139.73668489010987,
+ 35.65004709009009
+ ],
+ [
+ 139.73668489010987,
+ 35.64986690990991
+ ],
+ [
+ 139.7364651098901,
+ 35.64986690990991
+ ],
+ [
+ 139.7364651098901,
+ 35.65004709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomagomeSendagicho.543.1",
+ "name": "駒込千駄木町",
+ "latitude": 35.724636,
+ "longitude": 139.757547,
+ "polygon": [
+ [
+ 139.7574371098901,
+ 35.72472609009009
+ ],
+ [
+ 139.75765689010987,
+ 35.72472609009009
+ ],
+ [
+ 139.75765689010987,
+ 35.72454590990991
+ ],
+ [
+ 139.7574371098901,
+ 35.72454590990991
+ ],
+ [
+ 139.7574371098901,
+ 35.72472609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomagomeSendagicho.543.2",
+ "name": "駒込千駄木町",
+ "latitude": 35.724569,
+ "longitude": 139.757072,
+ "polygon": [
+ [
+ 139.7569621098901,
+ 35.72465909009009
+ ],
+ [
+ 139.75718189010988,
+ 35.72465909009009
+ ],
+ [
+ 139.75718189010988,
+ 35.72447890990991
+ ],
+ [
+ 139.7569621098901,
+ 35.72447890990991
+ ],
+ [
+ 139.7569621098901,
+ 35.72465909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaSanchome.552.2",
+ "name": "小松川三丁目",
+ "latitude": 35.699215,
+ "longitude": 139.849785,
+ "polygon": [
+ [
+ 139.84967510989011,
+ 35.69930509009009
+ ],
+ [
+ 139.84989489010988,
+ 35.69930509009009
+ ],
+ [
+ 139.84989489010988,
+ 35.69912490990991
+ ],
+ [
+ 139.84967510989011,
+ 35.69912490990991
+ ],
+ [
+ 139.84967510989011,
+ 35.69930509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagiItchome.544.1",
+ "name": "千駄木一丁目",
+ "latitude": 35.724955,
+ "longitude": 139.760222,
+ "polygon": [
+ [
+ 139.76011210989012,
+ 35.72504509009009
+ ],
+ [
+ 139.76033189010988,
+ 35.72504509009009
+ ],
+ [
+ 139.76033189010988,
+ 35.72486490990991
+ ],
+ [
+ 139.76011210989012,
+ 35.72486490990991
+ ],
+ [
+ 139.76011210989012,
+ 35.72504509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagiItchome.544.2",
+ "name": "千駄木一丁目",
+ "latitude": 35.724899,
+ "longitude": 139.759111,
+ "polygon": [
+ [
+ 139.7590011098901,
+ 35.72498909009009
+ ],
+ [
+ 139.75922089010987,
+ 35.72498909009009
+ ],
+ [
+ 139.75922089010987,
+ 35.72480890990991
+ ],
+ [
+ 139.7590011098901,
+ 35.72480890990991
+ ],
+ [
+ 139.7590011098901,
+ 35.72498909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomagomeByoin.545.1",
+ "name": "駒込病院前",
+ "latitude": 35.729911,
+ "longitude": 139.757457,
+ "polygon": [
+ [
+ 139.7573471098901,
+ 35.73000109009009
+ ],
+ [
+ 139.75756689010987,
+ 35.73000109009009
+ ],
+ [
+ 139.75756689010987,
+ 35.72982090990991
+ ],
+ [
+ 139.7573471098901,
+ 35.72982090990991
+ ],
+ [
+ 139.7573471098901,
+ 35.73000109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomagomeByoin.545.2",
+ "name": "駒込病院前",
+ "latitude": 35.729843,
+ "longitude": 139.757433,
+ "polygon": [
+ [
+ 139.7573231098901,
+ 35.72993309009009
+ ],
+ [
+ 139.75754289010987,
+ 35.72993309009009
+ ],
+ [
+ 139.75754289010987,
+ 35.72975290990991
+ ],
+ [
+ 139.7573231098901,
+ 35.72975290990991
+ ],
+ [
+ 139.7573231098901,
+ 35.72993309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomagomeByoin.545.3",
+ "name": "駒込病院前",
+ "latitude": 35.730312,
+ "longitude": 139.757441,
+ "polygon": [
+ [
+ 139.75733110989012,
+ 35.73040209009009
+ ],
+ [
+ 139.75755089010988,
+ 35.73040209009009
+ ],
+ [
+ 139.75755089010988,
+ 35.73022190990991
+ ],
+ [
+ 139.75733110989012,
+ 35.73022190990991
+ ],
+ [
+ 139.75733110989012,
+ 35.73040209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomagomeFujimae.546.1",
+ "name": "駒込富士前",
+ "latitude": 35.729729,
+ "longitude": 139.751278,
+ "polygon": [
+ [
+ 139.75116810989013,
+ 35.72981909009009
+ ],
+ [
+ 139.7513878901099,
+ 35.72981909009009
+ ],
+ [
+ 139.7513878901099,
+ 35.72963890990991
+ ],
+ [
+ 139.75116810989013,
+ 35.72963890990991
+ ],
+ [
+ 139.75116810989013,
+ 35.72981909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomagomeFujimae.546.2",
+ "name": "駒込富士前",
+ "latitude": 35.729254,
+ "longitude": 139.751803,
+ "polygon": [
+ [
+ 139.7516931098901,
+ 35.72934409009009
+ ],
+ [
+ 139.75191289010988,
+ 35.72934409009009
+ ],
+ [
+ 139.75191289010988,
+ 35.72916390990991
+ ],
+ [
+ 139.7516931098901,
+ 35.72916390990991
+ ],
+ [
+ 139.7516931098901,
+ 35.72934409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaKuminkan.550.1",
+ "name": "小松川区民館前",
+ "latitude": 35.70259,
+ "longitude": 139.847357,
+ "polygon": [
+ [
+ 139.8472471098901,
+ 35.70268009009009
+ ],
+ [
+ 139.84746689010987,
+ 35.70268009009009
+ ],
+ [
+ 139.84746689010987,
+ 35.70249990990991
+ ],
+ [
+ 139.8472471098901,
+ 35.70249990990991
+ ],
+ [
+ 139.8472471098901,
+ 35.70268009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaKuminkan.550.2",
+ "name": "小松川区民館前",
+ "latitude": 35.703439,
+ "longitude": 139.846763,
+ "polygon": [
+ [
+ 139.84665310989013,
+ 35.70352909009009
+ ],
+ [
+ 139.8468728901099,
+ 35.70352909009009
+ ],
+ [
+ 139.8468728901099,
+ 35.70334890990991
+ ],
+ [
+ 139.84665310989013,
+ 35.70334890990991
+ ],
+ [
+ 139.84665310989013,
+ 35.70352909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaKeisatsusho.551.1",
+ "name": "小松川警察署前",
+ "latitude": 35.702103,
+ "longitude": 139.863829,
+ "polygon": [
+ [
+ 139.86371910989013,
+ 35.70219309009009
+ ],
+ [
+ 139.8639388901099,
+ 35.70219309009009
+ ],
+ [
+ 139.8639388901099,
+ 35.70201290990991
+ ],
+ [
+ 139.86371910989013,
+ 35.70201290990991
+ ],
+ [
+ 139.86371910989013,
+ 35.70219309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaKeisatsusho.551.2",
+ "name": "小松川警察署前",
+ "latitude": 35.702628,
+ "longitude": 139.864895,
+ "polygon": [
+ [
+ 139.8647851098901,
+ 35.70271809009009
+ ],
+ [
+ 139.86500489010987,
+ 35.70271809009009
+ ],
+ [
+ 139.86500489010987,
+ 35.70253790990991
+ ],
+ [
+ 139.8647851098901,
+ 35.70253790990991
+ ],
+ [
+ 139.8647851098901,
+ 35.70271809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaSanchome.552.1",
+ "name": "小松川三丁目",
+ "latitude": 35.699437,
+ "longitude": 139.849799,
+ "polygon": [
+ [
+ 139.8496891098901,
+ 35.69952709009009
+ ],
+ [
+ 139.84990889010987,
+ 35.69952709009009
+ ],
+ [
+ 139.84990889010987,
+ 35.69934690990991
+ ],
+ [
+ 139.8496891098901,
+ 35.69934690990991
+ ],
+ [
+ 139.8496891098901,
+ 35.69952709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaSanchome.552.3",
+ "name": "小松川三丁目",
+ "latitude": 35.699892,
+ "longitude": 139.848643,
+ "polygon": [
+ [
+ 139.84853310989013,
+ 35.69998209009009
+ ],
+ [
+ 139.8487528901099,
+ 35.69998209009009
+ ],
+ [
+ 139.8487528901099,
+ 35.69980190990991
+ ],
+ [
+ 139.84853310989013,
+ 35.69980190990991
+ ],
+ [
+ 139.84853310989013,
+ 35.69998209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsuChugakko.553.1",
+ "name": "小松中学校前",
+ "latitude": 35.719485,
+ "longitude": 139.864891,
+ "polygon": [
+ [
+ 139.86478110989012,
+ 35.71957509009009
+ ],
+ [
+ 139.86500089010988,
+ 35.71957509009009
+ ],
+ [
+ 139.86500089010988,
+ 35.71939490990991
+ ],
+ [
+ 139.86478110989012,
+ 35.71939490990991
+ ],
+ [
+ 139.86478110989012,
+ 35.71957509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsuChugakko.553.2",
+ "name": "小松中学校前",
+ "latitude": 35.719843,
+ "longitude": 139.865082,
+ "polygon": [
+ [
+ 139.86497210989012,
+ 35.71993309009009
+ ],
+ [
+ 139.86519189010988,
+ 35.71993309009009
+ ],
+ [
+ 139.86519189010988,
+ 35.71975290990991
+ ],
+ [
+ 139.86497210989012,
+ 35.71975290990991
+ ],
+ [
+ 139.86497210989012,
+ 35.71993309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komone.555.1",
+ "name": "小茂根",
+ "latitude": 35.748115,
+ "longitude": 139.678559,
+ "polygon": [
+ [
+ 139.67844910989012,
+ 35.74820509009009
+ ],
+ [
+ 139.6786688901099,
+ 35.74820509009009
+ ],
+ [
+ 139.6786688901099,
+ 35.74802490990991
+ ],
+ [
+ 139.67844910989012,
+ 35.74802490990991
+ ],
+ [
+ 139.67844910989012,
+ 35.74820509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Komone.555.2",
+ "name": "小茂根",
+ "latitude": 35.748229,
+ "longitude": 139.678422,
+ "polygon": [
+ [
+ 139.67831210989013,
+ 35.74831909009009
+ ],
+ [
+ 139.6785318901099,
+ 35.74831909009009
+ ],
+ [
+ 139.6785318901099,
+ 35.74813890990991
+ ],
+ [
+ 139.67831210989013,
+ 35.74813890990991
+ ],
+ [
+ 139.67831210989013,
+ 35.74831909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Goshikibashi.558.2",
+ "name": "五色橋",
+ "latitude": 35.636478,
+ "longitude": 139.752176,
+ "polygon": [
+ [
+ 139.7520661098901,
+ 35.63656809009009
+ ],
+ [
+ 139.75228589010987,
+ 35.63656809009009
+ ],
+ [
+ 139.75228589010987,
+ 35.63638790990991
+ ],
+ [
+ 139.7520661098901,
+ 35.63638790990991
+ ],
+ [
+ 139.7520661098901,
+ 35.63656809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GokokujiSeimon.556.1",
+ "name": "護国寺正門前",
+ "latitude": 35.720844,
+ "longitude": 139.728895,
+ "polygon": [
+ [
+ 139.7287851098901,
+ 35.72093409009009
+ ],
+ [
+ 139.72900489010988,
+ 35.72093409009009
+ ],
+ [
+ 139.72900489010988,
+ 35.72075390990991
+ ],
+ [
+ 139.7287851098901,
+ 35.72075390990991
+ ],
+ [
+ 139.7287851098901,
+ 35.72093409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GokokujiSeimon.556.2",
+ "name": "護国寺正門前",
+ "latitude": 35.720257,
+ "longitude": 139.727826,
+ "polygon": [
+ [
+ 139.7277161098901,
+ 35.72034709009009
+ ],
+ [
+ 139.72793589010988,
+ 35.72034709009009
+ ],
+ [
+ 139.72793589010988,
+ 35.720166909909906
+ ],
+ [
+ 139.7277161098901,
+ 35.720166909909906
+ ],
+ [
+ 139.7277161098901,
+ 35.72034709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Gokokuji.557.1",
+ "name": "護国寺前",
+ "latitude": 35.719913,
+ "longitude": 139.72606,
+ "polygon": [
+ [
+ 139.7259501098901,
+ 35.72000309009009
+ ],
+ [
+ 139.72616989010987,
+ 35.72000309009009
+ ],
+ [
+ 139.72616989010987,
+ 35.71982290990991
+ ],
+ [
+ 139.7259501098901,
+ 35.71982290990991
+ ],
+ [
+ 139.7259501098901,
+ 35.72000309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakaigawa.565.4",
+ "name": "境川",
+ "latitude": 35.676604,
+ "longitude": 139.82715,
+ "polygon": [
+ [
+ 139.8270401098901,
+ 35.67669409009009
+ ],
+ [
+ 139.82725989010987,
+ 35.67669409009009
+ ],
+ [
+ 139.82725989010987,
+ 35.67651390990991
+ ],
+ [
+ 139.8270401098901,
+ 35.67651390990991
+ ],
+ [
+ 139.8270401098901,
+ 35.67669409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Gokokuji.557.2",
+ "name": "護国寺前",
+ "latitude": 35.720268,
+ "longitude": 139.723929,
+ "polygon": [
+ [
+ 139.72381910989012,
+ 35.72035809009009
+ ],
+ [
+ 139.72403889010988,
+ 35.72035809009009
+ ],
+ [
+ 139.72403889010988,
+ 35.72017790990991
+ ],
+ [
+ 139.72381910989012,
+ 35.72017790990991
+ ],
+ [
+ 139.72381910989012,
+ 35.72035809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Goshikibashi.558.1",
+ "name": "五色橋",
+ "latitude": 35.636662,
+ "longitude": 139.751841,
+ "polygon": [
+ [
+ 139.75173110989013,
+ 35.63675209009009
+ ],
+ [
+ 139.7519508901099,
+ 35.63675209009009
+ ],
+ [
+ 139.7519508901099,
+ 35.63657190990991
+ ],
+ [
+ 139.75173110989013,
+ 35.63657190990991
+ ],
+ [
+ 139.75173110989013,
+ 35.63675209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GotandaStation.559.5",
+ "name": "五反田駅",
+ "latitude": 35.626266,
+ "longitude": 139.724003,
+ "polygon": [
+ [
+ 139.72389310989013,
+ 35.62635609009009
+ ],
+ [
+ 139.7241128901099,
+ 35.62635609009009
+ ],
+ [
+ 139.7241128901099,
+ 35.62617590990991
+ ],
+ [
+ 139.72389310989013,
+ 35.62617590990991
+ ],
+ [
+ 139.72389310989013,
+ 35.62635609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GotandaStation.559.6",
+ "name": "五反田駅",
+ "latitude": 35.626141,
+ "longitude": 139.724096,
+ "polygon": [
+ [
+ 139.72398610989012,
+ 35.62623109009009
+ ],
+ [
+ 139.72420589010989,
+ 35.62623109009009
+ ],
+ [
+ 139.72420589010989,
+ 35.62605090990991
+ ],
+ [
+ 139.72398610989012,
+ 35.62605090990991
+ ],
+ [
+ 139.72398610989012,
+ 35.62623109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakakubashi.566.1",
+ "name": "坂久橋",
+ "latitude": 35.83173,
+ "longitude": 139.268399,
+ "polygon": [
+ [
+ 139.2682891098901,
+ 35.83182009009009
+ ],
+ [
+ 139.26850889010987,
+ 35.83182009009009
+ ],
+ [
+ 139.26850889010987,
+ 35.83163990990991
+ ],
+ [
+ 139.2682891098901,
+ 35.83163990990991
+ ],
+ [
+ 139.2682891098901,
+ 35.83182009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiGotandaItchome.560.1",
+ "name": "東五反田一丁目",
+ "latitude": 35.625869,
+ "longitude": 139.725137,
+ "polygon": [
+ [
+ 139.7250271098901,
+ 35.62595909009009
+ ],
+ [
+ 139.72524689010987,
+ 35.62595909009009
+ ],
+ [
+ 139.72524689010987,
+ 35.62577890990991
+ ],
+ [
+ 139.7250271098901,
+ 35.62577890990991
+ ],
+ [
+ 139.7250271098901,
+ 35.62595909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GotenYama.561.1",
+ "name": "御殿山",
+ "latitude": 35.623059,
+ "longitude": 139.734899,
+ "polygon": [
+ [
+ 139.73478910989013,
+ 35.62314909009009
+ ],
+ [
+ 139.7350088901099,
+ 35.62314909009009
+ ],
+ [
+ 139.7350088901099,
+ 35.62296890990991
+ ],
+ [
+ 139.73478910989013,
+ 35.62296890990991
+ ],
+ [
+ 139.73478910989013,
+ 35.62314909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GotenYama.561.2",
+ "name": "御殿山",
+ "latitude": 35.623187,
+ "longitude": 139.734904,
+ "polygon": [
+ [
+ 139.73479410989012,
+ 35.62327709009009
+ ],
+ [
+ 139.73501389010988,
+ 35.62327709009009
+ ],
+ [
+ 139.73501389010988,
+ 35.62309690990991
+ ],
+ [
+ 139.73479410989012,
+ 35.62309690990991
+ ],
+ [
+ 139.73479410989012,
+ 35.62327709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Gofukubashi.562.1",
+ "name": "呉服橋",
+ "latitude": 35.684126,
+ "longitude": 139.769273,
+ "polygon": [
+ [
+ 139.76916310989012,
+ 35.68421609009009
+ ],
+ [
+ 139.76938289010988,
+ 35.68421609009009
+ ],
+ [
+ 139.76938289010988,
+ 35.68403590990991
+ ],
+ [
+ 139.76916310989012,
+ 35.68403590990991
+ ],
+ [
+ 139.76916310989012,
+ 35.68421609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Gofukubashi.562.2",
+ "name": "呉服橋",
+ "latitude": 35.683889,
+ "longitude": 139.769086,
+ "polygon": [
+ [
+ 139.7689761098901,
+ 35.68397909009009
+ ],
+ [
+ 139.76919589010987,
+ 35.68397909009009
+ ],
+ [
+ 139.76919589010987,
+ 35.68379890990991
+ ],
+ [
+ 139.7689761098901,
+ 35.68379890990991
+ ],
+ [
+ 139.7689761098901,
+ 35.68397909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SakuradaiStation.570.1",
+ "name": "桜台駅前",
+ "latitude": 35.737093,
+ "longitude": 139.660611,
+ "polygon": [
+ [
+ 139.6605011098901,
+ 35.73718309009009
+ ],
+ [
+ 139.66072089010987,
+ 35.73718309009009
+ ],
+ [
+ 139.66072089010987,
+ 35.73700290990991
+ ],
+ [
+ 139.6605011098901,
+ 35.73700290990991
+ ],
+ [
+ 139.6605011098901,
+ 35.73718309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Gondawara.563.1",
+ "name": "権田原",
+ "latitude": 35.677701,
+ "longitude": 139.720527,
+ "polygon": [
+ [
+ 139.72041710989012,
+ 35.67779109009009
+ ],
+ [
+ 139.7206368901099,
+ 35.67779109009009
+ ],
+ [
+ 139.7206368901099,
+ 35.67761090990991
+ ],
+ [
+ 139.72041710989012,
+ 35.67761090990991
+ ],
+ [
+ 139.72041710989012,
+ 35.67779109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Gondawara.563.2",
+ "name": "権田原",
+ "latitude": 35.678076,
+ "longitude": 139.72061,
+ "polygon": [
+ [
+ 139.7205001098901,
+ 35.67816609009009
+ ],
+ [
+ 139.72071989010988,
+ 35.67816609009009
+ ],
+ [
+ 139.72071989010988,
+ 35.67798590990991
+ ],
+ [
+ 139.7205001098901,
+ 35.67798590990991
+ ],
+ [
+ 139.7205001098901,
+ 35.67816609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimohata.658.1",
+ "name": "下畑",
+ "latitude": 35.838236,
+ "longitude": 139.292587,
+ "polygon": [
+ [
+ 139.29247710989011,
+ 35.83832609009009
+ ],
+ [
+ 139.29269689010988,
+ 35.83832609009009
+ ],
+ [
+ 139.29269689010988,
+ 35.83814590990991
+ ],
+ [
+ 139.29247710989011,
+ 35.83814590990991
+ ],
+ [
+ 139.29247710989011,
+ 35.83832609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakaigawa.565.1",
+ "name": "境川",
+ "latitude": 35.677089,
+ "longitude": 139.827868,
+ "polygon": [
+ [
+ 139.8277581098901,
+ 35.67717909009009
+ ],
+ [
+ 139.82797789010988,
+ 35.67717909009009
+ ],
+ [
+ 139.82797789010988,
+ 35.67699890990991
+ ],
+ [
+ 139.8277581098901,
+ 35.67699890990991
+ ],
+ [
+ 139.8277581098901,
+ 35.67717909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakaigawa.565.2",
+ "name": "境川",
+ "latitude": 35.676303,
+ "longitude": 139.826914,
+ "polygon": [
+ [
+ 139.8268041098901,
+ 35.67639309009009
+ ],
+ [
+ 139.82702389010987,
+ 35.67639309009009
+ ],
+ [
+ 139.82702389010987,
+ 35.67621290990991
+ ],
+ [
+ 139.8268041098901,
+ 35.67621290990991
+ ],
+ [
+ 139.8268041098901,
+ 35.67639309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakaigawa.565.3",
+ "name": "境川",
+ "latitude": 35.676769,
+ "longitude": 139.828929,
+ "polygon": [
+ [
+ 139.8288191098901,
+ 35.67685909009009
+ ],
+ [
+ 139.82903889010987,
+ 35.67685909009009
+ ],
+ [
+ 139.82903889010987,
+ 35.67667890990991
+ ],
+ [
+ 139.8288191098901,
+ 35.67667890990991
+ ],
+ [
+ 139.8288191098901,
+ 35.67685909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakakubashi.566.2",
+ "name": "坂久橋",
+ "latitude": 35.831727,
+ "longitude": 139.268683,
+ "polygon": [
+ [
+ 139.26857310989013,
+ 35.83181709009009
+ ],
+ [
+ 139.2687928901099,
+ 35.83181709009009
+ ],
+ [
+ 139.2687928901099,
+ 35.83163690990991
+ ],
+ [
+ 139.26857310989013,
+ 35.83163690990991
+ ],
+ [
+ 139.26857310989013,
+ 35.83181709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SagaItchome.567.1",
+ "name": "佐賀一丁目",
+ "latitude": 35.675337,
+ "longitude": 139.789403,
+ "polygon": [
+ [
+ 139.7892931098901,
+ 35.67542709009009
+ ],
+ [
+ 139.78951289010988,
+ 35.67542709009009
+ ],
+ [
+ 139.78951289010988,
+ 35.67524690990991
+ ],
+ [
+ 139.7892931098901,
+ 35.67524690990991
+ ],
+ [
+ 139.7892931098901,
+ 35.67542709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SagaItchome.567.2",
+ "name": "佐賀一丁目",
+ "latitude": 35.675592,
+ "longitude": 139.789545,
+ "polygon": [
+ [
+ 139.78943510989012,
+ 35.67568209009009
+ ],
+ [
+ 139.7896548901099,
+ 35.67568209009009
+ ],
+ [
+ 139.7896548901099,
+ 35.67550190990991
+ ],
+ [
+ 139.78943510989012,
+ 35.67550190990991
+ ],
+ [
+ 139.78943510989012,
+ 35.67568209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SakuragiDoteUe.568.1",
+ "name": "桜木土手上",
+ "latitude": 35.754921,
+ "longitude": 139.778935,
+ "polygon": [
+ [
+ 139.7788251098901,
+ 35.75501109009009
+ ],
+ [
+ 139.77904489010987,
+ 35.75501109009009
+ ],
+ [
+ 139.77904489010987,
+ 35.75483090990991
+ ],
+ [
+ 139.7788251098901,
+ 35.75483090990991
+ ],
+ [
+ 139.7788251098901,
+ 35.75501109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SakuragiDoteUe.568.2",
+ "name": "桜木土手上",
+ "latitude": 35.754995,
+ "longitude": 139.778933,
+ "polygon": [
+ [
+ 139.7788231098901,
+ 35.75508509009009
+ ],
+ [
+ 139.77904289010988,
+ 35.75508509009009
+ ],
+ [
+ 139.77904289010988,
+ 35.75490490990991
+ ],
+ [
+ 139.7788231098901,
+ 35.75490490990991
+ ],
+ [
+ 139.7788231098901,
+ 35.75508509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SakuradaiStation.570.2",
+ "name": "桜台駅前",
+ "latitude": 35.737128,
+ "longitude": 139.660515,
+ "polygon": [
+ [
+ 139.66040510989012,
+ 35.73721809009009
+ ],
+ [
+ 139.6606248901099,
+ 35.73721809009009
+ ],
+ [
+ 139.6606248901099,
+ 35.73703790990991
+ ],
+ [
+ 139.66040510989012,
+ 35.73703790990991
+ ],
+ [
+ 139.66040510989012,
+ 35.73721809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SakuradaiStation.570.3",
+ "name": "桜台駅前",
+ "latitude": 35.738129,
+ "longitude": 139.66077,
+ "polygon": [
+ [
+ 139.66066010989013,
+ 35.73821909009009
+ ],
+ [
+ 139.6608798901099,
+ 35.73821909009009
+ ],
+ [
+ 139.6608798901099,
+ 35.73803890990991
+ ],
+ [
+ 139.66066010989013,
+ 35.73803890990991
+ ],
+ [
+ 139.66066010989013,
+ 35.73821909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakurabashi.571.1",
+ "name": "桜橋",
+ "latitude": 35.67504,
+ "longitude": 139.774718,
+ "polygon": [
+ [
+ 139.77460810989012,
+ 35.67513009009009
+ ],
+ [
+ 139.7748278901099,
+ 35.67513009009009
+ ],
+ [
+ 139.7748278901099,
+ 35.67494990990991
+ ],
+ [
+ 139.77460810989012,
+ 35.67494990990991
+ ],
+ [
+ 139.77460810989012,
+ 35.67513009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SaranumaNichome.576.2",
+ "name": "皿沼二丁目",
+ "latitude": 35.792291,
+ "longitude": 139.769946,
+ "polygon": [
+ [
+ 139.76983610989012,
+ 35.79238109009009
+ ],
+ [
+ 139.7700558901099,
+ 35.79238109009009
+ ],
+ [
+ 139.7700558901099,
+ 35.79220090990991
+ ],
+ [
+ 139.76983610989012,
+ 35.79220090990991
+ ],
+ [
+ 139.76983610989012,
+ 35.79238109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sakurabashi.571.2",
+ "name": "桜橋",
+ "latitude": 35.67396,
+ "longitude": 139.774136,
+ "polygon": [
+ [
+ 139.77402610989012,
+ 35.67405009009009
+ ],
+ [
+ 139.77424589010988,
+ 35.67405009009009
+ ],
+ [
+ 139.77424589010988,
+ 35.67386990990991
+ ],
+ [
+ 139.77402610989012,
+ 35.67386990990991
+ ],
+ [
+ 139.77402610989012,
+ 35.67405009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SasazukaStation.572.1",
+ "name": "笹塚駅前",
+ "latitude": 35.674554,
+ "longitude": 139.667191,
+ "polygon": [
+ [
+ 139.66708110989012,
+ 35.67464409009009
+ ],
+ [
+ 139.66730089010989,
+ 35.67464409009009
+ ],
+ [
+ 139.66730089010989,
+ 35.67446390990991
+ ],
+ [
+ 139.66708110989012,
+ 35.67446390990991
+ ],
+ [
+ 139.66708110989012,
+ 35.67464409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SasazukaStation.572.2",
+ "name": "笹塚駅前",
+ "latitude": 35.674228,
+ "longitude": 139.667242,
+ "polygon": [
+ [
+ 139.6671321098901,
+ 35.67431809009009
+ ],
+ [
+ 139.66735189010987,
+ 35.67431809009009
+ ],
+ [
+ 139.66735189010987,
+ 35.67413790990991
+ ],
+ [
+ 139.6671321098901,
+ 35.67413790990991
+ ],
+ [
+ 139.6671321098901,
+ 35.67431809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SasazukaNichome.573.1",
+ "name": "笹塚二丁目",
+ "latitude": 35.673667,
+ "longitude": 139.664246,
+ "polygon": [
+ [
+ 139.6641361098901,
+ 35.67375709009009
+ ],
+ [
+ 139.66435589010987,
+ 35.67375709009009
+ ],
+ [
+ 139.66435589010987,
+ 35.67357690990991
+ ],
+ [
+ 139.6641361098901,
+ 35.67357690990991
+ ],
+ [
+ 139.6641361098901,
+ 35.67375709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SasazukaNichome.573.2",
+ "name": "笹塚二丁目",
+ "latitude": 35.673384,
+ "longitude": 139.664332,
+ "polygon": [
+ [
+ 139.66422210989012,
+ 35.67347409009009
+ ],
+ [
+ 139.66444189010988,
+ 35.67347409009009
+ ],
+ [
+ 139.66444189010988,
+ 35.67329390990991
+ ],
+ [
+ 139.66422210989012,
+ 35.67329390990991
+ ],
+ [
+ 139.66422210989012,
+ 35.67347409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiohamaItchome.593.2",
+ "name": "塩浜一丁目",
+ "latitude": 35.660187,
+ "longitude": 139.800794,
+ "polygon": [
+ [
+ 139.8006841098901,
+ 35.66027709009009
+ ],
+ [
+ 139.80090389010988,
+ 35.66027709009009
+ ],
+ [
+ 139.80090389010988,
+ 35.66009690990991
+ ],
+ [
+ 139.8006841098901,
+ 35.66009690990991
+ ],
+ [
+ 139.8006841098901,
+ 35.66027709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Samoncho.574.1",
+ "name": "左門町",
+ "latitude": 35.684589,
+ "longitude": 139.720128,
+ "polygon": [
+ [
+ 139.7200181098901,
+ 35.68467909009009
+ ],
+ [
+ 139.72023789010987,
+ 35.68467909009009
+ ],
+ [
+ 139.72023789010987,
+ 35.68449890990991
+ ],
+ [
+ 139.7200181098901,
+ 35.68449890990991
+ ],
+ [
+ 139.7200181098901,
+ 35.68467909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Samoncho.574.2",
+ "name": "左門町",
+ "latitude": 35.68395,
+ "longitude": 139.719807,
+ "polygon": [
+ [
+ 139.71969710989012,
+ 35.68404009009009
+ ],
+ [
+ 139.7199168901099,
+ 35.68404009009009
+ ],
+ [
+ 139.7199168901099,
+ 35.68385990990991
+ ],
+ [
+ 139.71969710989012,
+ 35.68385990990991
+ ],
+ [
+ 139.71969710989012,
+ 35.68404009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoNichome.575.1",
+ "name": "中央二丁目",
+ "latitude": 35.742911,
+ "longitude": 139.430259,
+ "polygon": [
+ [
+ 139.43014910989012,
+ 35.74300109009009
+ ],
+ [
+ 139.4303688901099,
+ 35.74300109009009
+ ],
+ [
+ 139.4303688901099,
+ 35.74282090990991
+ ],
+ [
+ 139.43014910989012,
+ 35.74282090990991
+ ],
+ [
+ 139.43014910989012,
+ 35.74300109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoNichome.575.2",
+ "name": "中央二丁目",
+ "latitude": 35.743023,
+ "longitude": 139.430041,
+ "polygon": [
+ [
+ 139.4299311098901,
+ 35.74311309009009
+ ],
+ [
+ 139.43015089010987,
+ 35.74311309009009
+ ],
+ [
+ 139.43015089010987,
+ 35.74293290990991
+ ],
+ [
+ 139.4299311098901,
+ 35.74293290990991
+ ],
+ [
+ 139.4299311098901,
+ 35.74311309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SaranumaNichome.576.1",
+ "name": "皿沼二丁目",
+ "latitude": 35.79217,
+ "longitude": 139.770249,
+ "polygon": [
+ [
+ 139.77013910989012,
+ 35.79226009009009
+ ],
+ [
+ 139.7703588901099,
+ 35.79226009009009
+ ],
+ [
+ 139.7703588901099,
+ 35.79207990990991
+ ],
+ [
+ 139.77013910989012,
+ 35.79207990990991
+ ],
+ [
+ 139.77013910989012,
+ 35.79226009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SarueItchome.577.1",
+ "name": "猿江一丁目",
+ "latitude": 35.686331,
+ "longitude": 139.810917,
+ "polygon": [
+ [
+ 139.8108071098901,
+ 35.68642109009009
+ ],
+ [
+ 139.81102689010987,
+ 35.68642109009009
+ ],
+ [
+ 139.81102689010987,
+ 35.68624090990991
+ ],
+ [
+ 139.8108071098901,
+ 35.68624090990991
+ ],
+ [
+ 139.8108071098901,
+ 35.68642109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SarueItchome.577.2",
+ "name": "猿江一丁目",
+ "latitude": 35.685753,
+ "longitude": 139.811107,
+ "polygon": [
+ [
+ 139.8109971098901,
+ 35.68584309009009
+ ],
+ [
+ 139.81121689010988,
+ 35.68584309009009
+ ],
+ [
+ 139.81121689010988,
+ 35.68566290990991
+ ],
+ [
+ 139.8109971098901,
+ 35.68566290990991
+ ],
+ [
+ 139.8109971098901,
+ 35.68584309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SarueNichome.578.1",
+ "name": "猿江二丁目",
+ "latitude": 35.685825,
+ "longitude": 139.81609,
+ "polygon": [
+ [
+ 139.81598010989012,
+ 35.68591509009009
+ ],
+ [
+ 139.81619989010989,
+ 35.68591509009009
+ ],
+ [
+ 139.81619989010989,
+ 35.68573490990991
+ ],
+ [
+ 139.81598010989012,
+ 35.68573490990991
+ ],
+ [
+ 139.81598010989012,
+ 35.68591509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SarueNichome.578.2",
+ "name": "猿江二丁目",
+ "latitude": 35.686533,
+ "longitude": 139.815825,
+ "polygon": [
+ [
+ 139.8157151098901,
+ 35.68662309009009
+ ],
+ [
+ 139.81593489010987,
+ 35.68662309009009
+ ],
+ [
+ 139.81593489010987,
+ 35.68644290990991
+ ],
+ [
+ 139.8157151098901,
+ 35.68644290990991
+ ],
+ [
+ 139.8157151098901,
+ 35.68662309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sankaku.579.1",
+ "name": "三角",
+ "latitude": 35.6756,
+ "longitude": 139.871315,
+ "polygon": [
+ [
+ 139.87120510989013,
+ 35.67569009009009
+ ],
+ [
+ 139.8714248901099,
+ 35.67569009009009
+ ],
+ [
+ 139.8714248901099,
+ 35.67550990990991
+ ],
+ [
+ 139.87120510989013,
+ 35.67550990990991
+ ],
+ [
+ 139.87120510989013,
+ 35.67569009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationTakanawaguchi.606.7",
+ "name": "品川駅高輪口",
+ "latitude": 35.629893,
+ "longitude": 139.737243,
+ "polygon": [
+ [
+ 139.73713310989012,
+ 35.62998309009009
+ ],
+ [
+ 139.7373528901099,
+ 35.62998309009009
+ ],
+ [
+ 139.7373528901099,
+ 35.62980290990991
+ ],
+ [
+ 139.73713310989012,
+ 35.62980290990991
+ ],
+ [
+ 139.73713310989012,
+ 35.62998309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sankaku.579.2",
+ "name": "三角",
+ "latitude": 35.675499,
+ "longitude": 139.871054,
+ "polygon": [
+ [
+ 139.8709441098901,
+ 35.67558909009009
+ ],
+ [
+ 139.87116389010987,
+ 35.67558909009009
+ ],
+ [
+ 139.87116389010987,
+ 35.67540890990991
+ ],
+ [
+ 139.8709441098901,
+ 35.67540890990991
+ ],
+ [
+ 139.8709441098901,
+ 35.67558909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SankosakaShita.581.1",
+ "name": "三光坂下",
+ "latitude": 35.643814,
+ "longitude": 139.730707,
+ "polygon": [
+ [
+ 139.7305971098901,
+ 35.64390409009009
+ ],
+ [
+ 139.73081689010988,
+ 35.64390409009009
+ ],
+ [
+ 139.73081689010988,
+ 35.64372390990991
+ ],
+ [
+ 139.7305971098901,
+ 35.64372390990991
+ ],
+ [
+ 139.7305971098901,
+ 35.64390409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SankosakaShita.581.2",
+ "name": "三光坂下",
+ "latitude": 35.643809,
+ "longitude": 139.729966,
+ "polygon": [
+ [
+ 139.7298561098901,
+ 35.64389909009009
+ ],
+ [
+ 139.73007589010987,
+ 35.64389909009009
+ ],
+ [
+ 139.73007589010987,
+ 35.64371890990991
+ ],
+ [
+ 139.7298561098901,
+ 35.64371890990991
+ ],
+ [
+ 139.7298561098901,
+ 35.64389909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuShioiri.590.1",
+ "name": "南千住汐入",
+ "latitude": 35.737715,
+ "longitude": 139.805687,
+ "polygon": [
+ [
+ 139.80557710989012,
+ 35.73780509009009
+ ],
+ [
+ 139.8057968901099,
+ 35.73780509009009
+ ],
+ [
+ 139.8057968901099,
+ 35.73762490990991
+ ],
+ [
+ 139.80557710989012,
+ 35.73762490990991
+ ],
+ [
+ 139.80557710989012,
+ 35.73780509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuShioiri.590.2",
+ "name": "南千住汐入",
+ "latitude": 35.737774,
+ "longitude": 139.805823,
+ "polygon": [
+ [
+ 139.80571310989012,
+ 35.73786409009009
+ ],
+ [
+ 139.8059328901099,
+ 35.73786409009009
+ ],
+ [
+ 139.8059328901099,
+ 35.73768390990991
+ ],
+ [
+ 139.80571310989012,
+ 35.73768390990991
+ ],
+ [
+ 139.80571310989012,
+ 35.73786409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shiojibashi.591.2",
+ "name": "潮路橋",
+ "latitude": 35.643361,
+ "longitude": 139.756137,
+ "polygon": [
+ [
+ 139.7560271098901,
+ 35.64345109009009
+ ],
+ [
+ 139.75624689010988,
+ 35.64345109009009
+ ],
+ [
+ 139.75624689010988,
+ 35.64327090990991
+ ],
+ [
+ 139.7560271098901,
+ 35.64327090990991
+ ],
+ [
+ 139.7560271098901,
+ 35.64345109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shiojibashi.591.3",
+ "name": "潮路橋",
+ "latitude": 35.64345,
+ "longitude": 139.755276,
+ "polygon": [
+ [
+ 139.75516610989013,
+ 35.64354009009009
+ ],
+ [
+ 139.7553858901099,
+ 35.64354009009009
+ ],
+ [
+ 139.7553858901099,
+ 35.64335990990991
+ ],
+ [
+ 139.75516610989013,
+ 35.64335990990991
+ ],
+ [
+ 139.75516610989013,
+ 35.64354009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shiohamabashi.592.1",
+ "name": "塩浜橋",
+ "latitude": 35.663321,
+ "longitude": 139.805254,
+ "polygon": [
+ [
+ 139.8051441098901,
+ 35.663411090090094
+ ],
+ [
+ 139.80536389010987,
+ 35.663411090090094
+ ],
+ [
+ 139.80536389010987,
+ 35.66323090990991
+ ],
+ [
+ 139.8051441098901,
+ 35.66323090990991
+ ],
+ [
+ 139.8051441098901,
+ 35.663411090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shiohamabashi.592.2",
+ "name": "塩浜橋",
+ "latitude": 35.663506,
+ "longitude": 139.80558,
+ "polygon": [
+ [
+ 139.8054701098901,
+ 35.66359609009009
+ ],
+ [
+ 139.80568989010987,
+ 35.66359609009009
+ ],
+ [
+ 139.80568989010987,
+ 35.66341590990991
+ ],
+ [
+ 139.8054701098901,
+ 35.66341590990991
+ ],
+ [
+ 139.8054701098901,
+ 35.66359609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiohamaItchome.593.1",
+ "name": "塩浜一丁目",
+ "latitude": 35.659863,
+ "longitude": 139.800661,
+ "polygon": [
+ [
+ 139.8005511098901,
+ 35.65995309009009
+ ],
+ [
+ 139.80077089010987,
+ 35.65995309009009
+ ],
+ [
+ 139.80077089010987,
+ 35.65977290990991
+ ],
+ [
+ 139.8005511098901,
+ 35.65977290990991
+ ],
+ [
+ 139.8005511098901,
+ 35.65995309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiohamaNichome.594.1",
+ "name": "塩浜二丁目",
+ "latitude": 35.661587,
+ "longitude": 139.80613,
+ "polygon": [
+ [
+ 139.8060201098901,
+ 35.66167709009009
+ ],
+ [
+ 139.80623989010988,
+ 35.66167709009009
+ ],
+ [
+ 139.80623989010988,
+ 35.66149690990991
+ ],
+ [
+ 139.8060201098901,
+ 35.66149690990991
+ ],
+ [
+ 139.8060201098901,
+ 35.66167709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiohamaNichome.594.2",
+ "name": "塩浜二丁目",
+ "latitude": 35.661606,
+ "longitude": 139.806481,
+ "polygon": [
+ [
+ 139.8063711098901,
+ 35.66169609009009
+ ],
+ [
+ 139.80659089010987,
+ 35.66169609009009
+ ],
+ [
+ 139.80659089010987,
+ 35.66151590990991
+ ],
+ [
+ 139.8063711098901,
+ 35.66151590990991
+ ],
+ [
+ 139.8063711098901,
+ 35.66169609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikamotoChugakko.599.3",
+ "name": "鹿本中学校前",
+ "latitude": 35.719818,
+ "longitude": 139.876687,
+ "polygon": [
+ [
+ 139.87657710989012,
+ 35.71990809009009
+ ],
+ [
+ 139.8767968901099,
+ 35.71990809009009
+ ],
+ [
+ 139.8767968901099,
+ 35.719727909909906
+ ],
+ [
+ 139.87657710989012,
+ 35.719727909909906
+ ],
+ [
+ 139.87657710989012,
+ 35.71990809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiohamaNichome.594.3",
+ "name": "塩浜二丁目",
+ "latitude": 35.660935,
+ "longitude": 139.803951,
+ "polygon": [
+ [
+ 139.80384110989013,
+ 35.66102509009009
+ ],
+ [
+ 139.8040608901099,
+ 35.66102509009009
+ ],
+ [
+ 139.8040608901099,
+ 35.66084490990991
+ ],
+ [
+ 139.80384110989013,
+ 35.66084490990991
+ ],
+ [
+ 139.80384110989013,
+ 35.66102509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiItchome.595.1",
+ "name": "潮見一丁目",
+ "latitude": 35.655469,
+ "longitude": 139.811277,
+ "polygon": [
+ [
+ 139.8111671098901,
+ 35.65555909009009
+ ],
+ [
+ 139.81138689010987,
+ 35.65555909009009
+ ],
+ [
+ 139.81138689010987,
+ 35.655378909909906
+ ],
+ [
+ 139.8111671098901,
+ 35.655378909909906
+ ],
+ [
+ 139.8111671098901,
+ 35.65555909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiItchome.595.2",
+ "name": "潮見一丁目",
+ "latitude": 35.656235,
+ "longitude": 139.810421,
+ "polygon": [
+ [
+ 139.8103111098901,
+ 35.65632509009009
+ ],
+ [
+ 139.81053089010987,
+ 35.65632509009009
+ ],
+ [
+ 139.81053089010987,
+ 35.65614490990991
+ ],
+ [
+ 139.8103111098901,
+ 35.65614490990991
+ ],
+ [
+ 139.8103111098901,
+ 35.65632509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shikahamabashi.596.1",
+ "name": "鹿浜橋",
+ "latitude": 35.778552,
+ "longitude": 139.749304,
+ "polygon": [
+ [
+ 139.7491941098901,
+ 35.77864209009009
+ ],
+ [
+ 139.74941389010988,
+ 35.77864209009009
+ ],
+ [
+ 139.74941389010988,
+ 35.77846190990991
+ ],
+ [
+ 139.7491941098901,
+ 35.77846190990991
+ ],
+ [
+ 139.7491941098901,
+ 35.77864209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shikahamabashi.596.2",
+ "name": "鹿浜橋",
+ "latitude": 35.778768,
+ "longitude": 139.749454,
+ "polygon": [
+ [
+ 139.7493441098901,
+ 35.77885809009009
+ ],
+ [
+ 139.74956389010987,
+ 35.77885809009009
+ ],
+ [
+ 139.74956389010987,
+ 35.77867790990991
+ ],
+ [
+ 139.7493441098901,
+ 35.77867790990991
+ ],
+ [
+ 139.7493441098901,
+ 35.77885809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikahamaSanchome.597.1",
+ "name": "鹿浜三丁目",
+ "latitude": 35.778408,
+ "longitude": 139.75357,
+ "polygon": [
+ [
+ 139.7534601098901,
+ 35.77849809009009
+ ],
+ [
+ 139.75367989010988,
+ 35.77849809009009
+ ],
+ [
+ 139.75367989010988,
+ 35.77831790990991
+ ],
+ [
+ 139.7534601098901,
+ 35.77831790990991
+ ],
+ [
+ 139.7534601098901,
+ 35.77849809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikahamaSanchome.597.2",
+ "name": "鹿浜三丁目",
+ "latitude": 35.778632,
+ "longitude": 139.753065,
+ "polygon": [
+ [
+ 139.7529551098901,
+ 35.77872209009009
+ ],
+ [
+ 139.75317489010988,
+ 35.77872209009009
+ ],
+ [
+ 139.75317489010988,
+ 35.77854190990991
+ ],
+ [
+ 139.7529551098901,
+ 35.77854190990991
+ ],
+ [
+ 139.7529551098901,
+ 35.77872209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikahamaSanchomeKosaten.598.1",
+ "name": "鹿浜三丁目交差点",
+ "latitude": 35.778352,
+ "longitude": 139.755184,
+ "polygon": [
+ [
+ 139.75507410989013,
+ 35.77844209009009
+ ],
+ [
+ 139.7552938901099,
+ 35.77844209009009
+ ],
+ [
+ 139.7552938901099,
+ 35.77826190990991
+ ],
+ [
+ 139.75507410989013,
+ 35.77826190990991
+ ],
+ [
+ 139.75507410989013,
+ 35.77844209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinozakichoNanachome.616.2",
+ "name": "篠崎町七丁目",
+ "latitude": 35.702357,
+ "longitude": 139.901011,
+ "polygon": [
+ [
+ 139.90090110989013,
+ 35.70244709009009
+ ],
+ [
+ 139.9011208901099,
+ 35.70244709009009
+ ],
+ [
+ 139.9011208901099,
+ 35.70226690990991
+ ],
+ [
+ 139.90090110989013,
+ 35.70226690990991
+ ],
+ [
+ 139.90090110989013,
+ 35.70244709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikahamaSanchomeKosaten.598.2",
+ "name": "鹿浜三丁目交差点",
+ "latitude": 35.778466,
+ "longitude": 139.756744,
+ "polygon": [
+ [
+ 139.75663410989011,
+ 35.77855609009009
+ ],
+ [
+ 139.75685389010988,
+ 35.77855609009009
+ ],
+ [
+ 139.75685389010988,
+ 35.77837590990991
+ ],
+ [
+ 139.75663410989011,
+ 35.77837590990991
+ ],
+ [
+ 139.75663410989011,
+ 35.77855609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikamotoChugakko.599.1",
+ "name": "鹿本中学校前",
+ "latitude": 35.719909,
+ "longitude": 139.877003,
+ "polygon": [
+ [
+ 139.87689310989012,
+ 35.71999909009009
+ ],
+ [
+ 139.87711289010988,
+ 35.71999909009009
+ ],
+ [
+ 139.87711289010988,
+ 35.71981890990991
+ ],
+ [
+ 139.87689310989012,
+ 35.71981890990991
+ ],
+ [
+ 139.87689310989012,
+ 35.71999909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikamotoChugakko.599.2",
+ "name": "鹿本中学校前",
+ "latitude": 35.719835,
+ "longitude": 139.878007,
+ "polygon": [
+ [
+ 139.8778971098901,
+ 35.71992509009009
+ ],
+ [
+ 139.87811689010988,
+ 35.71992509009009
+ ],
+ [
+ 139.87811689010988,
+ 35.71974490990991
+ ],
+ [
+ 139.8778971098901,
+ 35.71974490990991
+ ],
+ [
+ 139.8778971098901,
+ 35.71992509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikamotoChugakko.599.4",
+ "name": "鹿本中学校前",
+ "latitude": 35.719469,
+ "longitude": 139.877832,
+ "polygon": [
+ [
+ 139.87772210989013,
+ 35.71955909009009
+ ],
+ [
+ 139.8779418901099,
+ 35.71955909009009
+ ],
+ [
+ 139.8779418901099,
+ 35.719378909909906
+ ],
+ [
+ 139.87772210989013,
+ 35.719378909909906
+ ],
+ [
+ 139.87772210989013,
+ 35.71955909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShitayaKeisatsusho.600.1",
+ "name": "下谷警察署前",
+ "latitude": 35.724643,
+ "longitude": 139.788094,
+ "polygon": [
+ [
+ 139.78798410989012,
+ 35.72473309009009
+ ],
+ [
+ 139.78820389010988,
+ 35.72473309009009
+ ],
+ [
+ 139.78820389010988,
+ 35.72455290990991
+ ],
+ [
+ 139.78798410989012,
+ 35.72455290990991
+ ],
+ [
+ 139.78798410989012,
+ 35.72473309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShitayaKeisatsusho.600.2",
+ "name": "下谷警察署前",
+ "latitude": 35.724733,
+ "longitude": 139.788869,
+ "polygon": [
+ [
+ 139.78875910989012,
+ 35.72482309009009
+ ],
+ [
+ 139.7889788901099,
+ 35.72482309009009
+ ],
+ [
+ 139.7889788901099,
+ 35.72464290990991
+ ],
+ [
+ 139.78875910989012,
+ 35.72464290990991
+ ],
+ [
+ 139.78875910989012,
+ 35.72482309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShitayaJinja.601.1",
+ "name": "下谷神社前",
+ "latitude": 35.711519,
+ "longitude": 139.780958,
+ "polygon": [
+ [
+ 139.78084810989012,
+ 35.71160909009009
+ ],
+ [
+ 139.78106789010988,
+ 35.71160909009009
+ ],
+ [
+ 139.78106789010988,
+ 35.71142890990991
+ ],
+ [
+ 139.78084810989012,
+ 35.71142890990991
+ ],
+ [
+ 139.78084810989012,
+ 35.71160909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShitayaJinja.601.2",
+ "name": "下谷神社前",
+ "latitude": 35.711714,
+ "longitude": 139.781069,
+ "polygon": [
+ [
+ 139.78095910989012,
+ 35.71180409009009
+ ],
+ [
+ 139.78117889010989,
+ 35.71180409009009
+ ],
+ [
+ 139.78117889010989,
+ 35.71162390990991
+ ],
+ [
+ 139.78095910989012,
+ 35.71162390990991
+ ],
+ [
+ 139.78095910989012,
+ 35.71180409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShitayaNichome.602.3",
+ "name": "下谷二丁目",
+ "latitude": 35.720849,
+ "longitude": 139.780873,
+ "polygon": [
+ [
+ 139.78076310989013,
+ 35.72093909009009
+ ],
+ [
+ 139.7809828901099,
+ 35.72093909009009
+ ],
+ [
+ 139.7809828901099,
+ 35.72075890990991
+ ],
+ [
+ 139.78076310989013,
+ 35.72075890990991
+ ],
+ [
+ 139.78076310989013,
+ 35.72093909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShitayaNichome.602.4",
+ "name": "下谷二丁目",
+ "latitude": 35.721047,
+ "longitude": 139.781174,
+ "polygon": [
+ [
+ 139.7810641098901,
+ 35.72113709009009
+ ],
+ [
+ 139.78128389010988,
+ 35.72113709009009
+ ],
+ [
+ 139.78128389010988,
+ 35.72095690990991
+ ],
+ [
+ 139.7810641098901,
+ 35.72095690990991
+ ],
+ [
+ 139.7810641098901,
+ 35.72113709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShitayaSanchome.603.1",
+ "name": "下谷三丁目",
+ "latitude": 35.725021,
+ "longitude": 139.786499,
+ "polygon": [
+ [
+ 139.7863891098901,
+ 35.72511109009009
+ ],
+ [
+ 139.78660889010987,
+ 35.72511109009009
+ ],
+ [
+ 139.78660889010987,
+ 35.72493090990991
+ ],
+ [
+ 139.7863891098901,
+ 35.72493090990991
+ ],
+ [
+ 139.7863891098901,
+ 35.72511109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeShogakko.618.1",
+ "name": "東雲小学校前",
+ "latitude": 35.642476,
+ "longitude": 139.799906,
+ "polygon": [
+ [
+ 139.7997961098901,
+ 35.64256609009009
+ ],
+ [
+ 139.80001589010988,
+ 35.64256609009009
+ ],
+ [
+ 139.80001589010988,
+ 35.64238590990991
+ ],
+ [
+ 139.7997961098901,
+ 35.64238590990991
+ ],
+ [
+ 139.7997961098901,
+ 35.64256609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShitayaSanchome.603.2",
+ "name": "下谷三丁目",
+ "latitude": 35.725463,
+ "longitude": 139.786074,
+ "polygon": [
+ [
+ 139.78596410989013,
+ 35.72555309009009
+ ],
+ [
+ 139.7861838901099,
+ 35.72555309009009
+ ],
+ [
+ 139.7861838901099,
+ 35.72537290990991
+ ],
+ [
+ 139.78596410989013,
+ 35.72537290990991
+ ],
+ [
+ 139.78596410989013,
+ 35.72555309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shichikencho.604.1",
+ "name": "七軒町",
+ "latitude": 35.67993,
+ "longitude": 139.859222,
+ "polygon": [
+ [
+ 139.8591121098901,
+ 35.68002009009009
+ ],
+ [
+ 139.85933189010987,
+ 35.68002009009009
+ ],
+ [
+ 139.85933189010987,
+ 35.67983990990991
+ ],
+ [
+ 139.8591121098901,
+ 35.67983990990991
+ ],
+ [
+ 139.8591121098901,
+ 35.68002009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shichikencho.604.2",
+ "name": "七軒町",
+ "latitude": 35.679764,
+ "longitude": 139.858219,
+ "polygon": [
+ [
+ 139.8581091098901,
+ 35.67985409009009
+ ],
+ [
+ 139.85832889010987,
+ 35.67985409009009
+ ],
+ [
+ 139.85832889010987,
+ 35.67967390990991
+ ],
+ [
+ 139.8581091098901,
+ 35.67967390990991
+ ],
+ [
+ 139.8581091098901,
+ 35.67985409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationKonanguchi.605.1",
+ "name": "品川駅港南口",
+ "latitude": 35.628447,
+ "longitude": 139.741523,
+ "polygon": [
+ [
+ 139.74141310989012,
+ 35.62853709009009
+ ],
+ [
+ 139.74163289010988,
+ 35.62853709009009
+ ],
+ [
+ 139.74163289010988,
+ 35.62835690990991
+ ],
+ [
+ 139.74141310989012,
+ 35.62835690990991
+ ],
+ [
+ 139.74141310989012,
+ 35.62853709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationKonanguchi.605.3",
+ "name": "品川駅港南口",
+ "latitude": 35.628632,
+ "longitude": 139.741171,
+ "polygon": [
+ [
+ 139.74106110989013,
+ 35.62872209009009
+ ],
+ [
+ 139.7412808901099,
+ 35.62872209009009
+ ],
+ [
+ 139.7412808901099,
+ 35.62854190990991
+ ],
+ [
+ 139.74106110989013,
+ 35.62854190990991
+ ],
+ [
+ 139.74106110989013,
+ 35.62872209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationKonanguchi.605.5",
+ "name": "品川駅港南口",
+ "latitude": 35.629643,
+ "longitude": 139.741627,
+ "polygon": [
+ [
+ 139.7415171098901,
+ 35.62973309009009
+ ],
+ [
+ 139.74173689010988,
+ 35.62973309009009
+ ],
+ [
+ 139.74173689010988,
+ 35.62955290990991
+ ],
+ [
+ 139.7415171098901,
+ 35.62955290990991
+ ],
+ [
+ 139.7415171098901,
+ 35.62973309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationKonanguchi.605.6",
+ "name": "品川駅港南口",
+ "latitude": 35.628261,
+ "longitude": 139.741287,
+ "polygon": [
+ [
+ 139.74117710989012,
+ 35.62835109009009
+ ],
+ [
+ 139.74139689010988,
+ 35.62835109009009
+ ],
+ [
+ 139.74139689010988,
+ 35.62817090990991
+ ],
+ [
+ 139.74117710989012,
+ 35.62817090990991
+ ],
+ [
+ 139.74117710989012,
+ 35.62835109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationKonanguchi.605.7",
+ "name": "品川駅港南口",
+ "latitude": 35.628246,
+ "longitude": 139.7415,
+ "polygon": [
+ [
+ 139.74139010989012,
+ 35.62833609009009
+ ],
+ [
+ 139.74160989010988,
+ 35.62833609009009
+ ],
+ [
+ 139.74160989010988,
+ 35.62815590990991
+ ],
+ [
+ 139.74139010989012,
+ 35.62815590990991
+ ],
+ [
+ 139.74139010989012,
+ 35.62833609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationKonanguchi.605.8",
+ "name": "品川駅港南口",
+ "latitude": 35.628853,
+ "longitude": 139.741196,
+ "polygon": [
+ [
+ 139.74108610989012,
+ 35.62894309009009
+ ],
+ [
+ 139.74130589010989,
+ 35.62894309009009
+ ],
+ [
+ 139.74130589010989,
+ 35.62876290990991
+ ],
+ [
+ 139.74108610989012,
+ 35.62876290990991
+ ],
+ [
+ 139.74108610989012,
+ 35.62894309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationKonanguchi.605.9",
+ "name": "品川駅港南口",
+ "latitude": 35.629481,
+ "longitude": 139.741331,
+ "polygon": [
+ [
+ 139.74122110989012,
+ 35.62957109009009
+ ],
+ [
+ 139.74144089010989,
+ 35.62957109009009
+ ],
+ [
+ 139.74144089010989,
+ 35.62939090990991
+ ],
+ [
+ 139.74122110989012,
+ 35.62939090990991
+ ],
+ [
+ 139.74122110989012,
+ 35.62957109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationKonanguchi.605.11",
+ "name": "品川駅港南口",
+ "latitude": 35.629299,
+ "longitude": 139.741244,
+ "polygon": [
+ [
+ 139.7411341098901,
+ 35.62938909009009
+ ],
+ [
+ 139.74135389010988,
+ 35.62938909009009
+ ],
+ [
+ 139.74135389010988,
+ 35.62920890990991
+ ],
+ [
+ 139.7411341098901,
+ 35.62920890990991
+ ],
+ [
+ 139.7411341098901,
+ 35.62938909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeShogakko.618.2",
+ "name": "東雲小学校前",
+ "latitude": 35.642292,
+ "longitude": 139.79978,
+ "polygon": [
+ [
+ 139.79967010989012,
+ 35.64238209009009
+ ],
+ [
+ 139.79988989010988,
+ 35.64238209009009
+ ],
+ [
+ 139.79988989010988,
+ 35.64220190990991
+ ],
+ [
+ 139.79967010989012,
+ 35.64220190990991
+ ],
+ [
+ 139.79967010989012,
+ 35.64238209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationTakanawaguchi.606.1",
+ "name": "品川駅高輪口",
+ "latitude": 35.627922,
+ "longitude": 139.737732,
+ "polygon": [
+ [
+ 139.7376221098901,
+ 35.62801209009009
+ ],
+ [
+ 139.73784189010988,
+ 35.62801209009009
+ ],
+ [
+ 139.73784189010988,
+ 35.62783190990991
+ ],
+ [
+ 139.7376221098901,
+ 35.62783190990991
+ ],
+ [
+ 139.7376221098901,
+ 35.62801209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationTakanawaguchi.606.2",
+ "name": "品川駅高輪口",
+ "latitude": 35.628158,
+ "longitude": 139.737712,
+ "polygon": [
+ [
+ 139.7376021098901,
+ 35.62824809009009
+ ],
+ [
+ 139.73782189010987,
+ 35.62824809009009
+ ],
+ [
+ 139.73782189010987,
+ 35.62806790990991
+ ],
+ [
+ 139.7376021098901,
+ 35.62806790990991
+ ],
+ [
+ 139.7376021098901,
+ 35.62824809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationTakanawaguchi.606.3",
+ "name": "品川駅高輪口",
+ "latitude": 35.629032,
+ "longitude": 139.736232,
+ "polygon": [
+ [
+ 139.73612210989012,
+ 35.62912209009009
+ ],
+ [
+ 139.73634189010988,
+ 35.62912209009009
+ ],
+ [
+ 139.73634189010988,
+ 35.62894190990991
+ ],
+ [
+ 139.73612210989012,
+ 35.62894190990991
+ ],
+ [
+ 139.73612210989012,
+ 35.62912209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationTakanawaguchi.606.4",
+ "name": "品川駅高輪口",
+ "latitude": 35.628364,
+ "longitude": 139.737708,
+ "polygon": [
+ [
+ 139.73759810989011,
+ 35.62845409009009
+ ],
+ [
+ 139.73781789010988,
+ 35.62845409009009
+ ],
+ [
+ 139.73781789010988,
+ 35.62827390990991
+ ],
+ [
+ 139.73759810989011,
+ 35.62827390990991
+ ],
+ [
+ 139.73759810989011,
+ 35.62845409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationTakanawaguchi.606.5",
+ "name": "品川駅高輪口",
+ "latitude": 35.629624,
+ "longitude": 139.737187,
+ "polygon": [
+ [
+ 139.73707710989012,
+ 35.62971409009009
+ ],
+ [
+ 139.7372968901099,
+ 35.62971409009009
+ ],
+ [
+ 139.7372968901099,
+ 35.62953390990991
+ ],
+ [
+ 139.73707710989012,
+ 35.62953390990991
+ ],
+ [
+ 139.73707710989012,
+ 35.62971409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaStationTakanawaguchi.606.6",
+ "name": "品川駅高輪口",
+ "latitude": 35.629472,
+ "longitude": 139.737148,
+ "polygon": [
+ [
+ 139.7370381098901,
+ 35.62956209009009
+ ],
+ [
+ 139.73725789010987,
+ 35.62956209009009
+ ],
+ [
+ 139.73725789010987,
+ 35.62938190990991
+ ],
+ [
+ 139.7370381098901,
+ 35.62938190990991
+ ],
+ [
+ 139.7370381098901,
+ 35.62956209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaKaryokuHatsudensho.607.1",
+ "name": "品川火力発電所前",
+ "latitude": 35.621018,
+ "longitude": 139.753348,
+ "polygon": [
+ [
+ 139.7532381098901,
+ 35.62110809009009
+ ],
+ [
+ 139.75345789010987,
+ 35.62110809009009
+ ],
+ [
+ 139.75345789010987,
+ 35.62092790990991
+ ],
+ [
+ 139.7532381098901,
+ 35.62092790990991
+ ],
+ [
+ 139.7532381098901,
+ 35.62110809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaKaryokuHatsudensho.607.2",
+ "name": "品川火力発電所前",
+ "latitude": 35.620937,
+ "longitude": 139.753639,
+ "polygon": [
+ [
+ 139.7535291098901,
+ 35.62102709009009
+ ],
+ [
+ 139.75374889010988,
+ 35.62102709009009
+ ],
+ [
+ 139.75374889010988,
+ 35.62084690990991
+ ],
+ [
+ 139.7535291098901,
+ 35.62084690990991
+ ],
+ [
+ 139.7535291098901,
+ 35.62102709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaKaryokuHatsudensho.607.3",
+ "name": "品川火力発電所前",
+ "latitude": 35.621572,
+ "longitude": 139.754811,
+ "polygon": [
+ [
+ 139.7547011098901,
+ 35.62166209009009
+ ],
+ [
+ 139.75492089010987,
+ 35.62166209009009
+ ],
+ [
+ 139.75492089010987,
+ 35.62148190990991
+ ],
+ [
+ 139.7547011098901,
+ 35.62148190990991
+ ],
+ [
+ 139.7547011098901,
+ 35.62166209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaShako.608.1",
+ "name": "品川車庫前",
+ "latitude": 35.622537,
+ "longitude": 139.740711,
+ "polygon": [
+ [
+ 139.74060110989012,
+ 35.62262709009009
+ ],
+ [
+ 139.7408208901099,
+ 35.62262709009009
+ ],
+ [
+ 139.7408208901099,
+ 35.62244690990991
+ ],
+ [
+ 139.74060110989012,
+ 35.62244690990991
+ ],
+ [
+ 139.74060110989012,
+ 35.62262709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaShako.608.2",
+ "name": "品川車庫前",
+ "latitude": 35.622537,
+ "longitude": 139.740489,
+ "polygon": [
+ [
+ 139.7403791098901,
+ 35.62262709009009
+ ],
+ [
+ 139.74059889010988,
+ 35.62262709009009
+ ],
+ [
+ 139.74059889010988,
+ 35.62244690990991
+ ],
+ [
+ 139.7403791098901,
+ 35.62244690990991
+ ],
+ [
+ 139.7403791098901,
+ 35.62262709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaShako.608.3",
+ "name": "品川車庫前",
+ "latitude": 35.623298,
+ "longitude": 139.741063,
+ "polygon": [
+ [
+ 139.7409531098901,
+ 35.62338809009009
+ ],
+ [
+ 139.74117289010988,
+ 35.62338809009009
+ ],
+ [
+ 139.74117289010988,
+ 35.62320790990991
+ ],
+ [
+ 139.7409531098901,
+ 35.62320790990991
+ ],
+ [
+ 139.7409531098901,
+ 35.62338809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaShako.608.4",
+ "name": "品川車庫前",
+ "latitude": 35.623287,
+ "longitude": 139.740859,
+ "polygon": [
+ [
+ 139.74074910989012,
+ 35.62337709009009
+ ],
+ [
+ 139.74096889010988,
+ 35.62337709009009
+ ],
+ [
+ 139.74096889010988,
+ 35.62319690990991
+ ],
+ [
+ 139.74074910989012,
+ 35.62319690990991
+ ],
+ [
+ 139.74074910989012,
+ 35.62337709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaShako.608.5",
+ "name": "品川車庫前",
+ "latitude": 35.623268,
+ "longitude": 139.74087,
+ "polygon": [
+ [
+ 139.74076010989012,
+ 35.62335809009009
+ ],
+ [
+ 139.74097989010988,
+ 35.62335809009009
+ ],
+ [
+ 139.74097989010988,
+ 35.62317790990991
+ ],
+ [
+ 139.74076010989012,
+ 35.62317790990991
+ ],
+ [
+ 139.74076010989012,
+ 35.62335809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaFuto.609.1",
+ "name": "品川埠頭",
+ "latitude": 35.631507,
+ "longitude": 139.757601,
+ "polygon": [
+ [
+ 139.7574911098901,
+ 35.63159709009009
+ ],
+ [
+ 139.75771089010988,
+ 35.63159709009009
+ ],
+ [
+ 139.75771089010988,
+ 35.63141690990991
+ ],
+ [
+ 139.7574911098901,
+ 35.63141690990991
+ ],
+ [
+ 139.7574911098901,
+ 35.63159709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaFutoGampekiIriguchi.610.1",
+ "name": "品川埠頭岸壁入口",
+ "latitude": 35.629026,
+ "longitude": 139.757681,
+ "polygon": [
+ [
+ 139.7575711098901,
+ 35.62911609009009
+ ],
+ [
+ 139.75779089010987,
+ 35.62911609009009
+ ],
+ [
+ 139.75779089010987,
+ 35.62893590990991
+ ],
+ [
+ 139.7575711098901,
+ 35.62893590990991
+ ],
+ [
+ 139.7575711098901,
+ 35.62911609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaGochu.619.1",
+ "name": "深川五中前",
+ "latitude": 35.652375,
+ "longitude": 139.798395,
+ "polygon": [
+ [
+ 139.79828510989012,
+ 35.65246509009009
+ ],
+ [
+ 139.79850489010988,
+ 35.65246509009009
+ ],
+ [
+ 139.79850489010988,
+ 35.65228490990991
+ ],
+ [
+ 139.79828510989012,
+ 35.65228490990991
+ ],
+ [
+ 139.79828510989012,
+ 35.65246509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinanomachiStation.611.1",
+ "name": "信濃町駅前",
+ "latitude": 35.681542,
+ "longitude": 139.719321,
+ "polygon": [
+ [
+ 139.71921110989013,
+ 35.68163209009009
+ ],
+ [
+ 139.7194308901099,
+ 35.68163209009009
+ ],
+ [
+ 139.7194308901099,
+ 35.68145190990991
+ ],
+ [
+ 139.71921110989013,
+ 35.68145190990991
+ ],
+ [
+ 139.71921110989013,
+ 35.68163209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinanomachiStation.611.2",
+ "name": "信濃町駅前",
+ "latitude": 35.680759,
+ "longitude": 139.719481,
+ "polygon": [
+ [
+ 139.71937110989012,
+ 35.68084909009009
+ ],
+ [
+ 139.71959089010988,
+ 35.68084909009009
+ ],
+ [
+ 139.71959089010988,
+ 35.68066890990991
+ ],
+ [
+ 139.71937110989012,
+ 35.68066890990991
+ ],
+ [
+ 139.71937110989012,
+ 35.68084909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinanomachiStationMinamiguchi.612.3",
+ "name": "信濃町駅南口",
+ "latitude": 35.679475,
+ "longitude": 139.719602,
+ "polygon": [
+ [
+ 139.71949210989013,
+ 35.67956509009009
+ ],
+ [
+ 139.7197118901099,
+ 35.67956509009009
+ ],
+ [
+ 139.7197118901099,
+ 35.679384909909906
+ ],
+ [
+ 139.71949210989013,
+ 35.679384909909906
+ ],
+ [
+ 139.71949210989013,
+ 35.67956509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinanomachiStationMinamiguchi.612.4",
+ "name": "信濃町駅南口",
+ "latitude": 35.679409,
+ "longitude": 139.719944,
+ "polygon": [
+ [
+ 139.71983410989012,
+ 35.67949909009009
+ ],
+ [
+ 139.72005389010988,
+ 35.67949909009009
+ ],
+ [
+ 139.72005389010988,
+ 35.67931890990991
+ ],
+ [
+ 139.71983410989012,
+ 35.67931890990991
+ ],
+ [
+ 139.71983410989012,
+ 35.67949909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinozakiStation.615.2",
+ "name": "篠崎駅前",
+ "latitude": 35.705975,
+ "longitude": 139.904,
+ "polygon": [
+ [
+ 139.9038901098901,
+ 35.70606509009009
+ ],
+ [
+ 139.90410989010988,
+ 35.70606509009009
+ ],
+ [
+ 139.90410989010988,
+ 35.70588490990991
+ ],
+ [
+ 139.9038901098901,
+ 35.70588490990991
+ ],
+ [
+ 139.9038901098901,
+ 35.70606509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinozakichoNanachome.616.1",
+ "name": "篠崎町七丁目",
+ "latitude": 35.702999,
+ "longitude": 139.901842,
+ "polygon": [
+ [
+ 139.9017321098901,
+ 35.70308909009009
+ ],
+ [
+ 139.90195189010987,
+ 35.70308909009009
+ ],
+ [
+ 139.90195189010987,
+ 35.70290890990991
+ ],
+ [
+ 139.9017321098901,
+ 35.70290890990991
+ ],
+ [
+ 139.9017321098901,
+ 35.70308909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaGochu.619.2",
+ "name": "深川五中前",
+ "latitude": 35.652672,
+ "longitude": 139.798675,
+ "polygon": [
+ [
+ 139.79856510989012,
+ 35.65276209009009
+ ],
+ [
+ 139.79878489010989,
+ 35.65276209009009
+ ],
+ [
+ 139.79878489010989,
+ 35.65258190990991
+ ],
+ [
+ 139.79856510989012,
+ 35.65258190990991
+ ],
+ [
+ 139.79856510989012,
+ 35.65276209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeMiyakobashi.620.1",
+ "name": "東雲都橋",
+ "latitude": 35.645517,
+ "longitude": 139.799854,
+ "polygon": [
+ [
+ 139.79974410989013,
+ 35.64560709009009
+ ],
+ [
+ 139.7999638901099,
+ 35.64560709009009
+ ],
+ [
+ 139.7999638901099,
+ 35.64542690990991
+ ],
+ [
+ 139.79974410989013,
+ 35.64542690990991
+ ],
+ [
+ 139.79974410989013,
+ 35.64560709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStationHigashiguchi.635.2",
+ "name": "渋谷駅東口",
+ "latitude": 35.660295,
+ "longitude": 139.702217,
+ "polygon": [
+ [
+ 139.7021071098901,
+ 35.66038509009009
+ ],
+ [
+ 139.70232689010987,
+ 35.66038509009009
+ ],
+ [
+ 139.70232689010987,
+ 35.66020490990991
+ ],
+ [
+ 139.7021071098901,
+ 35.66020490990991
+ ],
+ [
+ 139.7021071098901,
+ 35.66038509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeMiyakobashi.620.2",
+ "name": "東雲都橋",
+ "latitude": 35.645321,
+ "longitude": 139.799814,
+ "polygon": [
+ [
+ 139.79970410989011,
+ 35.64541109009009
+ ],
+ [
+ 139.79992389010988,
+ 35.64541109009009
+ ],
+ [
+ 139.79992389010988,
+ 35.64523090990991
+ ],
+ [
+ 139.79970410989011,
+ 35.64523090990991
+ ],
+ [
+ 139.79970410989011,
+ 35.64541109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomebashiKosaten.621.1",
+ "name": "東雲橋交差点",
+ "latitude": 35.649201,
+ "longitude": 139.801593,
+ "polygon": [
+ [
+ 139.8014831098901,
+ 35.64929109009009
+ ],
+ [
+ 139.80170289010988,
+ 35.64929109009009
+ ],
+ [
+ 139.80170289010988,
+ 35.64911090990991
+ ],
+ [
+ 139.8014831098901,
+ 35.64911090990991
+ ],
+ [
+ 139.8014831098901,
+ 35.64929109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomebashiKosaten.621.2",
+ "name": "東雲橋交差点",
+ "latitude": 35.64962,
+ "longitude": 139.802516,
+ "polygon": [
+ [
+ 139.80240610989011,
+ 35.64971009009009
+ ],
+ [
+ 139.80262589010988,
+ 35.64971009009009
+ ],
+ [
+ 139.80262589010988,
+ 35.64952990990991
+ ],
+ [
+ 139.80240610989011,
+ 35.64952990990991
+ ],
+ [
+ 139.80240610989011,
+ 35.64971009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomebashiKosaten.621.3",
+ "name": "東雲橋交差点",
+ "latitude": 35.649894,
+ "longitude": 139.802216,
+ "polygon": [
+ [
+ 139.8021061098901,
+ 35.64998409009009
+ ],
+ [
+ 139.80232589010987,
+ 35.64998409009009
+ ],
+ [
+ 139.80232589010987,
+ 35.64980390990991
+ ],
+ [
+ 139.8021061098901,
+ 35.64980390990991
+ ],
+ [
+ 139.8021061098901,
+ 35.64998409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomebashiKosaten.621.4",
+ "name": "東雲橋交差点",
+ "latitude": 35.649075,
+ "longitude": 139.801294,
+ "polygon": [
+ [
+ 139.80118410989013,
+ 35.649165090090094
+ ],
+ [
+ 139.8014038901099,
+ 35.649165090090094
+ ],
+ [
+ 139.8014038901099,
+ 35.64898490990991
+ ],
+ [
+ 139.80118410989013,
+ 35.64898490990991
+ ],
+ [
+ 139.80118410989013,
+ 35.649165090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeItchome.622.1",
+ "name": "東雲一丁目",
+ "latitude": 35.646797,
+ "longitude": 139.801586,
+ "polygon": [
+ [
+ 139.8014761098901,
+ 35.64688709009009
+ ],
+ [
+ 139.80169589010987,
+ 35.64688709009009
+ ],
+ [
+ 139.80169589010987,
+ 35.64670690990991
+ ],
+ [
+ 139.8014761098901,
+ 35.64670690990991
+ ],
+ [
+ 139.8014761098901,
+ 35.64688709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeItchome.622.2",
+ "name": "東雲一丁目",
+ "latitude": 35.647065,
+ "longitude": 139.801908,
+ "polygon": [
+ [
+ 139.80179810989011,
+ 35.64715509009009
+ ],
+ [
+ 139.80201789010988,
+ 35.64715509009009
+ ],
+ [
+ 139.80201789010988,
+ 35.64697490990991
+ ],
+ [
+ 139.80179810989011,
+ 35.64697490990991
+ ],
+ [
+ 139.80179810989011,
+ 35.64715509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinohashi.623.1",
+ "name": "四ノ橋",
+ "latitude": 35.647194,
+ "longitude": 139.731206,
+ "polygon": [
+ [
+ 139.7310961098901,
+ 35.64728409009009
+ ],
+ [
+ 139.73131589010987,
+ 35.64728409009009
+ ],
+ [
+ 139.73131589010987,
+ 35.64710390990991
+ ],
+ [
+ 139.7310961098901,
+ 35.64710390990991
+ ],
+ [
+ 139.7310961098901,
+ 35.64728409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinohashi.623.2",
+ "name": "四ノ橋",
+ "latitude": 35.647386,
+ "longitude": 139.731226,
+ "polygon": [
+ [
+ 139.7311161098901,
+ 35.64747609009009
+ ],
+ [
+ 139.73133589010988,
+ 35.64747609009009
+ ],
+ [
+ 139.73133589010988,
+ 35.64729590990991
+ ],
+ [
+ 139.7311161098901,
+ 35.64729590990991
+ ],
+ [
+ 139.7311161098901,
+ 35.64747609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraNichome.625.2",
+ "name": "芝浦二丁目",
+ "latitude": 35.643147,
+ "longitude": 139.75232,
+ "polygon": [
+ [
+ 139.75221010989011,
+ 35.64323709009009
+ ],
+ [
+ 139.75242989010988,
+ 35.64323709009009
+ ],
+ [
+ 139.75242989010988,
+ 35.64305690990991
+ ],
+ [
+ 139.75221010989011,
+ 35.64305690990991
+ ],
+ [
+ 139.75221010989011,
+ 35.64323709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraNichome.625.3",
+ "name": "芝浦二丁目",
+ "latitude": 35.642964,
+ "longitude": 139.752817,
+ "polygon": [
+ [
+ 139.7527071098901,
+ 35.64305409009009
+ ],
+ [
+ 139.75292689010988,
+ 35.64305409009009
+ ],
+ [
+ 139.75292689010988,
+ 35.64287390990991
+ ],
+ [
+ 139.7527071098901,
+ 35.64287390990991
+ ],
+ [
+ 139.7527071098901,
+ 35.64305409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStation.636.1",
+ "name": "渋谷駅前",
+ "latitude": 35.65872,
+ "longitude": 139.702046,
+ "polygon": [
+ [
+ 139.7019361098901,
+ 35.65881009009009
+ ],
+ [
+ 139.70215589010988,
+ 35.65881009009009
+ ],
+ [
+ 139.70215589010988,
+ 35.65862990990991
+ ],
+ [
+ 139.7019361098901,
+ 35.65862990990991
+ ],
+ [
+ 139.7019361098901,
+ 35.65881009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraYonchome.627.1",
+ "name": "芝浦四丁目",
+ "latitude": 35.639643,
+ "longitude": 139.747259,
+ "polygon": [
+ [
+ 139.74714910989013,
+ 35.63973309009009
+ ],
+ [
+ 139.7473688901099,
+ 35.63973309009009
+ ],
+ [
+ 139.7473688901099,
+ 35.63955290990991
+ ],
+ [
+ 139.74714910989013,
+ 35.63955290990991
+ ],
+ [
+ 139.74714910989013,
+ 35.63973309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraYonchome.627.2",
+ "name": "芝浦四丁目",
+ "latitude": 35.639084,
+ "longitude": 139.747361,
+ "polygon": [
+ [
+ 139.74725110989013,
+ 35.63917409009009
+ ],
+ [
+ 139.7474708901099,
+ 35.63917409009009
+ ],
+ [
+ 139.7474708901099,
+ 35.63899390990991
+ ],
+ [
+ 139.74725110989013,
+ 35.63899390990991
+ ],
+ [
+ 139.74725110989013,
+ 35.63917409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shibazonobashi.631.1",
+ "name": "芝園橋",
+ "latitude": 35.65266,
+ "longitude": 139.748338,
+ "polygon": [
+ [
+ 139.7482281098901,
+ 35.65275009009009
+ ],
+ [
+ 139.74844789010987,
+ 35.65275009009009
+ ],
+ [
+ 139.74844789010987,
+ 35.65256990990991
+ ],
+ [
+ 139.7482281098901,
+ 35.65256990990991
+ ],
+ [
+ 139.7482281098901,
+ 35.65275009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shibazonobashi.631.2",
+ "name": "芝園橋",
+ "latitude": 35.652556,
+ "longitude": 139.747938,
+ "polygon": [
+ [
+ 139.74782810989012,
+ 35.65264609009009
+ ],
+ [
+ 139.7480478901099,
+ 35.65264609009009
+ ],
+ [
+ 139.7480478901099,
+ 35.65246590990991
+ ],
+ [
+ 139.74782810989012,
+ 35.65246590990991
+ ],
+ [
+ 139.74782810989012,
+ 35.65264609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStationNishiguchi.634.1",
+ "name": "渋谷駅西口",
+ "latitude": 35.660016,
+ "longitude": 139.700834,
+ "polygon": [
+ [
+ 139.7007241098901,
+ 35.66010609009009
+ ],
+ [
+ 139.70094389010987,
+ 35.66010609009009
+ ],
+ [
+ 139.70094389010987,
+ 35.65992590990991
+ ],
+ [
+ 139.7007241098901,
+ 35.65992590990991
+ ],
+ [
+ 139.7007241098901,
+ 35.66010609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStationHigashiguchi.635.1",
+ "name": "渋谷駅東口",
+ "latitude": 35.660168,
+ "longitude": 139.702216,
+ "polygon": [
+ [
+ 139.7021061098901,
+ 35.66025809009009
+ ],
+ [
+ 139.70232589010988,
+ 35.66025809009009
+ ],
+ [
+ 139.70232589010988,
+ 35.66007790990991
+ ],
+ [
+ 139.7021061098901,
+ 35.66007790990991
+ ],
+ [
+ 139.7021061098901,
+ 35.66025809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStation.636.2",
+ "name": "渋谷駅前",
+ "latitude": 35.659386,
+ "longitude": 139.702208,
+ "polygon": [
+ [
+ 139.70209810989013,
+ 35.65947609009009
+ ],
+ [
+ 139.7023178901099,
+ 35.65947609009009
+ ],
+ [
+ 139.7023178901099,
+ 35.65929590990991
+ ],
+ [
+ 139.70209810989013,
+ 35.65929590990991
+ ],
+ [
+ 139.70209810989013,
+ 35.65947609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStation.636.3",
+ "name": "渋谷駅前",
+ "latitude": 35.659358,
+ "longitude": 139.702059,
+ "polygon": [
+ [
+ 139.7019491098901,
+ 35.65944809009009
+ ],
+ [
+ 139.70216889010987,
+ 35.65944809009009
+ ],
+ [
+ 139.70216889010987,
+ 35.65926790990991
+ ],
+ [
+ 139.7019491098901,
+ 35.65926790990991
+ ],
+ [
+ 139.7019491098901,
+ 35.65944809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStation.636.5",
+ "name": "渋谷駅前",
+ "latitude": 35.659189,
+ "longitude": 139.701832,
+ "polygon": [
+ [
+ 139.7017221098901,
+ 35.65927909009009
+ ],
+ [
+ 139.70194189010988,
+ 35.65927909009009
+ ],
+ [
+ 139.70194189010988,
+ 35.65909890990991
+ ],
+ [
+ 139.7017221098901,
+ 35.65909890990991
+ ],
+ [
+ 139.7017221098901,
+ 35.65927909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStation.636.6",
+ "name": "渋谷駅前",
+ "latitude": 35.658807,
+ "longitude": 139.702378,
+ "polygon": [
+ [
+ 139.70226810989013,
+ 35.65889709009009
+ ],
+ [
+ 139.7024878901099,
+ 35.65889709009009
+ ],
+ [
+ 139.7024878901099,
+ 35.65871690990991
+ ],
+ [
+ 139.70226810989013,
+ 35.65871690990991
+ ],
+ [
+ 139.70226810989013,
+ 35.65889709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStation.636.7",
+ "name": "渋谷駅前",
+ "latitude": 35.659299,
+ "longitude": 139.700208,
+ "polygon": [
+ [
+ 139.70009810989012,
+ 35.65938909009009
+ ],
+ [
+ 139.7003178901099,
+ 35.65938909009009
+ ],
+ [
+ 139.7003178901099,
+ 35.65920890990991
+ ],
+ [
+ 139.70009810989012,
+ 35.65920890990991
+ ],
+ [
+ 139.70009810989012,
+ 35.65938909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaStation.636.8",
+ "name": "渋谷駅前",
+ "latitude": 35.658527,
+ "longitude": 139.702601,
+ "polygon": [
+ [
+ 139.7024911098901,
+ 35.65861709009009
+ ],
+ [
+ 139.70271089010987,
+ 35.65861709009009
+ ],
+ [
+ 139.70271089010987,
+ 35.65843690990991
+ ],
+ [
+ 139.7024911098901,
+ 35.65843690990991
+ ],
+ [
+ 139.7024911098901,
+ 35.65861709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaKuyakusho.638.1",
+ "name": "渋谷区役所前",
+ "latitude": 35.663965,
+ "longitude": 139.699129,
+ "polygon": [
+ [
+ 139.69901910989012,
+ 35.66405509009009
+ ],
+ [
+ 139.69923889010988,
+ 35.66405509009009
+ ],
+ [
+ 139.69923889010988,
+ 35.66387490990991
+ ],
+ [
+ 139.69901910989012,
+ 35.66387490990991
+ ],
+ [
+ 139.69901910989012,
+ 35.66405509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SHIBUYASHAKOMAE.639.1",
+ "name": "渋谷車庫前",
+ "latitude": 35.654156,
+ "longitude": 139.707507,
+ "polygon": [
+ [
+ 139.7073971098901,
+ 35.65424609009009
+ ],
+ [
+ 139.70761689010988,
+ 35.65424609009009
+ ],
+ [
+ 139.70761689010988,
+ 35.65406590990991
+ ],
+ [
+ 139.7073971098901,
+ 35.65406590990991
+ ],
+ [
+ 139.7073971098901,
+ 35.65424609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SHIBUYASHAKOMAE.639.2",
+ "name": "渋谷車庫前",
+ "latitude": 35.653956,
+ "longitude": 139.708226,
+ "polygon": [
+ [
+ 139.7081161098901,
+ 35.65404609009009
+ ],
+ [
+ 139.70833589010988,
+ 35.65404609009009
+ ],
+ [
+ 139.70833589010988,
+ 35.65386590990991
+ ],
+ [
+ 139.7081161098901,
+ 35.65386590990991
+ ],
+ [
+ 139.7081161098901,
+ 35.65404609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shibuyabashi.640.7",
+ "name": "渋谷橋",
+ "latitude": 35.648644,
+ "longitude": 139.710964,
+ "polygon": [
+ [
+ 139.7108541098901,
+ 35.64873409009009
+ ],
+ [
+ 139.71107389010987,
+ 35.64873409009009
+ ],
+ [
+ 139.71107389010987,
+ 35.64855390990991
+ ],
+ [
+ 139.7108541098901,
+ 35.64855390990991
+ ],
+ [
+ 139.7108541098901,
+ 35.64873409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shibuyabashi.640.8",
+ "name": "渋谷橋",
+ "latitude": 35.648552,
+ "longitude": 139.712101,
+ "polygon": [
+ [
+ 139.7119911098901,
+ 35.64864209009009
+ ],
+ [
+ 139.71221089010987,
+ 35.64864209009009
+ ],
+ [
+ 139.71221089010987,
+ 35.64846190990991
+ ],
+ [
+ 139.7119911098901,
+ 35.64846190990991
+ ],
+ [
+ 139.7119911098901,
+ 35.64864209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shibuyabashi.640.9",
+ "name": "渋谷橋",
+ "latitude": 35.64942,
+ "longitude": 139.71098,
+ "polygon": [
+ [
+ 139.71087010989012,
+ 35.64951009009009
+ ],
+ [
+ 139.7110898901099,
+ 35.64951009009009
+ ],
+ [
+ 139.7110898901099,
+ 35.64932990990991
+ ],
+ [
+ 139.71087010989012,
+ 35.64932990990991
+ ],
+ [
+ 139.71087010989012,
+ 35.64951009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shibuyabashi.640.10",
+ "name": "渋谷橋",
+ "latitude": 35.649408,
+ "longitude": 139.71149,
+ "polygon": [
+ [
+ 139.71138010989011,
+ 35.64949809009009
+ ],
+ [
+ 139.71159989010988,
+ 35.64949809009009
+ ],
+ [
+ 139.71159989010988,
+ 35.64931790990991
+ ],
+ [
+ 139.71138010989011,
+ 35.64931790990991
+ ],
+ [
+ 139.71138010989011,
+ 35.64949809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaNichome.641.1",
+ "name": "渋谷二丁目",
+ "latitude": 35.660603,
+ "longitude": 139.706471,
+ "polygon": [
+ [
+ 139.7063611098901,
+ 35.66069309009009
+ ],
+ [
+ 139.70658089010988,
+ 35.66069309009009
+ ],
+ [
+ 139.70658089010988,
+ 35.66051290990991
+ ],
+ [
+ 139.7063611098901,
+ 35.66051290990991
+ ],
+ [
+ 139.7063611098901,
+ 35.66069309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibuyaNichome.641.2",
+ "name": "渋谷二丁目",
+ "latitude": 35.660858,
+ "longitude": 139.707382,
+ "polygon": [
+ [
+ 139.7072721098901,
+ 35.66094809009009
+ ],
+ [
+ 139.70749189010988,
+ 35.66094809009009
+ ],
+ [
+ 139.70749189010988,
+ 35.66076790990991
+ ],
+ [
+ 139.7072721098901,
+ 35.66076790990991
+ ],
+ [
+ 139.7072721098901,
+ 35.66094809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimanecho.642.1",
+ "name": "島根町",
+ "latitude": 35.783588,
+ "longitude": 139.80287,
+ "polygon": [
+ [
+ 139.80276010989013,
+ 35.78367809009009
+ ],
+ [
+ 139.8029798901099,
+ 35.78367809009009
+ ],
+ [
+ 139.8029798901099,
+ 35.78349790990991
+ ],
+ [
+ 139.80276010989013,
+ 35.78349790990991
+ ],
+ [
+ 139.80276010989013,
+ 35.78367809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimanecho.642.2",
+ "name": "島根町",
+ "latitude": 35.782389,
+ "longitude": 139.80318,
+ "polygon": [
+ [
+ 139.80307010989011,
+ 35.78247909009009
+ ],
+ [
+ 139.80328989010988,
+ 35.78247909009009
+ ],
+ [
+ 139.80328989010988,
+ 35.78229890990991
+ ],
+ [
+ 139.80307010989011,
+ 35.78229890990991
+ ],
+ [
+ 139.80307010989011,
+ 35.78247909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoOchiaiYonchome.648.1",
+ "name": "下落合四丁目",
+ "latitude": 35.721873,
+ "longitude": 139.697891,
+ "polygon": [
+ [
+ 139.69778110989012,
+ 35.72196309009009
+ ],
+ [
+ 139.69800089010988,
+ 35.72196309009009
+ ],
+ [
+ 139.69800089010988,
+ 35.72178290990991
+ ],
+ [
+ 139.69778110989012,
+ 35.72178290990991
+ ],
+ [
+ 139.69778110989012,
+ 35.72196309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimaneSanchome.643.1",
+ "name": "島根三丁目",
+ "latitude": 35.778605,
+ "longitude": 139.79595,
+ "polygon": [
+ [
+ 139.79584010989012,
+ 35.77869509009009
+ ],
+ [
+ 139.7960598901099,
+ 35.77869509009009
+ ],
+ [
+ 139.7960598901099,
+ 35.77851490990991
+ ],
+ [
+ 139.79584010989012,
+ 35.77851490990991
+ ],
+ [
+ 139.79584010989012,
+ 35.77869509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimaneSanchome.643.2",
+ "name": "島根三丁目",
+ "latitude": 35.7784,
+ "longitude": 139.796356,
+ "polygon": [
+ [
+ 139.79624610989012,
+ 35.77849009009009
+ ],
+ [
+ 139.79646589010989,
+ 35.77849009009009
+ ],
+ [
+ 139.79646589010989,
+ 35.77830990990991
+ ],
+ [
+ 139.79624610989012,
+ 35.77830990990991
+ ],
+ [
+ 139.79624610989012,
+ 35.77849009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoImai.646.1",
+ "name": "下今井",
+ "latitude": 35.677633,
+ "longitude": 139.885314,
+ "polygon": [
+ [
+ 139.8852041098901,
+ 35.67772309009009
+ ],
+ [
+ 139.88542389010988,
+ 35.67772309009009
+ ],
+ [
+ 139.88542389010988,
+ 35.67754290990991
+ ],
+ [
+ 139.8852041098901,
+ 35.67754290990991
+ ],
+ [
+ 139.8852041098901,
+ 35.67772309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoImai.646.2",
+ "name": "下今井",
+ "latitude": 35.67786,
+ "longitude": 139.885418,
+ "polygon": [
+ [
+ 139.8853081098901,
+ 35.67795009009009
+ ],
+ [
+ 139.88552789010987,
+ 35.67795009009009
+ ],
+ [
+ 139.88552789010987,
+ 35.67776990990991
+ ],
+ [
+ 139.8853081098901,
+ 35.67776990990991
+ ],
+ [
+ 139.8853081098901,
+ 35.67795009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoOchiaiSanchome.647.1",
+ "name": "下落合三丁目",
+ "latitude": 35.722498,
+ "longitude": 139.702577,
+ "polygon": [
+ [
+ 139.7024671098901,
+ 35.72258809009009
+ ],
+ [
+ 139.70268689010987,
+ 35.72258809009009
+ ],
+ [
+ 139.70268689010987,
+ 35.72240790990991
+ ],
+ [
+ 139.7024671098901,
+ 35.72240790990991
+ ],
+ [
+ 139.7024671098901,
+ 35.72258809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoOchiaiSanchome.647.2",
+ "name": "下落合三丁目",
+ "latitude": 35.722587,
+ "longitude": 139.702179,
+ "polygon": [
+ [
+ 139.70206910989012,
+ 35.72267709009009
+ ],
+ [
+ 139.70228889010988,
+ 35.72267709009009
+ ],
+ [
+ 139.70228889010988,
+ 35.72249690990991
+ ],
+ [
+ 139.70206910989012,
+ 35.72249690990991
+ ],
+ [
+ 139.70206910989012,
+ 35.72267709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokaneRokuchome.682.2",
+ "name": "白金六丁目",
+ "latitude": 35.642688,
+ "longitude": 139.721268,
+ "polygon": [
+ [
+ 139.72115810989013,
+ 35.64277809009009
+ ],
+ [
+ 139.7213778901099,
+ 35.64277809009009
+ ],
+ [
+ 139.7213778901099,
+ 35.64259790990991
+ ],
+ [
+ 139.72115810989013,
+ 35.64259790990991
+ ],
+ [
+ 139.72115810989013,
+ 35.64277809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoOchiaiYonchome.648.2",
+ "name": "下落合四丁目",
+ "latitude": 35.721987,
+ "longitude": 139.697947,
+ "polygon": [
+ [
+ 139.69783710989012,
+ 35.72207709009009
+ ],
+ [
+ 139.69805689010988,
+ 35.72207709009009
+ ],
+ [
+ 139.69805689010988,
+ 35.72189690990991
+ ],
+ [
+ 139.69783710989012,
+ 35.72189690990991
+ ],
+ [
+ 139.69783710989012,
+ 35.72207709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoKoiwaShogakko.649.1",
+ "name": "下小岩小学校前",
+ "latitude": 35.728537,
+ "longitude": 139.881631,
+ "polygon": [
+ [
+ 139.88152110989012,
+ 35.72862709009009
+ ],
+ [
+ 139.88174089010988,
+ 35.72862709009009
+ ],
+ [
+ 139.88174089010988,
+ 35.72844690990991
+ ],
+ [
+ 139.88152110989012,
+ 35.72844690990991
+ ],
+ [
+ 139.88152110989012,
+ 35.72862709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoKoiwaShogakko.649.2",
+ "name": "下小岩小学校前",
+ "latitude": 35.728152,
+ "longitude": 139.881845,
+ "polygon": [
+ [
+ 139.88173510989012,
+ 35.72824209009009
+ ],
+ [
+ 139.88195489010988,
+ 35.72824209009009
+ ],
+ [
+ 139.88195489010988,
+ 35.72806190990991
+ ],
+ [
+ 139.88173510989012,
+ 35.72806190990991
+ ],
+ [
+ 139.88173510989012,
+ 35.72824209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoKomatsubashi.650.2",
+ "name": "下小松橋",
+ "latitude": 35.7201,
+ "longitude": 139.865878,
+ "polygon": [
+ [
+ 139.86576810989013,
+ 35.72019009009009
+ ],
+ [
+ 139.8659878901099,
+ 35.72019009009009
+ ],
+ [
+ 139.8659878901099,
+ 35.72000990990991
+ ],
+ [
+ 139.86576810989013,
+ 35.72000990990991
+ ],
+ [
+ 139.86576810989013,
+ 35.72019009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimogo.651.1",
+ "name": "下郷",
+ "latitude": 35.78484,
+ "longitude": 139.225244,
+ "polygon": [
+ [
+ 139.22513410989012,
+ 35.78493009009009
+ ],
+ [
+ 139.2253538901099,
+ 35.78493009009009
+ ],
+ [
+ 139.2253538901099,
+ 35.78474990990991
+ ],
+ [
+ 139.22513410989012,
+ 35.78474990990991
+ ],
+ [
+ 139.22513410989012,
+ 35.78493009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimogo.651.2",
+ "name": "下郷",
+ "latitude": 35.78465,
+ "longitude": 139.225546,
+ "polygon": [
+ [
+ 139.22543610989013,
+ 35.78474009009009
+ ],
+ [
+ 139.2256558901099,
+ 35.78474009009009
+ ],
+ [
+ 139.2256558901099,
+ 35.78455990990991
+ ],
+ [
+ 139.22543610989013,
+ 35.78455990990991
+ ],
+ [
+ 139.22543610989013,
+ 35.78474009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoTabata.652.1",
+ "name": "下田端",
+ "latitude": 35.741657,
+ "longitude": 139.761302,
+ "polygon": [
+ [
+ 139.76119210989012,
+ 35.74174709009009
+ ],
+ [
+ 139.76141189010988,
+ 35.74174709009009
+ ],
+ [
+ 139.76141189010988,
+ 35.741566909909906
+ ],
+ [
+ 139.76119210989012,
+ 35.741566909909906
+ ],
+ [
+ 139.76119210989012,
+ 35.74174709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoTabata.652.2",
+ "name": "下田端",
+ "latitude": 35.740939,
+ "longitude": 139.760757,
+ "polygon": [
+ [
+ 139.76064710989013,
+ 35.74102909009009
+ ],
+ [
+ 139.7608668901099,
+ 35.74102909009009
+ ],
+ [
+ 139.7608668901099,
+ 35.74084890990991
+ ],
+ [
+ 139.76064710989013,
+ 35.74084890990991
+ ],
+ [
+ 139.76064710989013,
+ 35.74102909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaJinja.655.1",
+ "name": "畑中神社前",
+ "latitude": 35.783123,
+ "longitude": 139.242953,
+ "polygon": [
+ [
+ 139.24284310989012,
+ 35.78321309009009
+ ],
+ [
+ 139.24306289010988,
+ 35.78321309009009
+ ],
+ [
+ 139.24306289010988,
+ 35.78303290990991
+ ],
+ [
+ 139.24284310989012,
+ 35.78303290990991
+ ],
+ [
+ 139.24284310989012,
+ 35.78321309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaJinja.655.2",
+ "name": "畑中神社前",
+ "latitude": 35.783191,
+ "longitude": 139.242809,
+ "polygon": [
+ [
+ 139.2426991098901,
+ 35.78328109009009
+ ],
+ [
+ 139.24291889010988,
+ 35.78328109009009
+ ],
+ [
+ 139.24291889010988,
+ 35.78310090990991
+ ],
+ [
+ 139.2426991098901,
+ 35.78310090990991
+ ],
+ [
+ 139.2426991098901,
+ 35.78328109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaShimoNishi.656.1",
+ "name": "畑中下西",
+ "latitude": 35.783932,
+ "longitude": 139.246114,
+ "polygon": [
+ [
+ 139.24600410989012,
+ 35.78402209009009
+ ],
+ [
+ 139.2462238901099,
+ 35.78402209009009
+ ],
+ [
+ 139.2462238901099,
+ 35.78384190990991
+ ],
+ [
+ 139.24600410989012,
+ 35.78384190990991
+ ],
+ [
+ 139.24600410989012,
+ 35.78402209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaShimoNishi.656.2",
+ "name": "畑中下西",
+ "latitude": 35.783858,
+ "longitude": 139.245154,
+ "polygon": [
+ [
+ 139.24504410989013,
+ 35.78394809009009
+ ],
+ [
+ 139.2452638901099,
+ 35.78394809009009
+ ],
+ [
+ 139.2452638901099,
+ 35.78376790990991
+ ],
+ [
+ 139.24504410989013,
+ 35.78376790990991
+ ],
+ [
+ 139.24504410989013,
+ 35.78394809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoNegishi.657.1",
+ "name": "下根岸",
+ "latitude": 35.728212,
+ "longitude": 139.782266,
+ "polygon": [
+ [
+ 139.7821561098901,
+ 35.72830209009009
+ ],
+ [
+ 139.78237589010988,
+ 35.72830209009009
+ ],
+ [
+ 139.78237589010988,
+ 35.72812190990991
+ ],
+ [
+ 139.7821561098901,
+ 35.72812190990991
+ ],
+ [
+ 139.7821561098901,
+ 35.72830209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoNegishi.657.2",
+ "name": "下根岸",
+ "latitude": 35.728064,
+ "longitude": 139.782451,
+ "polygon": [
+ [
+ 139.78234110989013,
+ 35.728154090090094
+ ],
+ [
+ 139.7825608901099,
+ 35.728154090090094
+ ],
+ [
+ 139.7825608901099,
+ 35.72797390990991
+ ],
+ [
+ 139.78234110989013,
+ 35.72797390990991
+ ],
+ [
+ 139.78234110989013,
+ 35.728154090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimohata.658.2",
+ "name": "下畑",
+ "latitude": 35.838228,
+ "longitude": 139.29215,
+ "polygon": [
+ [
+ 139.2920401098901,
+ 35.83831809009009
+ ],
+ [
+ 139.29225989010988,
+ 35.83831809009009
+ ],
+ [
+ 139.29225989010988,
+ 35.83813790990991
+ ],
+ [
+ 139.2920401098901,
+ 35.83813790990991
+ ],
+ [
+ 139.2920401098901,
+ 35.83831809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiItchomeJichiKaikan.660.1",
+ "name": "成木一丁目自治会館前",
+ "latitude": 35.837536,
+ "longitude": 139.278279,
+ "polygon": [
+ [
+ 139.27816910989011,
+ 35.83762609009009
+ ],
+ [
+ 139.27838889010988,
+ 35.83762609009009
+ ],
+ [
+ 139.27838889010988,
+ 35.83744590990991
+ ],
+ [
+ 139.27816910989011,
+ 35.83744590990991
+ ],
+ [
+ 139.27816910989011,
+ 35.83762609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiItchomeJichiKaikan.660.2",
+ "name": "成木一丁目自治会館前",
+ "latitude": 35.837526,
+ "longitude": 139.278687,
+ "polygon": [
+ [
+ 139.2785771098901,
+ 35.83761609009009
+ ],
+ [
+ 139.27879689010987,
+ 35.83761609009009
+ ],
+ [
+ 139.27879689010987,
+ 35.83743590990991
+ ],
+ [
+ 139.2785771098901,
+ 35.83743590990991
+ ],
+ [
+ 139.2785771098901,
+ 35.83761609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiItchomeYotsukado.661.1",
+ "name": "成木一丁目四ツ角",
+ "latitude": 35.837739,
+ "longitude": 139.280571,
+ "polygon": [
+ [
+ 139.28046110989013,
+ 35.83782909009009
+ ],
+ [
+ 139.2806808901099,
+ 35.83782909009009
+ ],
+ [
+ 139.2806808901099,
+ 35.83764890990991
+ ],
+ [
+ 139.28046110989013,
+ 35.83764890990991
+ ],
+ [
+ 139.28046110989013,
+ 35.83782909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiItchomeYotsukado.661.2",
+ "name": "成木一丁目四ツ角",
+ "latitude": 35.837657,
+ "longitude": 139.280261,
+ "polygon": [
+ [
+ 139.2801511098901,
+ 35.83774709009009
+ ],
+ [
+ 139.28037089010988,
+ 35.83774709009009
+ ],
+ [
+ 139.28037089010988,
+ 35.83756690990991
+ ],
+ [
+ 139.2801511098901,
+ 35.83756690990991
+ ],
+ [
+ 139.2801511098901,
+ 35.83774709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoItchome.663.1",
+ "name": "志茂一丁目",
+ "latitude": 35.77797,
+ "longitude": 139.732671,
+ "polygon": [
+ [
+ 139.73256110989013,
+ 35.778060090090094
+ ],
+ [
+ 139.7327808901099,
+ 35.778060090090094
+ ],
+ [
+ 139.7327808901099,
+ 35.77787990990991
+ ],
+ [
+ 139.73256110989013,
+ 35.77787990990991
+ ],
+ [
+ 139.73256110989013,
+ 35.778060090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShokunikuShijo.674.2",
+ "name": "食肉市場前",
+ "latitude": 35.627682,
+ "longitude": 139.74495,
+ "polygon": [
+ [
+ 139.7448401098901,
+ 35.62777209009009
+ ],
+ [
+ 139.74505989010987,
+ 35.62777209009009
+ ],
+ [
+ 139.74505989010987,
+ 35.62759190990991
+ ],
+ [
+ 139.7448401098901,
+ 35.62759190990991
+ ],
+ [
+ 139.7448401098901,
+ 35.62777209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoItchome.663.2",
+ "name": "志茂一丁目",
+ "latitude": 35.777922,
+ "longitude": 139.732478,
+ "polygon": [
+ [
+ 139.7323681098901,
+ 35.77801209009009
+ ],
+ [
+ 139.73258789010987,
+ 35.77801209009009
+ ],
+ [
+ 139.73258789010987,
+ 35.77783190990991
+ ],
+ [
+ 139.7323681098901,
+ 35.77783190990991
+ ],
+ [
+ 139.7323681098901,
+ 35.77801209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoNichome.664.1",
+ "name": "志茂二丁目",
+ "latitude": 35.78136,
+ "longitude": 139.729351,
+ "polygon": [
+ [
+ 139.72924110989013,
+ 35.78145009009009
+ ],
+ [
+ 139.7294608901099,
+ 35.78145009009009
+ ],
+ [
+ 139.7294608901099,
+ 35.78126990990991
+ ],
+ [
+ 139.72924110989013,
+ 35.78126990990991
+ ],
+ [
+ 139.72924110989013,
+ 35.78145009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimoNichome.664.2",
+ "name": "志茂二丁目",
+ "latitude": 35.780729,
+ "longitude": 139.729767,
+ "polygon": [
+ [
+ 139.72965710989013,
+ 35.78081909009009
+ ],
+ [
+ 139.7298768901099,
+ 35.78081909009009
+ ],
+ [
+ 139.7298768901099,
+ 35.78063890990991
+ ],
+ [
+ 139.72965710989013,
+ 35.78063890990991
+ ],
+ [
+ 139.72965710989013,
+ 35.78081909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShakaiFukushiKaikan.665.1",
+ "name": "社会福祉会館前",
+ "latitude": 35.718855,
+ "longitude": 139.829965,
+ "polygon": [
+ [
+ 139.8298551098901,
+ 35.71894509009009
+ ],
+ [
+ 139.83007489010987,
+ 35.71894509009009
+ ],
+ [
+ 139.83007489010987,
+ 35.71876490990991
+ ],
+ [
+ 139.8298551098901,
+ 35.71876490990991
+ ],
+ [
+ 139.8298551098901,
+ 35.71894509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShakaiFukushiKaikan.665.2",
+ "name": "社会福祉会館前",
+ "latitude": 35.718731,
+ "longitude": 139.829818,
+ "polygon": [
+ [
+ 139.8297081098901,
+ 35.71882109009009
+ ],
+ [
+ 139.82992789010987,
+ 35.71882109009009
+ ],
+ [
+ 139.82992789010987,
+ 35.71864090990991
+ ],
+ [
+ 139.8297081098901,
+ 35.71864090990991
+ ],
+ [
+ 139.8297081098901,
+ 35.71882109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShogakkoDori.667.1",
+ "name": "小学校通り",
+ "latitude": 35.65789,
+ "longitude": 139.876226,
+ "polygon": [
+ [
+ 139.87611610989012,
+ 35.65798009009009
+ ],
+ [
+ 139.87633589010989,
+ 35.65798009009009
+ ],
+ [
+ 139.87633589010989,
+ 35.65779990990991
+ ],
+ [
+ 139.87611610989012,
+ 35.65779990990991
+ ],
+ [
+ 139.87611610989012,
+ 35.65798009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShogakkoDori.667.2",
+ "name": "小学校通り",
+ "latitude": 35.658058,
+ "longitude": 139.875393,
+ "polygon": [
+ [
+ 139.87528310989012,
+ 35.65814809009009
+ ],
+ [
+ 139.87550289010989,
+ 35.65814809009009
+ ],
+ [
+ 139.87550289010989,
+ 35.65796790990991
+ ],
+ [
+ 139.87528310989012,
+ 35.65796790990991
+ ],
+ [
+ 139.87528310989012,
+ 35.65814809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shosenji.668.1",
+ "name": "小川寺前",
+ "latitude": 35.731332,
+ "longitude": 139.450766,
+ "polygon": [
+ [
+ 139.4506561098901,
+ 35.73142209009009
+ ],
+ [
+ 139.45087589010987,
+ 35.73142209009009
+ ],
+ [
+ 139.45087589010987,
+ 35.73124190990991
+ ],
+ [
+ 139.4506561098901,
+ 35.73124190990991
+ ],
+ [
+ 139.4506561098901,
+ 35.73142209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shosenji.668.2",
+ "name": "小川寺前",
+ "latitude": 35.731157,
+ "longitude": 139.451867,
+ "polygon": [
+ [
+ 139.4517571098901,
+ 35.73124709009009
+ ],
+ [
+ 139.45197689010988,
+ 35.73124709009009
+ ],
+ [
+ 139.45197689010988,
+ 35.73106690990991
+ ],
+ [
+ 139.4517571098901,
+ 35.73106690990991
+ ],
+ [
+ 139.4517571098901,
+ 35.73124709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShioiriKoen.669.1",
+ "name": "汐入公園前",
+ "latitude": 35.737208,
+ "longitude": 139.808553,
+ "polygon": [
+ [
+ 139.8084431098901,
+ 35.73729809009009
+ ],
+ [
+ 139.80866289010987,
+ 35.73729809009009
+ ],
+ [
+ 139.80866289010987,
+ 35.73711790990991
+ ],
+ [
+ 139.8084431098901,
+ 35.73711790990991
+ ],
+ [
+ 139.8084431098901,
+ 35.73729809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShioiriKoen.669.2",
+ "name": "汐入公園前",
+ "latitude": 35.737057,
+ "longitude": 139.809287,
+ "polygon": [
+ [
+ 139.80917710989013,
+ 35.73714709009009
+ ],
+ [
+ 139.8093968901099,
+ 35.73714709009009
+ ],
+ [
+ 139.8093968901099,
+ 35.73696690990991
+ ],
+ [
+ 139.80917710989013,
+ 35.73696690990991
+ ],
+ [
+ 139.80917710989013,
+ 35.73714709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Showabashi.671.1",
+ "name": "昭和橋",
+ "latitude": 35.616467,
+ "longitude": 139.7476,
+ "polygon": [
+ [
+ 139.74749010989012,
+ 35.61655709009009
+ ],
+ [
+ 139.7477098901099,
+ 35.61655709009009
+ ],
+ [
+ 139.7477098901099,
+ 35.61637690990991
+ ],
+ [
+ 139.74749010989012,
+ 35.61637690990991
+ ],
+ [
+ 139.74749010989012,
+ 35.61655709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Showabashi.671.2",
+ "name": "昭和橋",
+ "latitude": 35.618511,
+ "longitude": 139.747285,
+ "polygon": [
+ [
+ 139.74717510989012,
+ 35.61860109009009
+ ],
+ [
+ 139.7473948901099,
+ 35.61860109009009
+ ],
+ [
+ 139.7473948901099,
+ 35.61842090990991
+ ],
+ [
+ 139.74717510989012,
+ 35.61842090990991
+ ],
+ [
+ 139.74717510989012,
+ 35.61860109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShowaByoin.672.1",
+ "name": "昭和病院前",
+ "latitude": 35.730656,
+ "longitude": 139.504013,
+ "polygon": [
+ [
+ 139.5039031098901,
+ 35.73074609009009
+ ],
+ [
+ 139.50412289010987,
+ 35.73074609009009
+ ],
+ [
+ 139.50412289010987,
+ 35.73056590990991
+ ],
+ [
+ 139.5039031098901,
+ 35.73056590990991
+ ],
+ [
+ 139.5039031098901,
+ 35.73074609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShowaByoin.672.2",
+ "name": "昭和病院前",
+ "latitude": 35.730581,
+ "longitude": 139.504152,
+ "polygon": [
+ [
+ 139.50404210989012,
+ 35.73067109009009
+ ],
+ [
+ 139.5042618901099,
+ 35.73067109009009
+ ],
+ [
+ 139.5042618901099,
+ 35.73049090990991
+ ],
+ [
+ 139.50404210989012,
+ 35.73049090990991
+ ],
+ [
+ 139.50404210989012,
+ 35.73067109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShowamachiSanchome.673.1",
+ "name": "昭和町三丁目",
+ "latitude": 35.749211,
+ "longitude": 139.750966,
+ "polygon": [
+ [
+ 139.75085610989012,
+ 35.74930109009009
+ ],
+ [
+ 139.7510758901099,
+ 35.74930109009009
+ ],
+ [
+ 139.7510758901099,
+ 35.74912090990991
+ ],
+ [
+ 139.75085610989012,
+ 35.74912090990991
+ ],
+ [
+ 139.75085610989012,
+ 35.74930109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShowamachiSanchome.673.2",
+ "name": "昭和町三丁目",
+ "latitude": 35.749077,
+ "longitude": 139.750866,
+ "polygon": [
+ [
+ 139.75075610989012,
+ 35.74916709009009
+ ],
+ [
+ 139.75097589010988,
+ 35.74916709009009
+ ],
+ [
+ 139.75097589010988,
+ 35.74898690990991
+ ],
+ [
+ 139.75075610989012,
+ 35.74898690990991
+ ],
+ [
+ 139.75075610989012,
+ 35.74916709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShokunikuShijo.674.1",
+ "name": "食肉市場前",
+ "latitude": 35.627876,
+ "longitude": 139.744697,
+ "polygon": [
+ [
+ 139.74458710989012,
+ 35.62796609009009
+ ],
+ [
+ 139.74480689010988,
+ 35.62796609009009
+ ],
+ [
+ 139.74480689010988,
+ 35.62778590990991
+ ],
+ [
+ 139.74458710989012,
+ 35.62778590990991
+ ],
+ [
+ 139.74458710989012,
+ 35.62796609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shirakawa.675.1",
+ "name": "白河",
+ "latitude": 35.68244,
+ "longitude": 139.807344,
+ "polygon": [
+ [
+ 139.80723410989012,
+ 35.68253009009009
+ ],
+ [
+ 139.80745389010988,
+ 35.68253009009009
+ ],
+ [
+ 139.80745389010988,
+ 35.68234990990991
+ ],
+ [
+ 139.80723410989012,
+ 35.68234990990991
+ ],
+ [
+ 139.80723410989012,
+ 35.68253009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shirakawa.675.2",
+ "name": "白河",
+ "latitude": 35.682588,
+ "longitude": 139.807009,
+ "polygon": [
+ [
+ 139.8068991098901,
+ 35.68267809009009
+ ],
+ [
+ 139.80711889010988,
+ 35.68267809009009
+ ],
+ [
+ 139.80711889010988,
+ 35.68249790990991
+ ],
+ [
+ 139.8068991098901,
+ 35.68249790990991
+ ],
+ [
+ 139.8068991098901,
+ 35.68267809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shirakawa.675.3",
+ "name": "白河",
+ "latitude": 35.682904,
+ "longitude": 139.80641,
+ "polygon": [
+ [
+ 139.80630010989012,
+ 35.68299409009009
+ ],
+ [
+ 139.80651989010988,
+ 35.68299409009009
+ ],
+ [
+ 139.80651989010988,
+ 35.68281390990991
+ ],
+ [
+ 139.80630010989012,
+ 35.68281390990991
+ ],
+ [
+ 139.80630010989012,
+ 35.68299409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shirakawa.675.4",
+ "name": "白河",
+ "latitude": 35.683134,
+ "longitude": 139.806602,
+ "polygon": [
+ [
+ 139.80649210989012,
+ 35.68322409009009
+ ],
+ [
+ 139.80671189010988,
+ 35.68322409009009
+ ],
+ [
+ 139.80671189010988,
+ 35.68304390990991
+ ],
+ [
+ 139.80649210989012,
+ 35.68304390990991
+ ],
+ [
+ 139.80649210989012,
+ 35.68322409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirakawaNichome.676.1",
+ "name": "白河二丁目",
+ "latitude": 35.682329,
+ "longitude": 139.80267,
+ "polygon": [
+ [
+ 139.80256010989012,
+ 35.68241909009009
+ ],
+ [
+ 139.8027798901099,
+ 35.68241909009009
+ ],
+ [
+ 139.8027798901099,
+ 35.68223890990991
+ ],
+ [
+ 139.80256010989012,
+ 35.68223890990991
+ ],
+ [
+ 139.80256010989012,
+ 35.68241909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirakawaNichome.676.2",
+ "name": "白河二丁目",
+ "latitude": 35.682191,
+ "longitude": 139.802942,
+ "polygon": [
+ [
+ 139.80283210989012,
+ 35.68228109009009
+ ],
+ [
+ 139.80305189010988,
+ 35.68228109009009
+ ],
+ [
+ 139.80305189010988,
+ 35.68210090990991
+ ],
+ [
+ 139.80283210989012,
+ 35.68210090990991
+ ],
+ [
+ 139.80283210989012,
+ 35.68228109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiratoriItchome.677.1",
+ "name": "白鳥一丁目",
+ "latitude": 35.746732,
+ "longitude": 139.845625,
+ "polygon": [
+ [
+ 139.84551510989013,
+ 35.74682209009009
+ ],
+ [
+ 139.8457348901099,
+ 35.74682209009009
+ ],
+ [
+ 139.8457348901099,
+ 35.74664190990991
+ ],
+ [
+ 139.84551510989013,
+ 35.74664190990991
+ ],
+ [
+ 139.84551510989013,
+ 35.74682209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiratoriItchome.677.2",
+ "name": "白鳥一丁目",
+ "latitude": 35.746554,
+ "longitude": 139.845775,
+ "polygon": [
+ [
+ 139.84566510989012,
+ 35.74664409009009
+ ],
+ [
+ 139.8458848901099,
+ 35.74664409009009
+ ],
+ [
+ 139.8458848901099,
+ 35.74646390990991
+ ],
+ [
+ 139.84566510989012,
+ 35.74646390990991
+ ],
+ [
+ 139.84566510989012,
+ 35.74664409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiratoriYonchome.678.1",
+ "name": "白鳥四丁目",
+ "latitude": 35.748916,
+ "longitude": 139.847542,
+ "polygon": [
+ [
+ 139.84743210989012,
+ 35.74900609009009
+ ],
+ [
+ 139.8476518901099,
+ 35.74900609009009
+ ],
+ [
+ 139.8476518901099,
+ 35.74882590990991
+ ],
+ [
+ 139.84743210989012,
+ 35.74882590990991
+ ],
+ [
+ 139.84743210989012,
+ 35.74900609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiratoriYonchome.678.2",
+ "name": "白鳥四丁目",
+ "latitude": 35.749915,
+ "longitude": 139.84803,
+ "polygon": [
+ [
+ 139.8479201098901,
+ 35.75000509009009
+ ],
+ [
+ 139.84813989010988,
+ 35.75000509009009
+ ],
+ [
+ 139.84813989010988,
+ 35.74982490990991
+ ],
+ [
+ 139.8479201098901,
+ 35.74982490990991
+ ],
+ [
+ 139.8479201098901,
+ 35.75000509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirahigebashiHigashi.679.1",
+ "name": "白鬚橋東",
+ "latitude": 35.727052,
+ "longitude": 139.813706,
+ "polygon": [
+ [
+ 139.8135961098901,
+ 35.72714209009009
+ ],
+ [
+ 139.81381589010988,
+ 35.72714209009009
+ ],
+ [
+ 139.81381589010988,
+ 35.72696190990991
+ ],
+ [
+ 139.8135961098901,
+ 35.72696190990991
+ ],
+ [
+ 139.8135961098901,
+ 35.72714209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirahigebashiHigashi.679.2",
+ "name": "白鬚橋東",
+ "latitude": 35.727097,
+ "longitude": 139.813939,
+ "polygon": [
+ [
+ 139.81382910989012,
+ 35.72718709009009
+ ],
+ [
+ 139.8140488901099,
+ 35.72718709009009
+ ],
+ [
+ 139.8140488901099,
+ 35.72700690990991
+ ],
+ [
+ 139.81382910989012,
+ 35.72700690990991
+ ],
+ [
+ 139.81382910989012,
+ 35.72718709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokanedaiGochome.680.1",
+ "name": "白金台五丁目",
+ "latitude": 35.636497,
+ "longitude": 139.723132,
+ "polygon": [
+ [
+ 139.7230221098901,
+ 35.63658709009009
+ ],
+ [
+ 139.72324189010988,
+ 35.63658709009009
+ ],
+ [
+ 139.72324189010988,
+ 35.63640690990991
+ ],
+ [
+ 139.7230221098901,
+ 35.63640690990991
+ ],
+ [
+ 139.7230221098901,
+ 35.63658709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokanedaiGochome.680.2",
+ "name": "白金台五丁目",
+ "latitude": 35.636419,
+ "longitude": 139.722593,
+ "polygon": [
+ [
+ 139.7224831098901,
+ 35.63650909009009
+ ],
+ [
+ 139.72270289010987,
+ 35.63650909009009
+ ],
+ [
+ 139.72270289010987,
+ 35.636328909909906
+ ],
+ [
+ 139.7224831098901,
+ 35.636328909909906
+ ],
+ [
+ 139.7224831098901,
+ 35.63650909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokaneTakanawaStation.681.1",
+ "name": "白金高輪駅前",
+ "latitude": 35.64311,
+ "longitude": 139.733667,
+ "polygon": [
+ [
+ 139.7335571098901,
+ 35.64320009009009
+ ],
+ [
+ 139.73377689010988,
+ 35.64320009009009
+ ],
+ [
+ 139.73377689010988,
+ 35.64301990990991
+ ],
+ [
+ 139.7335571098901,
+ 35.64301990990991
+ ],
+ [
+ 139.7335571098901,
+ 35.64320009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokaneTakanawaStation.681.2",
+ "name": "白金高輪駅前",
+ "latitude": 35.643168,
+ "longitude": 139.733417,
+ "polygon": [
+ [
+ 139.73330710989012,
+ 35.64325809009009
+ ],
+ [
+ 139.73352689010989,
+ 35.64325809009009
+ ],
+ [
+ 139.73352689010989,
+ 35.64307790990991
+ ],
+ [
+ 139.73330710989012,
+ 35.64307790990991
+ ],
+ [
+ 139.73330710989012,
+ 35.64325809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokaneTakanawaStation.681.3",
+ "name": "白金高輪駅前",
+ "latitude": 35.642297,
+ "longitude": 139.733967,
+ "polygon": [
+ [
+ 139.73385710989012,
+ 35.64238709009009
+ ],
+ [
+ 139.7340768901099,
+ 35.64238709009009
+ ],
+ [
+ 139.7340768901099,
+ 35.64220690990991
+ ],
+ [
+ 139.73385710989012,
+ 35.64220690990991
+ ],
+ [
+ 139.73385710989012,
+ 35.64238709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokaneRokuchome.682.1",
+ "name": "白金六丁目",
+ "latitude": 35.642769,
+ "longitude": 139.721429,
+ "polygon": [
+ [
+ 139.72131910989012,
+ 35.64285909009009
+ ],
+ [
+ 139.72153889010988,
+ 35.64285909009009
+ ],
+ [
+ 139.72153889010988,
+ 35.64267890990991
+ ],
+ [
+ 139.72131910989012,
+ 35.64267890990991
+ ],
+ [
+ 139.72131910989012,
+ 35.64285909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokaneShogakko.683.1",
+ "name": "白金小学校前",
+ "latitude": 35.636773,
+ "longitude": 139.728362,
+ "polygon": [
+ [
+ 139.72825210989012,
+ 35.63686309009009
+ ],
+ [
+ 139.7284718901099,
+ 35.63686309009009
+ ],
+ [
+ 139.7284718901099,
+ 35.63668290990991
+ ],
+ [
+ 139.72825210989012,
+ 35.63668290990991
+ ],
+ [
+ 139.72825210989012,
+ 35.63686309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokaneShogakko.683.2",
+ "name": "白金小学校前",
+ "latitude": 35.636539,
+ "longitude": 139.728437,
+ "polygon": [
+ [
+ 139.72832710989013,
+ 35.63662909009009
+ ],
+ [
+ 139.7285468901099,
+ 35.63662909009009
+ ],
+ [
+ 139.7285468901099,
+ 35.63644890990991
+ ],
+ [
+ 139.72832710989013,
+ 35.63644890990991
+ ],
+ [
+ 139.72832710989013,
+ 35.63662909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOkuboStation.684.1",
+ "name": "新大久保駅前",
+ "latitude": 35.701574,
+ "longitude": 139.699583,
+ "polygon": [
+ [
+ 139.6994731098901,
+ 35.70166409009009
+ ],
+ [
+ 139.69969289010987,
+ 35.70166409009009
+ ],
+ [
+ 139.69969289010987,
+ 35.70148390990991
+ ],
+ [
+ 139.6994731098901,
+ 35.70148390990991
+ ],
+ [
+ 139.6994731098901,
+ 35.70166409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOkuboStation.684.2",
+ "name": "新大久保駅前",
+ "latitude": 35.701452,
+ "longitude": 139.69975,
+ "polygon": [
+ [
+ 139.6996401098901,
+ 35.70154209009009
+ ],
+ [
+ 139.69985989010988,
+ 35.70154209009009
+ ],
+ [
+ 139.69985989010988,
+ 35.70136190990991
+ ],
+ [
+ 139.6996401098901,
+ 35.70136190990991
+ ],
+ [
+ 139.6996401098901,
+ 35.70154209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkawaNichome.689.2",
+ "name": "新川二丁目",
+ "latitude": 35.674495,
+ "longitude": 139.781974,
+ "polygon": [
+ [
+ 139.7818641098901,
+ 35.67458509009009
+ ],
+ [
+ 139.78208389010987,
+ 35.67458509009009
+ ],
+ [
+ 139.78208389010987,
+ 35.67440490990991
+ ],
+ [
+ 139.7818641098901,
+ 35.67440490990991
+ ],
+ [
+ 139.7818641098901,
+ 35.67458509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOtsuka.685.1",
+ "name": "新大塚",
+ "latitude": 35.726558,
+ "longitude": 139.729887,
+ "polygon": [
+ [
+ 139.7297771098901,
+ 35.72664809009009
+ ],
+ [
+ 139.72999689010987,
+ 35.72664809009009
+ ],
+ [
+ 139.72999689010987,
+ 35.72646790990991
+ ],
+ [
+ 139.7297771098901,
+ 35.72646790990991
+ ],
+ [
+ 139.7297771098901,
+ 35.72664809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoiwaStationKitaguchi.695.11",
+ "name": "新小岩駅北口",
+ "latitude": 35.717904,
+ "longitude": 139.858385,
+ "polygon": [
+ [
+ 139.85827510989012,
+ 35.71799409009009
+ ],
+ [
+ 139.85849489010988,
+ 35.71799409009009
+ ],
+ [
+ 139.85849489010988,
+ 35.71781390990991
+ ],
+ [
+ 139.85827510989012,
+ 35.71781390990991
+ ],
+ [
+ 139.85827510989012,
+ 35.71799409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOtsuka.685.2",
+ "name": "新大塚",
+ "latitude": 35.726566,
+ "longitude": 139.72972,
+ "polygon": [
+ [
+ 139.7296101098901,
+ 35.72665609009009
+ ],
+ [
+ 139.72982989010987,
+ 35.72665609009009
+ ],
+ [
+ 139.72982989010987,
+ 35.72647590990991
+ ],
+ [
+ 139.7296101098901,
+ 35.72647590990991
+ ],
+ [
+ 139.7296101098901,
+ 35.72665609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOtsuka.685.3",
+ "name": "新大塚",
+ "latitude": 35.726091,
+ "longitude": 139.72931,
+ "polygon": [
+ [
+ 139.72920010989012,
+ 35.72618109009009
+ ],
+ [
+ 139.72941989010988,
+ 35.72618109009009
+ ],
+ [
+ 139.72941989010988,
+ 35.72600090990991
+ ],
+ [
+ 139.72920010989012,
+ 35.72600090990991
+ ],
+ [
+ 139.72920010989012,
+ 35.72618109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOtsuka.685.4",
+ "name": "新大塚",
+ "latitude": 35.726165,
+ "longitude": 139.729597,
+ "polygon": [
+ [
+ 139.72948710989013,
+ 35.72625509009009
+ ],
+ [
+ 139.7297068901099,
+ 35.72625509009009
+ ],
+ [
+ 139.7297068901099,
+ 35.72607490990991
+ ],
+ [
+ 139.72948710989013,
+ 35.72607490990991
+ ],
+ [
+ 139.72948710989013,
+ 35.72625509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOhashi.686.1",
+ "name": "新大橋",
+ "latitude": 35.687879,
+ "longitude": 139.794758,
+ "polygon": [
+ [
+ 139.79464810989012,
+ 35.68796909009009
+ ],
+ [
+ 139.79486789010988,
+ 35.68796909009009
+ ],
+ [
+ 139.79486789010988,
+ 35.68778890990991
+ ],
+ [
+ 139.79464810989012,
+ 35.68778890990991
+ ],
+ [
+ 139.79464810989012,
+ 35.68796909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOhashi.686.2",
+ "name": "新大橋",
+ "latitude": 35.688054,
+ "longitude": 139.796626,
+ "polygon": [
+ [
+ 139.79651610989012,
+ 35.68814409009009
+ ],
+ [
+ 139.7967358901099,
+ 35.68814409009009
+ ],
+ [
+ 139.7967358901099,
+ 35.68796390990991
+ ],
+ [
+ 139.79651610989012,
+ 35.68796390990991
+ ],
+ [
+ 139.79651610989012,
+ 35.68814409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKawaguchi.687.1",
+ "name": "新川口",
+ "latitude": 35.673362,
+ "longitude": 139.883996,
+ "polygon": [
+ [
+ 139.8838861098901,
+ 35.67345209009009
+ ],
+ [
+ 139.88410589010988,
+ 35.67345209009009
+ ],
+ [
+ 139.88410589010988,
+ 35.67327190990991
+ ],
+ [
+ 139.8838861098901,
+ 35.67327190990991
+ ],
+ [
+ 139.8838861098901,
+ 35.67345209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKawaguchi.687.2",
+ "name": "新川口",
+ "latitude": 35.671511,
+ "longitude": 139.883373,
+ "polygon": [
+ [
+ 139.88326310989012,
+ 35.67160109009009
+ ],
+ [
+ 139.8834828901099,
+ 35.67160109009009
+ ],
+ [
+ 139.8834828901099,
+ 35.67142090990991
+ ],
+ [
+ 139.88326310989012,
+ 35.67142090990991
+ ],
+ [
+ 139.88326310989012,
+ 35.67160109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkawaItchome.688.1",
+ "name": "新川一丁目",
+ "latitude": 35.678374,
+ "longitude": 139.783148,
+ "polygon": [
+ [
+ 139.78303810989013,
+ 35.67846409009009
+ ],
+ [
+ 139.7832578901099,
+ 35.67846409009009
+ ],
+ [
+ 139.7832578901099,
+ 35.67828390990991
+ ],
+ [
+ 139.78303810989013,
+ 35.67828390990991
+ ],
+ [
+ 139.78303810989013,
+ 35.67846409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkawaItchome.688.2",
+ "name": "新川一丁目",
+ "latitude": 35.678209,
+ "longitude": 139.782981,
+ "polygon": [
+ [
+ 139.78287110989012,
+ 35.67829909009009
+ ],
+ [
+ 139.7830908901099,
+ 35.67829909009009
+ ],
+ [
+ 139.7830908901099,
+ 35.67811890990991
+ ],
+ [
+ 139.78287110989012,
+ 35.67811890990991
+ ],
+ [
+ 139.78287110989012,
+ 35.67829909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkawaNichome.689.1",
+ "name": "新川二丁目",
+ "latitude": 35.67476,
+ "longitude": 139.781101,
+ "polygon": [
+ [
+ 139.78099110989012,
+ 35.67485009009009
+ ],
+ [
+ 139.7812108901099,
+ 35.67485009009009
+ ],
+ [
+ 139.7812108901099,
+ 35.67466990990991
+ ],
+ [
+ 139.78099110989012,
+ 35.67466990990991
+ ],
+ [
+ 139.78099110989012,
+ 35.67485009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKibaStation.690.1",
+ "name": "新木場駅前(構内)",
+ "latitude": 35.645327,
+ "longitude": 139.82651,
+ "polygon": [
+ [
+ 139.82640010989013,
+ 35.64541709009009
+ ],
+ [
+ 139.8266198901099,
+ 35.64541709009009
+ ],
+ [
+ 139.8266198901099,
+ 35.64523690990991
+ ],
+ [
+ 139.82640010989013,
+ 35.64523690990991
+ ],
+ [
+ 139.82640010989013,
+ 35.64541709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTower.975.2",
+ "name": "東京タワー",
+ "latitude": 35.658157,
+ "longitude": 139.745929,
+ "polygon": [
+ [
+ 139.7458191098901,
+ 35.65824709009009
+ ],
+ [
+ 139.74603889010987,
+ 35.65824709009009
+ ],
+ [
+ 139.74603889010987,
+ 35.65806690990991
+ ],
+ [
+ 139.7458191098901,
+ 35.65806690990991
+ ],
+ [
+ 139.7458191098901,
+ 35.65824709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKibaStation.690.3",
+ "name": "新木場駅前(構内)",
+ "latitude": 35.645264,
+ "longitude": 139.826369,
+ "polygon": [
+ [
+ 139.82625910989012,
+ 35.64535409009009
+ ],
+ [
+ 139.82647889010988,
+ 35.64535409009009
+ ],
+ [
+ 139.82647889010988,
+ 35.64517390990991
+ ],
+ [
+ 139.82625910989012,
+ 35.64517390990991
+ ],
+ [
+ 139.82625910989012,
+ 35.64535409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKibaStation.690.4",
+ "name": "新木場駅前(構内)",
+ "latitude": 35.645477,
+ "longitude": 139.826485,
+ "polygon": [
+ [
+ 139.8263751098901,
+ 35.64556709009009
+ ],
+ [
+ 139.82659489010987,
+ 35.64556709009009
+ ],
+ [
+ 139.82659489010987,
+ 35.64538690990991
+ ],
+ [
+ 139.8263751098901,
+ 35.64538690990991
+ ],
+ [
+ 139.8263751098901,
+ 35.64556709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKibaStation.690.5",
+ "name": "新木場駅前(構内)",
+ "latitude": 35.64564,
+ "longitude": 139.826257,
+ "polygon": [
+ [
+ 139.82614710989012,
+ 35.64573009009009
+ ],
+ [
+ 139.82636689010988,
+ 35.64573009009009
+ ],
+ [
+ 139.82636689010988,
+ 35.64554990990991
+ ],
+ [
+ 139.82614710989012,
+ 35.64554990990991
+ ],
+ [
+ 139.82614710989012,
+ 35.64573009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKibaStation.690.6",
+ "name": "新木場駅前(構内)",
+ "latitude": 35.645614,
+ "longitude": 139.826025,
+ "polygon": [
+ [
+ 139.8259151098901,
+ 35.64570409009009
+ ],
+ [
+ 139.82613489010987,
+ 35.64570409009009
+ ],
+ [
+ 139.82613489010987,
+ 35.64552390990991
+ ],
+ [
+ 139.8259151098901,
+ 35.64552390990991
+ ],
+ [
+ 139.8259151098901,
+ 35.64570409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKibaStation.691.1",
+ "name": "新木場駅前(明治通り)",
+ "latitude": 35.645613,
+ "longitude": 139.825462,
+ "polygon": [
+ [
+ 139.8253521098901,
+ 35.64570309009009
+ ],
+ [
+ 139.82557189010987,
+ 35.64570309009009
+ ],
+ [
+ 139.82557189010987,
+ 35.64552290990991
+ ],
+ [
+ 139.8253521098901,
+ 35.64552290990991
+ ],
+ [
+ 139.8253521098901,
+ 35.64570309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoiwaStationKitaguchi.695.9",
+ "name": "新小岩駅北口",
+ "latitude": 35.718294,
+ "longitude": 139.857822,
+ "polygon": [
+ [
+ 139.85771210989012,
+ 35.71838409009009
+ ],
+ [
+ 139.85793189010988,
+ 35.71838409009009
+ ],
+ [
+ 139.85793189010988,
+ 35.71820390990991
+ ],
+ [
+ 139.85771210989012,
+ 35.71820390990991
+ ],
+ [
+ 139.85771210989012,
+ 35.71838409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoiwaStation.696.1",
+ "name": "新小岩駅前",
+ "latitude": 35.716366,
+ "longitude": 139.858269,
+ "polygon": [
+ [
+ 139.85815910989012,
+ 35.71645609009009
+ ],
+ [
+ 139.8583788901099,
+ 35.71645609009009
+ ],
+ [
+ 139.8583788901099,
+ 35.71627590990991
+ ],
+ [
+ 139.85815910989012,
+ 35.71627590990991
+ ],
+ [
+ 139.85815910989012,
+ 35.71645609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoiwaStation.696.2",
+ "name": "新小岩駅前",
+ "latitude": 35.716641,
+ "longitude": 139.858348,
+ "polygon": [
+ [
+ 139.85823810989012,
+ 35.71673109009009
+ ],
+ [
+ 139.8584578901099,
+ 35.71673109009009
+ ],
+ [
+ 139.8584578901099,
+ 35.71655090990991
+ ],
+ [
+ 139.85823810989012,
+ 35.71655090990991
+ ],
+ [
+ 139.85823810989012,
+ 35.71673109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoiwaStation.696.3",
+ "name": "新小岩駅前",
+ "latitude": 35.716455,
+ "longitude": 139.859054,
+ "polygon": [
+ [
+ 139.8589441098901,
+ 35.716545090090094
+ ],
+ [
+ 139.85916389010987,
+ 35.716545090090094
+ ],
+ [
+ 139.85916389010987,
+ 35.71636490990991
+ ],
+ [
+ 139.8589441098901,
+ 35.71636490990991
+ ],
+ [
+ 139.8589441098901,
+ 35.716545090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkoiwaItchome.697.1",
+ "name": "新小岩一丁目",
+ "latitude": 35.714907,
+ "longitude": 139.861455,
+ "polygon": [
+ [
+ 139.86134510989012,
+ 35.71499709009009
+ ],
+ [
+ 139.8615648901099,
+ 35.71499709009009
+ ],
+ [
+ 139.8615648901099,
+ 35.714816909909906
+ ],
+ [
+ 139.86134510989012,
+ 35.714816909909906
+ ],
+ [
+ 139.86134510989012,
+ 35.71499709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkoiwaItchome.697.2",
+ "name": "新小岩一丁目",
+ "latitude": 35.714609,
+ "longitude": 139.861972,
+ "polygon": [
+ [
+ 139.86186210989013,
+ 35.71469909009009
+ ],
+ [
+ 139.8620818901099,
+ 35.71469909009009
+ ],
+ [
+ 139.8620818901099,
+ 35.71451890990991
+ ],
+ [
+ 139.86186210989013,
+ 35.71451890990991
+ ],
+ [
+ 139.86186210989013,
+ 35.71469909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkoiwaNichome.698.1",
+ "name": "新小岩二丁目",
+ "latitude": 35.717835,
+ "longitude": 139.861521,
+ "polygon": [
+ [
+ 139.86141110989013,
+ 35.71792509009009
+ ],
+ [
+ 139.8616308901099,
+ 35.71792509009009
+ ],
+ [
+ 139.8616308901099,
+ 35.71774490990991
+ ],
+ [
+ 139.86141110989013,
+ 35.71774490990991
+ ],
+ [
+ 139.86141110989013,
+ 35.71792509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkenohataItchome.767.1",
+ "name": "池之端一丁目",
+ "latitude": 35.712178,
+ "longitude": 139.76847,
+ "polygon": [
+ [
+ 139.76836010989012,
+ 35.71226809009009
+ ],
+ [
+ 139.7685798901099,
+ 35.71226809009009
+ ],
+ [
+ 139.7685798901099,
+ 35.71208790990991
+ ],
+ [
+ 139.76836010989012,
+ 35.71208790990991
+ ],
+ [
+ 139.76836010989012,
+ 35.71226809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkoiwaNichome.698.2",
+ "name": "新小岩二丁目",
+ "latitude": 35.717571,
+ "longitude": 139.861153,
+ "polygon": [
+ [
+ 139.86104310989012,
+ 35.71766109009009
+ ],
+ [
+ 139.86126289010988,
+ 35.71766109009009
+ ],
+ [
+ 139.86126289010988,
+ 35.71748090990991
+ ],
+ [
+ 139.86104310989012,
+ 35.71748090990991
+ ],
+ [
+ 139.86104310989012,
+ 35.71766109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoenji.699.1",
+ "name": "新高円寺",
+ "latitude": 35.697927,
+ "longitude": 139.648369,
+ "polygon": [
+ [
+ 139.64825910989012,
+ 35.69801709009009
+ ],
+ [
+ 139.64847889010989,
+ 35.69801709009009
+ ],
+ [
+ 139.64847889010989,
+ 35.69783690990991
+ ],
+ [
+ 139.64825910989012,
+ 35.69783690990991
+ ],
+ [
+ 139.64825910989012,
+ 35.69801709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoenji.699.2",
+ "name": "新高円寺",
+ "latitude": 35.697687,
+ "longitude": 139.647345,
+ "polygon": [
+ [
+ 139.64723510989012,
+ 35.69777709009009
+ ],
+ [
+ 139.64745489010988,
+ 35.69777709009009
+ ],
+ [
+ 139.64745489010988,
+ 35.69759690990991
+ ],
+ [
+ 139.64723510989012,
+ 35.69759690990991
+ ],
+ [
+ 139.64723510989012,
+ 35.69777709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoshinzuka.700.1",
+ "name": "新庚申塚",
+ "latitude": 35.740652,
+ "longitude": 139.731233,
+ "polygon": [
+ [
+ 139.73112310989012,
+ 35.74074209009009
+ ],
+ [
+ 139.7313428901099,
+ 35.74074209009009
+ ],
+ [
+ 139.7313428901099,
+ 35.74056190990991
+ ],
+ [
+ 139.73112310989012,
+ 35.74056190990991
+ ],
+ [
+ 139.73112310989012,
+ 35.74074209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKoshinzuka.700.2",
+ "name": "新庚申塚",
+ "latitude": 35.740827,
+ "longitude": 139.73148,
+ "polygon": [
+ [
+ 139.73137010989012,
+ 35.74091709009009
+ ],
+ [
+ 139.7315898901099,
+ 35.74091709009009
+ ],
+ [
+ 139.7315898901099,
+ 35.74073690990991
+ ],
+ [
+ 139.73137010989012,
+ 35.74073690990991
+ ],
+ [
+ 139.73137010989012,
+ 35.74091709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKodairaStation.701.1",
+ "name": "新小平駅前",
+ "latitude": 35.730299,
+ "longitude": 139.470677,
+ "polygon": [
+ [
+ 139.4705671098901,
+ 35.73038909009009
+ ],
+ [
+ 139.47078689010988,
+ 35.73038909009009
+ ],
+ [
+ 139.47078689010988,
+ 35.73020890990991
+ ],
+ [
+ 139.4705671098901,
+ 35.73020890990991
+ ],
+ [
+ 139.4705671098901,
+ 35.73038909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKodairaStation.701.2",
+ "name": "新小平駅前",
+ "latitude": 35.730209,
+ "longitude": 139.471244,
+ "polygon": [
+ [
+ 139.47113410989013,
+ 35.73029909009009
+ ],
+ [
+ 139.4713538901099,
+ 35.73029909009009
+ ],
+ [
+ 139.4713538901099,
+ 35.73011890990991
+ ],
+ [
+ 139.47113410989013,
+ 35.73011890990991
+ ],
+ [
+ 139.47113410989013,
+ 35.73029909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.1",
+ "name": "新宿駅西口",
+ "latitude": 35.692568,
+ "longitude": 139.697999,
+ "polygon": [
+ [
+ 139.69788910989013,
+ 35.69265809009009
+ ],
+ [
+ 139.6981088901099,
+ 35.69265809009009
+ ],
+ [
+ 139.6981088901099,
+ 35.69247790990991
+ ],
+ [
+ 139.69788910989013,
+ 35.69247790990991
+ ],
+ [
+ 139.69788910989013,
+ 35.69265809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.8",
+ "name": "新宿駅西口",
+ "latitude": 35.691872,
+ "longitude": 139.698671,
+ "polygon": [
+ [
+ 139.6985611098901,
+ 35.69196209009009
+ ],
+ [
+ 139.69878089010987,
+ 35.69196209009009
+ ],
+ [
+ 139.69878089010987,
+ 35.691781909909906
+ ],
+ [
+ 139.6985611098901,
+ 35.691781909909906
+ ],
+ [
+ 139.6985611098901,
+ 35.69196209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.2",
+ "name": "新宿駅西口",
+ "latitude": 35.691885,
+ "longitude": 139.698453,
+ "polygon": [
+ [
+ 139.69834310989012,
+ 35.69197509009009
+ ],
+ [
+ 139.69856289010988,
+ 35.69197509009009
+ ],
+ [
+ 139.69856289010988,
+ 35.69179490990991
+ ],
+ [
+ 139.69834310989012,
+ 35.69179490990991
+ ],
+ [
+ 139.69834310989012,
+ 35.69197509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.3",
+ "name": "新宿駅西口",
+ "latitude": 35.692197,
+ "longitude": 139.698934,
+ "polygon": [
+ [
+ 139.69882410989013,
+ 35.69228709009009
+ ],
+ [
+ 139.6990438901099,
+ 35.69228709009009
+ ],
+ [
+ 139.6990438901099,
+ 35.69210690990991
+ ],
+ [
+ 139.69882410989013,
+ 35.69210690990991
+ ],
+ [
+ 139.69882410989013,
+ 35.69228709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.4",
+ "name": "新宿駅西口",
+ "latitude": 35.692235,
+ "longitude": 139.69895,
+ "polygon": [
+ [
+ 139.6988401098901,
+ 35.69232509009009
+ ],
+ [
+ 139.69905989010988,
+ 35.69232509009009
+ ],
+ [
+ 139.69905989010988,
+ 35.692144909909906
+ ],
+ [
+ 139.6988401098901,
+ 35.692144909909906
+ ],
+ [
+ 139.6988401098901,
+ 35.69232509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.5",
+ "name": "新宿駅西口",
+ "latitude": 35.692266,
+ "longitude": 139.698543,
+ "polygon": [
+ [
+ 139.69843310989012,
+ 35.69235609009009
+ ],
+ [
+ 139.69865289010988,
+ 35.69235609009009
+ ],
+ [
+ 139.69865289010988,
+ 35.692175909909906
+ ],
+ [
+ 139.69843310989012,
+ 35.692175909909906
+ ],
+ [
+ 139.69843310989012,
+ 35.69235609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.6",
+ "name": "新宿駅西口",
+ "latitude": 35.692592,
+ "longitude": 139.698031,
+ "polygon": [
+ [
+ 139.6979211098901,
+ 35.69268209009009
+ ],
+ [
+ 139.69814089010987,
+ 35.69268209009009
+ ],
+ [
+ 139.69814089010987,
+ 35.69250190990991
+ ],
+ [
+ 139.6979211098901,
+ 35.69250190990991
+ ],
+ [
+ 139.6979211098901,
+ 35.69268209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.7",
+ "name": "新宿駅西口",
+ "latitude": 35.690935,
+ "longitude": 139.698504,
+ "polygon": [
+ [
+ 139.69839410989013,
+ 35.69102509009009
+ ],
+ [
+ 139.6986138901099,
+ 35.69102509009009
+ ],
+ [
+ 139.6986138901099,
+ 35.69084490990991
+ ],
+ [
+ 139.69839410989013,
+ 35.69084490990991
+ ],
+ [
+ 139.69839410989013,
+ 35.69102509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationNishiguchi.702.10",
+ "name": "新宿駅西口",
+ "latitude": 35.691787,
+ "longitude": 139.698436,
+ "polygon": [
+ [
+ 139.6983261098901,
+ 35.69187709009009
+ ],
+ [
+ 139.69854589010987,
+ 35.69187709009009
+ ],
+ [
+ 139.69854589010987,
+ 35.69169690990991
+ ],
+ [
+ 139.6983261098901,
+ 35.69169690990991
+ ],
+ [
+ 139.6983261098901,
+ 35.69187709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuSanchome.713.4",
+ "name": "新宿三丁目",
+ "latitude": 35.690432,
+ "longitude": 139.707087,
+ "polygon": [
+ [
+ 139.70697710989012,
+ 35.69052209009009
+ ],
+ [
+ 139.70719689010988,
+ 35.69052209009009
+ ],
+ [
+ 139.70719689010988,
+ 35.69034190990991
+ ],
+ [
+ 139.70697710989012,
+ 35.69034190990991
+ ],
+ [
+ 139.70697710989012,
+ 35.69052209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationHigashiguchi.703.1",
+ "name": "新宿駅東口",
+ "latitude": 35.692446,
+ "longitude": 139.701215,
+ "polygon": [
+ [
+ 139.7011051098901,
+ 35.69253609009009
+ ],
+ [
+ 139.70132489010987,
+ 35.69253609009009
+ ],
+ [
+ 139.70132489010987,
+ 35.69235590990991
+ ],
+ [
+ 139.7011051098901,
+ 35.69235590990991
+ ],
+ [
+ 139.7011051098901,
+ 35.69253609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuStationHigashiguchi.703.2",
+ "name": "新宿駅東口",
+ "latitude": 35.692699,
+ "longitude": 139.700413,
+ "polygon": [
+ [
+ 139.70030310989011,
+ 35.69278909009009
+ ],
+ [
+ 139.70052289010988,
+ 35.69278909009009
+ ],
+ [
+ 139.70052289010988,
+ 35.69260890990991
+ ],
+ [
+ 139.70030310989011,
+ 35.69260890990991
+ ],
+ [
+ 139.70030310989011,
+ 35.69278909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuIsetan.705.5",
+ "name": "新宿伊勢丹前",
+ "latitude": 35.691726,
+ "longitude": 139.705281,
+ "polygon": [
+ [
+ 139.70517110989013,
+ 35.69181609009009
+ ],
+ [
+ 139.7053908901099,
+ 35.69181609009009
+ ],
+ [
+ 139.7053908901099,
+ 35.69163590990991
+ ],
+ [
+ 139.70517110989013,
+ 35.69163590990991
+ ],
+ [
+ 139.70517110989013,
+ 35.69181609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuIsetan.705.6",
+ "name": "新宿伊勢丹前",
+ "latitude": 35.691584,
+ "longitude": 139.705196,
+ "polygon": [
+ [
+ 139.70508610989012,
+ 35.69167409009009
+ ],
+ [
+ 139.70530589010988,
+ 35.69167409009009
+ ],
+ [
+ 139.70530589010988,
+ 35.69149390990991
+ ],
+ [
+ 139.70508610989012,
+ 35.69149390990991
+ ],
+ [
+ 139.70508610989012,
+ 35.69167409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuIsetan.705.7",
+ "name": "新宿伊勢丹前",
+ "latitude": 35.691599,
+ "longitude": 139.705432,
+ "polygon": [
+ [
+ 139.70532210989012,
+ 35.69168909009009
+ ],
+ [
+ 139.70554189010988,
+ 35.69168909009009
+ ],
+ [
+ 139.70554189010988,
+ 35.691508909909906
+ ],
+ [
+ 139.70532210989012,
+ 35.691508909909906
+ ],
+ [
+ 139.70532210989012,
+ 35.69168909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinsunaItchome.717.1",
+ "name": "新砂一丁目",
+ "latitude": 35.658434,
+ "longitude": 139.824133,
+ "polygon": [
+ [
+ 139.8240231098901,
+ 35.65852409009009
+ ],
+ [
+ 139.82424289010987,
+ 35.65852409009009
+ ],
+ [
+ 139.82424289010987,
+ 35.65834390990991
+ ],
+ [
+ 139.8240231098901,
+ 35.65834390990991
+ ],
+ [
+ 139.8240231098901,
+ 35.65852409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoOperaCityMinami.708.1",
+ "name": "東京オペラシティ南",
+ "latitude": 35.681564,
+ "longitude": 139.688735,
+ "polygon": [
+ [
+ 139.68862510989013,
+ 35.68165409009009
+ ],
+ [
+ 139.6888448901099,
+ 35.68165409009009
+ ],
+ [
+ 139.6888448901099,
+ 35.68147390990991
+ ],
+ [
+ 139.68862510989013,
+ 35.68147390990991
+ ],
+ [
+ 139.68862510989013,
+ 35.68165409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoOperaCityMinami.708.2",
+ "name": "東京オペラシティ南",
+ "latitude": 35.681286,
+ "longitude": 139.688999,
+ "polygon": [
+ [
+ 139.6888891098901,
+ 35.68137609009009
+ ],
+ [
+ 139.68910889010988,
+ 35.68137609009009
+ ],
+ [
+ 139.68910889010988,
+ 35.68119590990991
+ ],
+ [
+ 139.6888891098901,
+ 35.68119590990991
+ ],
+ [
+ 139.6888891098901,
+ 35.68137609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuCosmicCenter.709.1",
+ "name": "新宿コズミックセンター前",
+ "latitude": 35.703829,
+ "longitude": 139.708625,
+ "polygon": [
+ [
+ 139.70851510989013,
+ 35.70391909009009
+ ],
+ [
+ 139.7087348901099,
+ 35.70391909009009
+ ],
+ [
+ 139.7087348901099,
+ 35.70373890990991
+ ],
+ [
+ 139.70851510989013,
+ 35.70373890990991
+ ],
+ [
+ 139.70851510989013,
+ 35.70391909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuCosmicCenter.709.2",
+ "name": "新宿コズミックセンター前",
+ "latitude": 35.703964,
+ "longitude": 139.708449,
+ "polygon": [
+ [
+ 139.70833910989012,
+ 35.70405409009009
+ ],
+ [
+ 139.70855889010988,
+ 35.70405409009009
+ ],
+ [
+ 139.70855889010988,
+ 35.70387390990991
+ ],
+ [
+ 139.70833910989012,
+ 35.70387390990991
+ ],
+ [
+ 139.70833910989012,
+ 35.70405409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuYonchome.714.8",
+ "name": "新宿四丁目",
+ "latitude": 35.689233,
+ "longitude": 139.703648,
+ "polygon": [
+ [
+ 139.7035381098901,
+ 35.68932309009009
+ ],
+ [
+ 139.70375789010987,
+ 35.68932309009009
+ ],
+ [
+ 139.70375789010987,
+ 35.68914290990991
+ ],
+ [
+ 139.7035381098901,
+ 35.68914290990991
+ ],
+ [
+ 139.7035381098901,
+ 35.68932309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuItchome.711.3",
+ "name": "新宿一丁目(しんじゅくいっちょうめ)",
+ "latitude": 35.687947,
+ "longitude": 139.713199,
+ "polygon": [
+ [
+ 139.71308910989012,
+ 35.68803709009009
+ ],
+ [
+ 139.7133088901099,
+ 35.68803709009009
+ ],
+ [
+ 139.7133088901099,
+ 35.68785690990991
+ ],
+ [
+ 139.71308910989012,
+ 35.68785690990991
+ ],
+ [
+ 139.71308910989012,
+ 35.68803709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinsunaItchome.717.2",
+ "name": "新砂一丁目",
+ "latitude": 35.657494,
+ "longitude": 139.823191,
+ "polygon": [
+ [
+ 139.82308110989013,
+ 35.65758409009009
+ ],
+ [
+ 139.8233008901099,
+ 35.65758409009009
+ ],
+ [
+ 139.8233008901099,
+ 35.65740390990991
+ ],
+ [
+ 139.82308110989013,
+ 35.65740390990991
+ ],
+ [
+ 139.82308110989013,
+ 35.65758409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuItchome.711.4",
+ "name": "新宿一丁目(しんじゅくいっちょうめ)",
+ "latitude": 35.688066,
+ "longitude": 139.71335,
+ "polygon": [
+ [
+ 139.7132401098901,
+ 35.68815609009009
+ ],
+ [
+ 139.71345989010987,
+ 35.68815609009009
+ ],
+ [
+ 139.71345989010987,
+ 35.68797590990991
+ ],
+ [
+ 139.7132401098901,
+ 35.68797590990991
+ ],
+ [
+ 139.7132401098901,
+ 35.68815609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuNichome.712.1",
+ "name": "新宿二丁目",
+ "latitude": 35.688547,
+ "longitude": 139.71033,
+ "polygon": [
+ [
+ 139.71022010989012,
+ 35.68863709009009
+ ],
+ [
+ 139.71043989010988,
+ 35.68863709009009
+ ],
+ [
+ 139.71043989010988,
+ 35.68845690990991
+ ],
+ [
+ 139.71022010989012,
+ 35.68845690990991
+ ],
+ [
+ 139.71022010989012,
+ 35.68863709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuYonchome.714.9",
+ "name": "新宿四丁目",
+ "latitude": 35.689109,
+ "longitude": 139.703811,
+ "polygon": [
+ [
+ 139.70370110989012,
+ 35.68919909009009
+ ],
+ [
+ 139.70392089010988,
+ 35.68919909009009
+ ],
+ [
+ 139.70392089010988,
+ 35.68901890990991
+ ],
+ [
+ 139.70370110989012,
+ 35.68901890990991
+ ],
+ [
+ 139.70370110989012,
+ 35.68919909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuNichome.712.2",
+ "name": "新宿二丁目",
+ "latitude": 35.688705,
+ "longitude": 139.710466,
+ "polygon": [
+ [
+ 139.7103561098901,
+ 35.68879509009009
+ ],
+ [
+ 139.71057589010988,
+ 35.68879509009009
+ ],
+ [
+ 139.71057589010988,
+ 35.68861490990991
+ ],
+ [
+ 139.7103561098901,
+ 35.68861490990991
+ ],
+ [
+ 139.7103561098901,
+ 35.68879509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuSanchome.713.3",
+ "name": "新宿三丁目",
+ "latitude": 35.690625,
+ "longitude": 139.706821,
+ "polygon": [
+ [
+ 139.7067111098901,
+ 35.69071509009009
+ ],
+ [
+ 139.70693089010987,
+ 35.69071509009009
+ ],
+ [
+ 139.70693089010987,
+ 35.69053490990991
+ ],
+ [
+ 139.7067111098901,
+ 35.69053490990991
+ ],
+ [
+ 139.7067111098901,
+ 35.69071509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinsunaItchome.717.3",
+ "name": "新砂一丁目",
+ "latitude": 35.658597,
+ "longitude": 139.823848,
+ "polygon": [
+ [
+ 139.82373810989012,
+ 35.65868709009009
+ ],
+ [
+ 139.82395789010988,
+ 35.65868709009009
+ ],
+ [
+ 139.82395789010988,
+ 35.65850690990991
+ ],
+ [
+ 139.82373810989012,
+ 35.65850690990991
+ ],
+ [
+ 139.82373810989012,
+ 35.65868709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuSanchome.713.10",
+ "name": "新宿三丁目",
+ "latitude": 35.690252,
+ "longitude": 139.706391,
+ "polygon": [
+ [
+ 139.7062811098901,
+ 35.69034209009009
+ ],
+ [
+ 139.70650089010988,
+ 35.69034209009009
+ ],
+ [
+ 139.70650089010988,
+ 35.69016190990991
+ ],
+ [
+ 139.7062811098901,
+ 35.69016190990991
+ ],
+ [
+ 139.7062811098901,
+ 35.69034209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuSanchome.713.11",
+ "name": "新宿三丁目",
+ "latitude": 35.690308,
+ "longitude": 139.705868,
+ "polygon": [
+ [
+ 139.70575810989013,
+ 35.69039809009009
+ ],
+ [
+ 139.7059778901099,
+ 35.69039809009009
+ ],
+ [
+ 139.7059778901099,
+ 35.69021790990991
+ ],
+ [
+ 139.70575810989013,
+ 35.69021790990991
+ ],
+ [
+ 139.70575810989013,
+ 35.69039809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuGochome.715.1",
+ "name": "新宿五丁目",
+ "latitude": 35.692821,
+ "longitude": 139.70492,
+ "polygon": [
+ [
+ 139.7048101098901,
+ 35.69291109009009
+ ],
+ [
+ 139.70502989010987,
+ 35.69291109009009
+ ],
+ [
+ 139.70502989010987,
+ 35.69273090990991
+ ],
+ [
+ 139.7048101098901,
+ 35.69273090990991
+ ],
+ [
+ 139.7048101098901,
+ 35.69291109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuGochome.715.2",
+ "name": "新宿五丁目",
+ "latitude": 35.69274,
+ "longitude": 139.704155,
+ "polygon": [
+ [
+ 139.7040451098901,
+ 35.69283009009009
+ ],
+ [
+ 139.70426489010987,
+ 35.69283009009009
+ ],
+ [
+ 139.70426489010987,
+ 35.69264990990991
+ ],
+ [
+ 139.7040451098901,
+ 35.69264990990991
+ ],
+ [
+ 139.7040451098901,
+ 35.69283009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinsunaNichome.718.1",
+ "name": "新砂二丁目",
+ "latitude": 35.665618,
+ "longitude": 139.824916,
+ "polygon": [
+ [
+ 139.82480610989012,
+ 35.66570809009009
+ ],
+ [
+ 139.82502589010988,
+ 35.66570809009009
+ ],
+ [
+ 139.82502589010988,
+ 35.66552790990991
+ ],
+ [
+ 139.82480610989012,
+ 35.66552790990991
+ ],
+ [
+ 139.82480610989012,
+ 35.66570809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinsunaNichome.718.2",
+ "name": "新砂二丁目",
+ "latitude": 35.66534,
+ "longitude": 139.824875,
+ "polygon": [
+ [
+ 139.8247651098901,
+ 35.66543009009009
+ ],
+ [
+ 139.82498489010987,
+ 35.66543009009009
+ ],
+ [
+ 139.82498489010987,
+ 35.66524990990991
+ ],
+ [
+ 139.8247651098901,
+ 35.66524990990991
+ ],
+ [
+ 139.8247651098901,
+ 35.66543009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinDaitaStation.719.3",
+ "name": "新代田駅前",
+ "latitude": 35.663565,
+ "longitude": 139.660571,
+ "polygon": [
+ [
+ 139.66046110989012,
+ 35.66365509009009
+ ],
+ [
+ 139.6606808901099,
+ 35.66365509009009
+ ],
+ [
+ 139.6606808901099,
+ 35.66347490990991
+ ],
+ [
+ 139.66046110989012,
+ 35.66347490990991
+ ],
+ [
+ 139.66046110989012,
+ 35.66365509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinDaitaStation.719.4",
+ "name": "新代田駅前",
+ "latitude": 35.663729,
+ "longitude": 139.660389,
+ "polygon": [
+ [
+ 139.66027910989013,
+ 35.66381909009009
+ ],
+ [
+ 139.6604988901099,
+ 35.66381909009009
+ ],
+ [
+ 139.6604988901099,
+ 35.663638909909906
+ ],
+ [
+ 139.66027910989013,
+ 35.663638909909906
+ ],
+ [
+ 139.66027910989013,
+ 35.66381909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NisshinShokuhin.722.2",
+ "name": "日清食品前",
+ "latitude": 35.695465,
+ "longitude": 139.707145,
+ "polygon": [
+ [
+ 139.7070351098901,
+ 35.69555509009009
+ ],
+ [
+ 139.70725489010988,
+ 35.69555509009009
+ ],
+ [
+ 139.70725489010988,
+ 35.69537490990991
+ ],
+ [
+ 139.7070351098901,
+ 35.69537490990991
+ ],
+ [
+ 139.7070351098901,
+ 35.69555509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukishimaStation.720.1",
+ "name": "月島駅前",
+ "latitude": 35.665343,
+ "longitude": 139.785872,
+ "polygon": [
+ [
+ 139.78576210989013,
+ 35.66543309009009
+ ],
+ [
+ 139.7859818901099,
+ 35.66543309009009
+ ],
+ [
+ 139.7859818901099,
+ 35.66525290990991
+ ],
+ [
+ 139.78576210989013,
+ 35.66525290990991
+ ],
+ [
+ 139.78576210989013,
+ 35.66543309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukishimaStation.720.2",
+ "name": "月島駅前",
+ "latitude": 35.665177,
+ "longitude": 139.786043,
+ "polygon": [
+ [
+ 139.78593310989012,
+ 35.66526709009009
+ ],
+ [
+ 139.7861528901099,
+ 35.66526709009009
+ ],
+ [
+ 139.7861528901099,
+ 35.66508690990991
+ ],
+ [
+ 139.78593310989012,
+ 35.66508690990991
+ ],
+ [
+ 139.78593310989012,
+ 35.66526709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinden.721.1",
+ "name": "新田",
+ "latitude": 35.655878,
+ "longitude": 139.868505,
+ "polygon": [
+ [
+ 139.86839510989012,
+ 35.65596809009009
+ ],
+ [
+ 139.86861489010988,
+ 35.65596809009009
+ ],
+ [
+ 139.86861489010988,
+ 35.65578790990991
+ ],
+ [
+ 139.86839510989012,
+ 35.65578790990991
+ ],
+ [
+ 139.86839510989012,
+ 35.65596809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinden.721.2",
+ "name": "新田",
+ "latitude": 35.655806,
+ "longitude": 139.86865,
+ "polygon": [
+ [
+ 139.86854010989012,
+ 35.65589609009009
+ ],
+ [
+ 139.86875989010989,
+ 35.65589609009009
+ ],
+ [
+ 139.86875989010989,
+ 35.65571590990991
+ ],
+ [
+ 139.86854010989012,
+ 35.65571590990991
+ ],
+ [
+ 139.86854010989012,
+ 35.65589609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NisshinShokuhin.722.1",
+ "name": "日清食品前",
+ "latitude": 35.69566,
+ "longitude": 139.706831,
+ "polygon": [
+ [
+ 139.7067211098901,
+ 35.69575009009009
+ ],
+ [
+ 139.70694089010988,
+ 35.69575009009009
+ ],
+ [
+ 139.70694089010988,
+ 35.695569909909906
+ ],
+ [
+ 139.7067211098901,
+ 35.695569909909906
+ ],
+ [
+ 139.7067211098901,
+ 35.69575009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JingumaeRokuchome.760.1",
+ "name": "神宮前六丁目",
+ "latitude": 35.665745,
+ "longitude": 139.703473,
+ "polygon": [
+ [
+ 139.70336310989012,
+ 35.66583509009009
+ ],
+ [
+ 139.70358289010989,
+ 35.66583509009009
+ ],
+ [
+ 139.70358289010989,
+ 35.66565490990991
+ ],
+ [
+ 139.70336310989012,
+ 35.66565490990991
+ ],
+ [
+ 139.70336310989012,
+ 35.66583509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KanNanaShinden.723.1",
+ "name": "環七新田",
+ "latitude": 35.774077,
+ "longitude": 139.740343,
+ "polygon": [
+ [
+ 139.7402331098901,
+ 35.77416709009009
+ ],
+ [
+ 139.74045289010988,
+ 35.77416709009009
+ ],
+ [
+ 139.74045289010988,
+ 35.77398690990991
+ ],
+ [
+ 139.7402331098901,
+ 35.77398690990991
+ ],
+ [
+ 139.7402331098901,
+ 35.77416709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KanNanaShinden.723.2",
+ "name": "環七新田",
+ "latitude": 35.774238,
+ "longitude": 139.739902,
+ "polygon": [
+ [
+ 139.73979210989012,
+ 35.77432809009009
+ ],
+ [
+ 139.74001189010988,
+ 35.77432809009009
+ ],
+ [
+ 139.74001189010988,
+ 35.77414790990991
+ ],
+ [
+ 139.73979210989012,
+ 35.77414790990991
+ ],
+ [
+ 139.73979210989012,
+ 35.77432809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KanNanaShinden.723.3",
+ "name": "環七新田",
+ "latitude": 35.772891,
+ "longitude": 139.739141,
+ "polygon": [
+ [
+ 139.7390311098901,
+ 35.77298109009009
+ ],
+ [
+ 139.73925089010987,
+ 35.77298109009009
+ ],
+ [
+ 139.73925089010987,
+ 35.77280090990991
+ ],
+ [
+ 139.7390311098901,
+ 35.77280090990991
+ ],
+ [
+ 139.7390311098901,
+ 35.77298109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KanNanaShinden.723.4",
+ "name": "環七新田",
+ "latitude": 35.773052,
+ "longitude": 139.73971,
+ "polygon": [
+ [
+ 139.73960010989012,
+ 35.77314209009009
+ ],
+ [
+ 139.73981989010989,
+ 35.77314209009009
+ ],
+ [
+ 139.73981989010989,
+ 35.77296190990991
+ ],
+ [
+ 139.73960010989012,
+ 35.77296190990991
+ ],
+ [
+ 139.73960010989012,
+ 35.77314209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenJutaku.724.1",
+ "name": "新田住宅",
+ "latitude": 35.657273,
+ "longitude": 139.861049,
+ "polygon": [
+ [
+ 139.86093910989013,
+ 35.657363090090094
+ ],
+ [
+ 139.8611588901099,
+ 35.657363090090094
+ ],
+ [
+ 139.8611588901099,
+ 35.65718290990991
+ ],
+ [
+ 139.86093910989013,
+ 35.65718290990991
+ ],
+ [
+ 139.86093910989013,
+ 35.657363090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenJutaku.724.2",
+ "name": "新田住宅",
+ "latitude": 35.657362,
+ "longitude": 139.861185,
+ "polygon": [
+ [
+ 139.86107510989012,
+ 35.65745209009009
+ ],
+ [
+ 139.8612948901099,
+ 35.65745209009009
+ ],
+ [
+ 139.8612948901099,
+ 35.65727190990991
+ ],
+ [
+ 139.86107510989012,
+ 35.65727190990991
+ ],
+ [
+ 139.86107510989012,
+ 35.65745209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenDoteDori.725.1",
+ "name": "新田土手通り",
+ "latitude": 35.768797,
+ "longitude": 139.753603,
+ "polygon": [
+ [
+ 139.75349310989012,
+ 35.76888709009009
+ ],
+ [
+ 139.75371289010988,
+ 35.76888709009009
+ ],
+ [
+ 139.75371289010988,
+ 35.76870690990991
+ ],
+ [
+ 139.75349310989012,
+ 35.76870690990991
+ ],
+ [
+ 139.75349310989012,
+ 35.76888709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenDoteDori.725.2",
+ "name": "新田土手通り",
+ "latitude": 35.769044,
+ "longitude": 139.753166,
+ "polygon": [
+ [
+ 139.7530561098901,
+ 35.76913409009009
+ ],
+ [
+ 139.75327589010988,
+ 35.76913409009009
+ ],
+ [
+ 139.75327589010988,
+ 35.76895390990991
+ ],
+ [
+ 139.7530561098901,
+ 35.76895390990991
+ ],
+ [
+ 139.7530561098901,
+ 35.76913409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumiyoshiItchome.789.5",
+ "name": "住吉一丁目",
+ "latitude": 35.689279,
+ "longitude": 139.810621,
+ "polygon": [
+ [
+ 139.81051110989011,
+ 35.68936909009009
+ ],
+ [
+ 139.81073089010988,
+ 35.68936909009009
+ ],
+ [
+ 139.81073089010988,
+ 35.68918890990991
+ ],
+ [
+ 139.81051110989011,
+ 35.68918890990991
+ ],
+ [
+ 139.81051110989011,
+ 35.68936909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shindembashi.726.1",
+ "name": "新田橋",
+ "latitude": 35.766025,
+ "longitude": 139.741773,
+ "polygon": [
+ [
+ 139.7416631098901,
+ 35.76611509009009
+ ],
+ [
+ 139.74188289010988,
+ 35.76611509009009
+ ],
+ [
+ 139.74188289010988,
+ 35.76593490990991
+ ],
+ [
+ 139.7416631098901,
+ 35.76593490990991
+ ],
+ [
+ 139.7416631098901,
+ 35.76611509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shindembashi.726.2",
+ "name": "新田橋",
+ "latitude": 35.766797,
+ "longitude": 139.74216,
+ "polygon": [
+ [
+ 139.74205010989013,
+ 35.76688709009009
+ ],
+ [
+ 139.7422698901099,
+ 35.76688709009009
+ ],
+ [
+ 139.7422698901099,
+ 35.76670690990991
+ ],
+ [
+ 139.74205010989013,
+ 35.76670690990991
+ ],
+ [
+ 139.74205010989013,
+ 35.76688709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenItchome.727.1",
+ "name": "新田一丁目",
+ "latitude": 35.775349,
+ "longitude": 139.738402,
+ "polygon": [
+ [
+ 139.73829210989012,
+ 35.77543909009009
+ ],
+ [
+ 139.7385118901099,
+ 35.77543909009009
+ ],
+ [
+ 139.7385118901099,
+ 35.77525890990991
+ ],
+ [
+ 139.73829210989012,
+ 35.77525890990991
+ ],
+ [
+ 139.73829210989012,
+ 35.77543909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenItchome.727.2",
+ "name": "新田一丁目",
+ "latitude": 35.775399,
+ "longitude": 139.738208,
+ "polygon": [
+ [
+ 139.7380981098901,
+ 35.77548909009009
+ ],
+ [
+ 139.73831789010987,
+ 35.77548909009009
+ ],
+ [
+ 139.73831789010987,
+ 35.77530890990991
+ ],
+ [
+ 139.7380981098901,
+ 35.77530890990991
+ ],
+ [
+ 139.7380981098901,
+ 35.77548909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shindo.733.1",
+ "name": "新道",
+ "latitude": 35.761648,
+ "longitude": 139.368495,
+ "polygon": [
+ [
+ 139.3683851098901,
+ 35.76173809009009
+ ],
+ [
+ 139.36860489010988,
+ 35.76173809009009
+ ],
+ [
+ 139.36860489010988,
+ 35.76155790990991
+ ],
+ [
+ 139.3683851098901,
+ 35.76155790990991
+ ],
+ [
+ 139.3683851098901,
+ 35.76173809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenNichome.728.1",
+ "name": "新田二丁目",
+ "latitude": 35.772584,
+ "longitude": 139.742306,
+ "polygon": [
+ [
+ 139.74219610989013,
+ 35.77267409009009
+ ],
+ [
+ 139.7424158901099,
+ 35.77267409009009
+ ],
+ [
+ 139.7424158901099,
+ 35.77249390990991
+ ],
+ [
+ 139.74219610989013,
+ 35.77249390990991
+ ],
+ [
+ 139.74219610989013,
+ 35.77267409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiStation.737.3",
+ "name": "新橋駅前",
+ "latitude": 35.667094,
+ "longitude": 139.758467,
+ "polygon": [
+ [
+ 139.7583571098901,
+ 35.66718409009009
+ ],
+ [
+ 139.75857689010988,
+ 35.66718409009009
+ ],
+ [
+ 139.75857689010988,
+ 35.66700390990991
+ ],
+ [
+ 139.7583571098901,
+ 35.66700390990991
+ ],
+ [
+ 139.7583571098901,
+ 35.66718409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenNichome.728.2",
+ "name": "新田二丁目",
+ "latitude": 35.772707,
+ "longitude": 139.742,
+ "polygon": [
+ [
+ 139.7418901098901,
+ 35.77279709009009
+ ],
+ [
+ 139.74210989010987,
+ 35.77279709009009
+ ],
+ [
+ 139.74210989010987,
+ 35.77261690990991
+ ],
+ [
+ 139.7418901098901,
+ 35.77261690990991
+ ],
+ [
+ 139.7418901098901,
+ 35.77279709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenSanchome.729.1",
+ "name": "新田三丁目",
+ "latitude": 35.770238,
+ "longitude": 139.74361,
+ "polygon": [
+ [
+ 139.7435001098901,
+ 35.77032809009009
+ ],
+ [
+ 139.74371989010987,
+ 35.77032809009009
+ ],
+ [
+ 139.74371989010987,
+ 35.77014790990991
+ ],
+ [
+ 139.7435001098901,
+ 35.77014790990991
+ ],
+ [
+ 139.7435001098901,
+ 35.77032809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenSanchome.729.2",
+ "name": "新田三丁目",
+ "latitude": 35.770366,
+ "longitude": 139.74356,
+ "polygon": [
+ [
+ 139.74345010989012,
+ 35.77045609009009
+ ],
+ [
+ 139.74366989010989,
+ 35.77045609009009
+ ],
+ [
+ 139.74366989010989,
+ 35.77027590990991
+ ],
+ [
+ 139.74345010989012,
+ 35.77027590990991
+ ],
+ [
+ 139.74345010989012,
+ 35.77045609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaItchome.866.4",
+ "name": "高輪一丁目",
+ "latitude": 35.64131,
+ "longitude": 139.737683,
+ "polygon": [
+ [
+ 139.73757310989012,
+ 35.64140009009009
+ ],
+ [
+ 139.7377928901099,
+ 35.64140009009009
+ ],
+ [
+ 139.7377928901099,
+ 35.64121990990991
+ ],
+ [
+ 139.73757310989012,
+ 35.64121990990991
+ ],
+ [
+ 139.73757310989012,
+ 35.64140009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shintokaibashi.730.6",
+ "name": "新東海橋",
+ "latitude": 35.621538,
+ "longitude": 139.749204,
+ "polygon": [
+ [
+ 139.7490941098901,
+ 35.62162809009009
+ ],
+ [
+ 139.74931389010987,
+ 35.62162809009009
+ ],
+ [
+ 139.74931389010987,
+ 35.62144790990991
+ ],
+ [
+ 139.7490941098901,
+ 35.62144790990991
+ ],
+ [
+ 139.7490941098901,
+ 35.62162809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shintokaibashi.730.7",
+ "name": "新東海橋",
+ "latitude": 35.621349,
+ "longitude": 139.749399,
+ "polygon": [
+ [
+ 139.74928910989013,
+ 35.62143909009009
+ ],
+ [
+ 139.7495088901099,
+ 35.62143909009009
+ ],
+ [
+ 139.7495088901099,
+ 35.62125890990991
+ ],
+ [
+ 139.74928910989013,
+ 35.62125890990991
+ ],
+ [
+ 139.74928910989013,
+ 35.62143909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shintomicho.732.1",
+ "name": "新富町",
+ "latitude": 35.671744,
+ "longitude": 139.773504,
+ "polygon": [
+ [
+ 139.77339410989012,
+ 35.67183409009009
+ ],
+ [
+ 139.77361389010989,
+ 35.67183409009009
+ ],
+ [
+ 139.77361389010989,
+ 35.67165390990991
+ ],
+ [
+ 139.77339410989012,
+ 35.67165390990991
+ ],
+ [
+ 139.77339410989012,
+ 35.67183409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shintomicho.732.2",
+ "name": "新富町",
+ "latitude": 35.672119,
+ "longitude": 139.773843,
+ "polygon": [
+ [
+ 139.77373310989012,
+ 35.67220909009009
+ ],
+ [
+ 139.77395289010988,
+ 35.67220909009009
+ ],
+ [
+ 139.77395289010988,
+ 35.67202890990991
+ ],
+ [
+ 139.77373310989012,
+ 35.67202890990991
+ ],
+ [
+ 139.77373310989012,
+ 35.67220909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeimeiFukushiKyokai.796.2",
+ "name": "聖明福祉協会前",
+ "latitude": 35.805121,
+ "longitude": 139.265135,
+ "polygon": [
+ [
+ 139.2650251098901,
+ 35.80521109009009
+ ],
+ [
+ 139.26524489010987,
+ 35.80521109009009
+ ],
+ [
+ 139.26524489010987,
+ 35.80503090990991
+ ],
+ [
+ 139.2650251098901,
+ 35.80503090990991
+ ],
+ [
+ 139.2650251098901,
+ 35.80521109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shindo.733.2",
+ "name": "新道",
+ "latitude": 35.761554,
+ "longitude": 139.36841,
+ "polygon": [
+ [
+ 139.36830010989013,
+ 35.76164409009009
+ ],
+ [
+ 139.3685198901099,
+ 35.76164409009009
+ ],
+ [
+ 139.3685198901099,
+ 35.76146390990991
+ ],
+ [
+ 139.36830010989013,
+ 35.76146390990991
+ ],
+ [
+ 139.36830010989013,
+ 35.76164409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinNakanoStation.734.1",
+ "name": "新中野駅前",
+ "latitude": 35.697539,
+ "longitude": 139.668455,
+ "polygon": [
+ [
+ 139.6683451098901,
+ 35.69762909009009
+ ],
+ [
+ 139.66856489010988,
+ 35.69762909009009
+ ],
+ [
+ 139.66856489010988,
+ 35.69744890990991
+ ],
+ [
+ 139.6683451098901,
+ 35.69744890990991
+ ],
+ [
+ 139.6683451098901,
+ 35.69762909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinNakanoStation.734.2",
+ "name": "新中野駅前",
+ "latitude": 35.697367,
+ "longitude": 139.669335,
+ "polygon": [
+ [
+ 139.6692251098901,
+ 35.69745709009009
+ ],
+ [
+ 139.66944489010987,
+ 35.69745709009009
+ ],
+ [
+ 139.66944489010987,
+ 35.69727690990991
+ ],
+ [
+ 139.6692251098901,
+ 35.69727690990991
+ ],
+ [
+ 139.6692251098901,
+ 35.69745709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinhamakawabashi.735.1",
+ "name": "新浜川橋",
+ "latitude": 35.596679,
+ "longitude": 139.742154,
+ "polygon": [
+ [
+ 139.74204410989012,
+ 35.59676909009009
+ ],
+ [
+ 139.74226389010988,
+ 35.59676909009009
+ ],
+ [
+ 139.74226389010988,
+ 35.59658890990991
+ ],
+ [
+ 139.74204410989012,
+ 35.59658890990991
+ ],
+ [
+ 139.74204410989012,
+ 35.59676909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinhamakawabashi.735.2",
+ "name": "新浜川橋",
+ "latitude": 35.596793,
+ "longitude": 139.742523,
+ "polygon": [
+ [
+ 139.74241310989012,
+ 35.59688309009009
+ ],
+ [
+ 139.7426328901099,
+ 35.59688309009009
+ ],
+ [
+ 139.7426328901099,
+ 35.59670290990991
+ ],
+ [
+ 139.74241310989012,
+ 35.59670290990991
+ ],
+ [
+ 139.74241310989012,
+ 35.59688309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Senzoku.822.1",
+ "name": "千束",
+ "latitude": 35.720329,
+ "longitude": 139.791598,
+ "polygon": [
+ [
+ 139.7914881098901,
+ 35.72041909009009
+ ],
+ [
+ 139.79170789010988,
+ 35.72041909009009
+ ],
+ [
+ 139.79170789010988,
+ 35.72023890990991
+ ],
+ [
+ 139.7914881098901,
+ 35.72023890990991
+ ],
+ [
+ 139.7914881098901,
+ 35.72041909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinWatashi.747.2",
+ "name": "新渡し",
+ "latitude": 35.755482,
+ "longitude": 139.78367,
+ "polygon": [
+ [
+ 139.78356010989012,
+ 35.75557209009009
+ ],
+ [
+ 139.78377989010988,
+ 35.75557209009009
+ ],
+ [
+ 139.78377989010988,
+ 35.75539190990991
+ ],
+ [
+ 139.78356010989012,
+ 35.75539190990991
+ ],
+ [
+ 139.78356010989012,
+ 35.75557209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimbashi.736.1",
+ "name": "新橋",
+ "latitude": 35.666933,
+ "longitude": 139.758461,
+ "polygon": [
+ [
+ 139.75835110989013,
+ 35.66702309009009
+ ],
+ [
+ 139.7585708901099,
+ 35.66702309009009
+ ],
+ [
+ 139.7585708901099,
+ 35.66684290990991
+ ],
+ [
+ 139.75835110989013,
+ 35.66684290990991
+ ],
+ [
+ 139.75835110989013,
+ 35.66702309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimbashi.736.3",
+ "name": "新橋",
+ "latitude": 35.667301,
+ "longitude": 139.759074,
+ "polygon": [
+ [
+ 139.75896410989012,
+ 35.66739109009009
+ ],
+ [
+ 139.75918389010988,
+ 35.66739109009009
+ ],
+ [
+ 139.75918389010988,
+ 35.66721090990991
+ ],
+ [
+ 139.75896410989012,
+ 35.66721090990991
+ ],
+ [
+ 139.75896410989012,
+ 35.66739109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shimbashi.736.6",
+ "name": "新橋",
+ "latitude": 35.667523,
+ "longitude": 139.759481,
+ "polygon": [
+ [
+ 139.7593711098901,
+ 35.66761309009009
+ ],
+ [
+ 139.75959089010988,
+ 35.66761309009009
+ ],
+ [
+ 139.75959089010988,
+ 35.66743290990991
+ ],
+ [
+ 139.7593711098901,
+ 35.66743290990991
+ ],
+ [
+ 139.7593711098901,
+ 35.66761309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiStation.737.1",
+ "name": "新橋駅前",
+ "latitude": 35.666884,
+ "longitude": 139.758506,
+ "polygon": [
+ [
+ 139.75839610989013,
+ 35.66697409009009
+ ],
+ [
+ 139.7586158901099,
+ 35.66697409009009
+ ],
+ [
+ 139.7586158901099,
+ 35.66679390990991
+ ],
+ [
+ 139.75839610989013,
+ 35.66679390990991
+ ],
+ [
+ 139.75839610989013,
+ 35.66697409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiStation.737.2",
+ "name": "新橋駅前",
+ "latitude": 35.666422,
+ "longitude": 139.759255,
+ "polygon": [
+ [
+ 139.7591451098901,
+ 35.66651209009009
+ ],
+ [
+ 139.75936489010988,
+ 35.66651209009009
+ ],
+ [
+ 139.75936489010988,
+ 35.66633190990991
+ ],
+ [
+ 139.7591451098901,
+ 35.66633190990991
+ ],
+ [
+ 139.7591451098901,
+ 35.66651209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sendaizaka.825.3",
+ "name": "仙台坂",
+ "latitude": 35.607098,
+ "longitude": 139.739541,
+ "polygon": [
+ [
+ 139.73943110989012,
+ 35.60718809009009
+ ],
+ [
+ 139.73965089010989,
+ 35.60718809009009
+ ],
+ [
+ 139.73965089010989,
+ 35.60700790990991
+ ],
+ [
+ 139.73943110989012,
+ 35.60700790990991
+ ],
+ [
+ 139.73943110989012,
+ 35.60718809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiStation.737.4",
+ "name": "新橋駅前",
+ "latitude": 35.666223,
+ "longitude": 139.759293,
+ "polygon": [
+ [
+ 139.75918310989013,
+ 35.66631309009009
+ ],
+ [
+ 139.7594028901099,
+ 35.66631309009009
+ ],
+ [
+ 139.7594028901099,
+ 35.66613290990991
+ ],
+ [
+ 139.75918310989013,
+ 35.66613290990991
+ ],
+ [
+ 139.75918310989013,
+ 35.66631309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiStation.737.5",
+ "name": "新橋駅前",
+ "latitude": 35.665937,
+ "longitude": 139.759243,
+ "polygon": [
+ [
+ 139.75913310989012,
+ 35.66602709009009
+ ],
+ [
+ 139.75935289010988,
+ 35.66602709009009
+ ],
+ [
+ 139.75935289010988,
+ 35.66584690990991
+ ],
+ [
+ 139.75913310989012,
+ 35.66584690990991
+ ],
+ [
+ 139.75913310989012,
+ 35.66602709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiStation.737.6",
+ "name": "新橋駅前",
+ "latitude": 35.666022,
+ "longitude": 139.759621,
+ "polygon": [
+ [
+ 139.75951110989013,
+ 35.66611209009009
+ ],
+ [
+ 139.7597308901099,
+ 35.66611209009009
+ ],
+ [
+ 139.7597308901099,
+ 35.66593190990991
+ ],
+ [
+ 139.75951110989013,
+ 35.66593190990991
+ ],
+ [
+ 139.75951110989013,
+ 35.66611209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiGochome.739.1",
+ "name": "新橋五丁目",
+ "latitude": 35.662854,
+ "longitude": 139.757063,
+ "polygon": [
+ [
+ 139.7569531098901,
+ 35.66294409009009
+ ],
+ [
+ 139.75717289010987,
+ 35.66294409009009
+ ],
+ [
+ 139.75717289010987,
+ 35.66276390990991
+ ],
+ [
+ 139.7569531098901,
+ 35.66276390990991
+ ],
+ [
+ 139.7569531098901,
+ 35.66294409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimmeiNichome.744.2",
+ "name": "神明二丁目",
+ "latitude": 35.754862,
+ "longitude": 139.399775,
+ "polygon": [
+ [
+ 139.39966510989012,
+ 35.75495209009009
+ ],
+ [
+ 139.3998848901099,
+ 35.75495209009009
+ ],
+ [
+ 139.3998848901099,
+ 35.75477190990991
+ ],
+ [
+ 139.39966510989012,
+ 35.75477190990991
+ ],
+ [
+ 139.39966510989012,
+ 35.75495209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JissenjoshiGakuen.749.1",
+ "name": "実践女子学園前",
+ "latitude": 35.65665,
+ "longitude": 139.710771,
+ "polygon": [
+ [
+ 139.7106611098901,
+ 35.65674009009009
+ ],
+ [
+ 139.71088089010988,
+ 35.65674009009009
+ ],
+ [
+ 139.71088089010988,
+ 35.65655990990991
+ ],
+ [
+ 139.7106611098901,
+ 35.65655990990991
+ ],
+ [
+ 139.7106611098901,
+ 35.65674009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiGochome.739.2",
+ "name": "新橋五丁目",
+ "latitude": 35.661919,
+ "longitude": 139.756715,
+ "polygon": [
+ [
+ 139.75660510989013,
+ 35.66200909009009
+ ],
+ [
+ 139.7568248901099,
+ 35.66200909009009
+ ],
+ [
+ 139.7568248901099,
+ 35.66182890990991
+ ],
+ [
+ 139.75660510989013,
+ 35.66182890990991
+ ],
+ [
+ 139.75660510989013,
+ 35.66200909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiRokuchome.740.1",
+ "name": "新橋六丁目",
+ "latitude": 35.660284,
+ "longitude": 139.753931,
+ "polygon": [
+ [
+ 139.7538211098901,
+ 35.66037409009009
+ ],
+ [
+ 139.75404089010988,
+ 35.66037409009009
+ ],
+ [
+ 139.75404089010988,
+ 35.66019390990991
+ ],
+ [
+ 139.7538211098901,
+ 35.66019390990991
+ ],
+ [
+ 139.7538211098901,
+ 35.66037409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiRokuchome.740.2",
+ "name": "新橋六丁目",
+ "latitude": 35.660534,
+ "longitude": 139.753514,
+ "polygon": [
+ [
+ 139.7534041098901,
+ 35.66062409009009
+ ],
+ [
+ 139.75362389010988,
+ 35.66062409009009
+ ],
+ [
+ 139.75362389010988,
+ 35.66044390990991
+ ],
+ [
+ 139.7534041098901,
+ 35.66044390990991
+ ],
+ [
+ 139.7534041098901,
+ 35.66062409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiRokuchome.740.3",
+ "name": "新橋六丁目",
+ "latitude": 35.660724,
+ "longitude": 139.755279,
+ "polygon": [
+ [
+ 139.75516910989012,
+ 35.66081409009009
+ ],
+ [
+ 139.75538889010988,
+ 35.66081409009009
+ ],
+ [
+ 139.75538889010988,
+ 35.66063390990991
+ ],
+ [
+ 139.75516910989012,
+ 35.66063390990991
+ ],
+ [
+ 139.75516910989012,
+ 35.66081409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiRokuchome.740.4",
+ "name": "新橋六丁目",
+ "latitude": 35.660842,
+ "longitude": 139.755837,
+ "polygon": [
+ [
+ 139.75572710989013,
+ 35.66093209009009
+ ],
+ [
+ 139.7559468901099,
+ 35.66093209009009
+ ],
+ [
+ 139.7559468901099,
+ 35.66075190990991
+ ],
+ [
+ 139.75572710989013,
+ 35.66075190990991
+ ],
+ [
+ 139.75572710989013,
+ 35.66093209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JimbochoNichome.762.2",
+ "name": "神保町二丁目",
+ "latitude": 35.696741,
+ "longitude": 139.757659,
+ "polygon": [
+ [
+ 139.7575491098901,
+ 35.69683109009009
+ ],
+ [
+ 139.75776889010987,
+ 35.69683109009009
+ ],
+ [
+ 139.75776889010987,
+ 35.69665090990991
+ ],
+ [
+ 139.7575491098901,
+ 35.69665090990991
+ ],
+ [
+ 139.7575491098901,
+ 35.69683109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimmachiTenjinsha.741.1",
+ "name": "新町天神社前",
+ "latitude": 35.787775,
+ "longitude": 139.298598,
+ "polygon": [
+ [
+ 139.29848810989012,
+ 35.787865090090094
+ ],
+ [
+ 139.29870789010988,
+ 35.787865090090094
+ ],
+ [
+ 139.29870789010988,
+ 35.78768490990991
+ ],
+ [
+ 139.29848810989012,
+ 35.78768490990991
+ ],
+ [
+ 139.29848810989012,
+ 35.787865090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimmachiTenjinsha.741.2",
+ "name": "新町天神社前",
+ "latitude": 35.787577,
+ "longitude": 139.298598,
+ "polygon": [
+ [
+ 139.29848810989012,
+ 35.78766709009009
+ ],
+ [
+ 139.29870789010988,
+ 35.78766709009009
+ ],
+ [
+ 139.29870789010988,
+ 35.78748690990991
+ ],
+ [
+ 139.29848810989012,
+ 35.78748690990991
+ ],
+ [
+ 139.29848810989012,
+ 35.78766709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinMikawashimaStation.743.1",
+ "name": "新三河島駅前",
+ "latitude": 35.737632,
+ "longitude": 139.773498,
+ "polygon": [
+ [
+ 139.7733881098901,
+ 35.73772209009009
+ ],
+ [
+ 139.77360789010987,
+ 35.73772209009009
+ ],
+ [
+ 139.77360789010987,
+ 35.73754190990991
+ ],
+ [
+ 139.7733881098901,
+ 35.73754190990991
+ ],
+ [
+ 139.7733881098901,
+ 35.73772209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinMikawashimaStation.743.2",
+ "name": "新三河島駅前",
+ "latitude": 35.73734,
+ "longitude": 139.773976,
+ "polygon": [
+ [
+ 139.77386610989012,
+ 35.73743009009009
+ ],
+ [
+ 139.7740858901099,
+ 35.73743009009009
+ ],
+ [
+ 139.7740858901099,
+ 35.73724990990991
+ ],
+ [
+ 139.77386610989012,
+ 35.73724990990991
+ ],
+ [
+ 139.77386610989012,
+ 35.73743009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimmeiNichome.744.1",
+ "name": "神明二丁目",
+ "latitude": 35.755337,
+ "longitude": 139.400008,
+ "polygon": [
+ [
+ 139.39989810989013,
+ 35.75542709009009
+ ],
+ [
+ 139.4001178901099,
+ 35.75542709009009
+ ],
+ [
+ 139.4001178901099,
+ 35.75524690990991
+ ],
+ [
+ 139.39989810989013,
+ 35.75524690990991
+ ],
+ [
+ 139.39989810989013,
+ 35.75542709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OdaiNichome.745.1",
+ "name": "小台二丁目",
+ "latitude": 35.756399,
+ "longitude": 139.760848,
+ "polygon": [
+ [
+ 139.76073810989013,
+ 35.75648909009009
+ ],
+ [
+ 139.7609578901099,
+ 35.75648909009009
+ ],
+ [
+ 139.7609578901099,
+ 35.75630890990991
+ ],
+ [
+ 139.76073810989013,
+ 35.75630890990991
+ ],
+ [
+ 139.76073810989013,
+ 35.75648909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OdaiNichome.745.2",
+ "name": "小台二丁目",
+ "latitude": 35.756266,
+ "longitude": 139.760424,
+ "polygon": [
+ [
+ 139.76031410989012,
+ 35.75635609009009
+ ],
+ [
+ 139.76053389010988,
+ 35.75635609009009
+ ],
+ [
+ 139.76053389010988,
+ 35.756175909909906
+ ],
+ [
+ 139.76031410989012,
+ 35.756175909909906
+ ],
+ [
+ 139.76031410989012,
+ 35.75635609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinrinKoen.746.1",
+ "name": "森林公園前",
+ "latitude": 35.712594,
+ "longitude": 139.871269,
+ "polygon": [
+ [
+ 139.87115910989013,
+ 35.71268409009009
+ ],
+ [
+ 139.8713788901099,
+ 35.71268409009009
+ ],
+ [
+ 139.8713788901099,
+ 35.71250390990991
+ ],
+ [
+ 139.87115910989013,
+ 35.71250390990991
+ ],
+ [
+ 139.87115910989013,
+ 35.71268409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinrinKoen.746.2",
+ "name": "森林公園前",
+ "latitude": 35.712358,
+ "longitude": 139.870894,
+ "polygon": [
+ [
+ 139.8707841098901,
+ 35.71244809009009
+ ],
+ [
+ 139.87100389010988,
+ 35.71244809009009
+ ],
+ [
+ 139.87100389010988,
+ 35.71226790990991
+ ],
+ [
+ 139.8707841098901,
+ 35.71226790990991
+ ],
+ [
+ 139.8707841098901,
+ 35.71244809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinWatashi.747.1",
+ "name": "新渡し",
+ "latitude": 35.755402,
+ "longitude": 139.783716,
+ "polygon": [
+ [
+ 139.78360610989012,
+ 35.75549209009009
+ ],
+ [
+ 139.78382589010988,
+ 35.75549209009009
+ ],
+ [
+ 139.78382589010988,
+ 35.755311909909906
+ ],
+ [
+ 139.78360610989012,
+ 35.755311909909906
+ ],
+ [
+ 139.78360610989012,
+ 35.75549209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JujoNakaharaNichome.750.1",
+ "name": "十条仲原二丁目",
+ "latitude": 35.765458,
+ "longitude": 139.719998,
+ "polygon": [
+ [
+ 139.71988810989012,
+ 35.76554809009009
+ ],
+ [
+ 139.7201078901099,
+ 35.76554809009009
+ ],
+ [
+ 139.7201078901099,
+ 35.76536790990991
+ ],
+ [
+ 139.71988810989012,
+ 35.76536790990991
+ ],
+ [
+ 139.71988810989012,
+ 35.76554809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JujoNakaharaNichome.750.2",
+ "name": "十条仲原二丁目",
+ "latitude": 35.765863,
+ "longitude": 139.720323,
+ "polygon": [
+ [
+ 139.72021310989012,
+ 35.76595309009009
+ ],
+ [
+ 139.7204328901099,
+ 35.76595309009009
+ ],
+ [
+ 139.7204328901099,
+ 35.76577290990991
+ ],
+ [
+ 139.72021310989012,
+ 35.76577290990991
+ ],
+ [
+ 139.72021310989012,
+ 35.76595309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Jukkembashi.751.1",
+ "name": "十間橋",
+ "latitude": 35.708166,
+ "longitude": 139.817434,
+ "polygon": [
+ [
+ 139.8173241098901,
+ 35.70825609009009
+ ],
+ [
+ 139.81754389010987,
+ 35.70825609009009
+ ],
+ [
+ 139.81754389010987,
+ 35.70807590990991
+ ],
+ [
+ 139.8173241098901,
+ 35.70807590990991
+ ],
+ [
+ 139.8173241098901,
+ 35.70825609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Suijimmori.766.1",
+ "name": "水神森",
+ "latitude": 35.696602,
+ "longitude": 139.828669,
+ "polygon": [
+ [
+ 139.8285591098901,
+ 35.69669209009009
+ ],
+ [
+ 139.82877889010987,
+ 35.69669209009009
+ ],
+ [
+ 139.82877889010987,
+ 35.69651190990991
+ ],
+ [
+ 139.8285591098901,
+ 35.69651190990991
+ ],
+ [
+ 139.8285591098901,
+ 35.69669209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Jukkembashi.751.2",
+ "name": "十間橋",
+ "latitude": 35.708082,
+ "longitude": 139.817247,
+ "polygon": [
+ [
+ 139.81713710989013,
+ 35.70817209009009
+ ],
+ [
+ 139.8173568901099,
+ 35.70817209009009
+ ],
+ [
+ 139.8173568901099,
+ 35.70799190990991
+ ],
+ [
+ 139.81713710989013,
+ 35.70799190990991
+ ],
+ [
+ 139.81713710989013,
+ 35.70817209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Gonohashi.755.1",
+ "name": "五ノ橋",
+ "latitude": 35.692559,
+ "longitude": 139.825965,
+ "polygon": [
+ [
+ 139.8258551098901,
+ 35.69264909009009
+ ],
+ [
+ 139.82607489010988,
+ 35.69264909009009
+ ],
+ [
+ 139.82607489010988,
+ 35.69246890990991
+ ],
+ [
+ 139.8258551098901,
+ 35.69246890990991
+ ],
+ [
+ 139.8258551098901,
+ 35.69264909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JukkembashiDori.752.1",
+ "name": "十間橋通り",
+ "latitude": 35.71095,
+ "longitude": 139.820641,
+ "polygon": [
+ [
+ 139.8205311098901,
+ 35.71104009009009
+ ],
+ [
+ 139.82075089010988,
+ 35.71104009009009
+ ],
+ [
+ 139.82075089010988,
+ 35.71085990990991
+ ],
+ [
+ 139.8205311098901,
+ 35.71085990990991
+ ],
+ [
+ 139.8205311098901,
+ 35.71104009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JukkembashiDori.752.2",
+ "name": "十間橋通り",
+ "latitude": 35.711078,
+ "longitude": 139.820995,
+ "polygon": [
+ [
+ 139.82088510989013,
+ 35.71116809009009
+ ],
+ [
+ 139.8211048901099,
+ 35.71116809009009
+ ],
+ [
+ 139.8211048901099,
+ 35.71098790990991
+ ],
+ [
+ 139.82088510989013,
+ 35.71098790990991
+ ],
+ [
+ 139.82088510989013,
+ 35.71116809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JuntendoByoin.754.1",
+ "name": "順天堂病院前",
+ "latitude": 35.70298,
+ "longitude": 139.761776,
+ "polygon": [
+ [
+ 139.76166610989011,
+ 35.70307009009009
+ ],
+ [
+ 139.76188589010988,
+ 35.70307009009009
+ ],
+ [
+ 139.76188589010988,
+ 35.702889909909906
+ ],
+ [
+ 139.76166610989011,
+ 35.702889909909906
+ ],
+ [
+ 139.76166610989011,
+ 35.70307009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Suijimmori.766.2",
+ "name": "水神森",
+ "latitude": 35.696897,
+ "longitude": 139.828993,
+ "polygon": [
+ [
+ 139.8288831098901,
+ 35.69698709009009
+ ],
+ [
+ 139.82910289010988,
+ 35.69698709009009
+ ],
+ [
+ 139.82910289010988,
+ 35.69680690990991
+ ],
+ [
+ 139.8288831098901,
+ 35.69680690990991
+ ],
+ [
+ 139.8288831098901,
+ 35.69698709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JuntendoByoin.754.2",
+ "name": "順天堂病院前",
+ "latitude": 35.702854,
+ "longitude": 139.761979,
+ "polygon": [
+ [
+ 139.7618691098901,
+ 35.70294409009009
+ ],
+ [
+ 139.76208889010988,
+ 35.70294409009009
+ ],
+ [
+ 139.76208889010988,
+ 35.70276390990991
+ ],
+ [
+ 139.7618691098901,
+ 35.70276390990991
+ ],
+ [
+ 139.7618691098901,
+ 35.70294409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Gonohashi.755.2",
+ "name": "五ノ橋",
+ "latitude": 35.69245,
+ "longitude": 139.826168,
+ "polygon": [
+ [
+ 139.8260581098901,
+ 35.69254009009009
+ ],
+ [
+ 139.82627789010988,
+ 35.69254009009009
+ ],
+ [
+ 139.82627789010988,
+ 35.69235990990991
+ ],
+ [
+ 139.8260581098901,
+ 35.69235990990991
+ ],
+ [
+ 139.8260581098901,
+ 35.69254009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JofukujiIriguchi.757.1",
+ "name": "常福寺入口",
+ "latitude": 35.828451,
+ "longitude": 139.292216,
+ "polygon": [
+ [
+ 139.2921061098901,
+ 35.82854109009009
+ ],
+ [
+ 139.29232589010988,
+ 35.82854109009009
+ ],
+ [
+ 139.29232589010988,
+ 35.82836090990991
+ ],
+ [
+ 139.2921061098901,
+ 35.82836090990991
+ ],
+ [
+ 139.2921061098901,
+ 35.82854109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JofukujiIriguchi.757.2",
+ "name": "常福寺入口",
+ "latitude": 35.828024,
+ "longitude": 139.291379,
+ "polygon": [
+ [
+ 139.29126910989012,
+ 35.82811409009009
+ ],
+ [
+ 139.2914888901099,
+ 35.82811409009009
+ ],
+ [
+ 139.2914888901099,
+ 35.82793390990991
+ ],
+ [
+ 139.29126910989012,
+ 35.82793390990991
+ ],
+ [
+ 139.29126910989012,
+ 35.82811409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JingumaeItchome.758.1",
+ "name": "神宮前一丁目",
+ "latitude": 35.671184,
+ "longitude": 139.707331,
+ "polygon": [
+ [
+ 139.70722110989013,
+ 35.67127409009009
+ ],
+ [
+ 139.7074408901099,
+ 35.67127409009009
+ ],
+ [
+ 139.7074408901099,
+ 35.67109390990991
+ ],
+ [
+ 139.70722110989013,
+ 35.67109390990991
+ ],
+ [
+ 139.70722110989013,
+ 35.67127409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JingumaeItchome.758.2",
+ "name": "神宮前一丁目",
+ "latitude": 35.67066,
+ "longitude": 139.707096,
+ "polygon": [
+ [
+ 139.70698610989012,
+ 35.67075009009009
+ ],
+ [
+ 139.7072058901099,
+ 35.67075009009009
+ ],
+ [
+ 139.7072058901099,
+ 35.67056990990991
+ ],
+ [
+ 139.70698610989012,
+ 35.67056990990991
+ ],
+ [
+ 139.70698610989012,
+ 35.67075009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JingumaeNichome.759.1",
+ "name": "神宮前二丁目",
+ "latitude": 35.672762,
+ "longitude": 139.712623,
+ "polygon": [
+ [
+ 139.71251310989012,
+ 35.67285209009009
+ ],
+ [
+ 139.7127328901099,
+ 35.67285209009009
+ ],
+ [
+ 139.7127328901099,
+ 35.67267190990991
+ ],
+ [
+ 139.71251310989012,
+ 35.67267190990991
+ ],
+ [
+ 139.71251310989012,
+ 35.67285209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JingumaeNichome.759.2",
+ "name": "神宮前二丁目",
+ "latitude": 35.673237,
+ "longitude": 139.712406,
+ "polygon": [
+ [
+ 139.7122961098901,
+ 35.67332709009009
+ ],
+ [
+ 139.71251589010987,
+ 35.67332709009009
+ ],
+ [
+ 139.71251589010987,
+ 35.67314690990991
+ ],
+ [
+ 139.7122961098901,
+ 35.67314690990991
+ ],
+ [
+ 139.7122961098901,
+ 35.67332709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JingumaeRokuchome.760.2",
+ "name": "神宮前六丁目",
+ "latitude": 35.665678,
+ "longitude": 139.703172,
+ "polygon": [
+ [
+ 139.7030621098901,
+ 35.66576809009009
+ ],
+ [
+ 139.70328189010988,
+ 35.66576809009009
+ ],
+ [
+ 139.70328189010988,
+ 35.66558790990991
+ ],
+ [
+ 139.7030621098901,
+ 35.66558790990991
+ ],
+ [
+ 139.7030621098901,
+ 35.66576809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Jimbocho.761.1",
+ "name": "神保町",
+ "latitude": 35.694954,
+ "longitude": 139.758434,
+ "polygon": [
+ [
+ 139.7583241098901,
+ 35.69504409009009
+ ],
+ [
+ 139.75854389010988,
+ 35.69504409009009
+ ],
+ [
+ 139.75854389010988,
+ 35.69486390990991
+ ],
+ [
+ 139.7583241098901,
+ 35.69486390990991
+ ],
+ [
+ 139.7583241098901,
+ 35.69504409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Jimbocho.761.2",
+ "name": "神保町",
+ "latitude": 35.694817,
+ "longitude": 139.758182,
+ "polygon": [
+ [
+ 139.75807210989012,
+ 35.69490709009009
+ ],
+ [
+ 139.7582918901099,
+ 35.69490709009009
+ ],
+ [
+ 139.7582918901099,
+ 35.69472690990991
+ ],
+ [
+ 139.75807210989012,
+ 35.69472690990991
+ ],
+ [
+ 139.75807210989012,
+ 35.69490709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JimbochoNichome.762.1",
+ "name": "神保町二丁目",
+ "latitude": 35.697005,
+ "longitude": 139.75774,
+ "polygon": [
+ [
+ 139.75763010989013,
+ 35.69709509009009
+ ],
+ [
+ 139.7578498901099,
+ 35.69709509009009
+ ],
+ [
+ 139.7578498901099,
+ 35.69691490990991
+ ],
+ [
+ 139.75763010989013,
+ 35.69691490990991
+ ],
+ [
+ 139.75763010989013,
+ 35.69709509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Jinyabashi.763.1",
+ "name": "陣屋橋",
+ "latitude": 35.678615,
+ "longitude": 139.867285,
+ "polygon": [
+ [
+ 139.86717510989013,
+ 35.67870509009009
+ ],
+ [
+ 139.8673948901099,
+ 35.67870509009009
+ ],
+ [
+ 139.8673948901099,
+ 35.67852490990991
+ ],
+ [
+ 139.86717510989013,
+ 35.67852490990991
+ ],
+ [
+ 139.86717510989013,
+ 35.67870509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Jinyabashi.763.2",
+ "name": "陣屋橋",
+ "latitude": 35.678999,
+ "longitude": 139.866902,
+ "polygon": [
+ [
+ 139.86679210989013,
+ 35.67908909009009
+ ],
+ [
+ 139.8670118901099,
+ 35.67908909009009
+ ],
+ [
+ 139.8670118901099,
+ 35.67890890990991
+ ],
+ [
+ 139.86679210989013,
+ 35.67890890990991
+ ],
+ [
+ 139.86679210989013,
+ 35.67908909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaShoboshoKonanShutchojoIriguchi.764.1",
+ "name": "高輪消防署港南出張所入口",
+ "latitude": 35.632184,
+ "longitude": 139.755321,
+ "polygon": [
+ [
+ 139.75521110989013,
+ 35.63227409009009
+ ],
+ [
+ 139.7554308901099,
+ 35.63227409009009
+ ],
+ [
+ 139.7554308901099,
+ 35.63209390990991
+ ],
+ [
+ 139.75521110989013,
+ 35.63209390990991
+ ],
+ [
+ 139.75521110989013,
+ 35.63227409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Suijin.765.1",
+ "name": "水神",
+ "latitude": 35.806067,
+ "longitude": 139.801513,
+ "polygon": [
+ [
+ 139.80140310989012,
+ 35.80615709009009
+ ],
+ [
+ 139.80162289010988,
+ 35.80615709009009
+ ],
+ [
+ 139.80162289010988,
+ 35.80597690990991
+ ],
+ [
+ 139.80140310989012,
+ 35.80597690990991
+ ],
+ [
+ 139.80140310989012,
+ 35.80615709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Suijin.765.2",
+ "name": "水神",
+ "latitude": 35.80571,
+ "longitude": 139.800886,
+ "polygon": [
+ [
+ 139.8007761098901,
+ 35.80580009009009
+ ],
+ [
+ 139.80099589010987,
+ 35.80580009009009
+ ],
+ [
+ 139.80099589010987,
+ 35.80561990990991
+ ],
+ [
+ 139.8007761098901,
+ 35.80561990990991
+ ],
+ [
+ 139.8007761098901,
+ 35.80580009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkenohataItchome.767.2",
+ "name": "池之端一丁目",
+ "latitude": 35.712203,
+ "longitude": 139.768675,
+ "polygon": [
+ [
+ 139.76856510989012,
+ 35.71229309009009
+ ],
+ [
+ 139.76878489010988,
+ 35.71229309009009
+ ],
+ [
+ 139.76878489010988,
+ 35.71211290990991
+ ],
+ [
+ 139.76856510989012,
+ 35.71211290990991
+ ],
+ [
+ 139.76856510989012,
+ 35.71229309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Suitengu.768.1",
+ "name": "水天宮前",
+ "latitude": 35.683294,
+ "longitude": 139.783701,
+ "polygon": [
+ [
+ 139.78359110989012,
+ 35.68338409009009
+ ],
+ [
+ 139.7838108901099,
+ 35.68338409009009
+ ],
+ [
+ 139.7838108901099,
+ 35.683203909909906
+ ],
+ [
+ 139.78359110989012,
+ 35.683203909909906
+ ],
+ [
+ 139.78359110989012,
+ 35.68338409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengenJinja.806.2",
+ "name": "浅間神社",
+ "latitude": 35.697775,
+ "longitude": 139.844165,
+ "polygon": [
+ [
+ 139.84405510989012,
+ 35.69786509009009
+ ],
+ [
+ 139.8442748901099,
+ 35.69786509009009
+ ],
+ [
+ 139.8442748901099,
+ 35.69768490990991
+ ],
+ [
+ 139.84405510989012,
+ 35.69768490990991
+ ],
+ [
+ 139.84405510989012,
+ 35.69786509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Suitengu.768.2",
+ "name": "水天宮前",
+ "latitude": 35.68346,
+ "longitude": 139.783506,
+ "polygon": [
+ [
+ 139.7833961098901,
+ 35.68355009009009
+ ],
+ [
+ 139.78361589010987,
+ 35.68355009009009
+ ],
+ [
+ 139.78361589010987,
+ 35.683369909909906
+ ],
+ [
+ 139.7833961098901,
+ 35.683369909909906
+ ],
+ [
+ 139.7833961098901,
+ 35.68355009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Suitengu.768.3",
+ "name": "水天宮前",
+ "latitude": 35.684388,
+ "longitude": 139.783847,
+ "polygon": [
+ [
+ 139.78373710989013,
+ 35.68447809009009
+ ],
+ [
+ 139.7839568901099,
+ 35.68447809009009
+ ],
+ [
+ 139.7839568901099,
+ 35.68429790990991
+ ],
+ [
+ 139.78373710989013,
+ 35.68429790990991
+ ],
+ [
+ 139.78373710989013,
+ 35.68447809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraMizuSaiseiCenter.769.1",
+ "name": "芝浦水再生センター前",
+ "latitude": 35.636308,
+ "longitude": 139.74626,
+ "polygon": [
+ [
+ 139.74615010989012,
+ 35.63639809009009
+ ],
+ [
+ 139.7463698901099,
+ 35.63639809009009
+ ],
+ [
+ 139.7463698901099,
+ 35.63621790990991
+ ],
+ [
+ 139.74615010989012,
+ 35.63621790990991
+ ],
+ [
+ 139.74615010989012,
+ 35.63639809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraMizuSaiseiCenter.769.2",
+ "name": "芝浦水再生センター前",
+ "latitude": 35.634777,
+ "longitude": 139.745986,
+ "polygon": [
+ [
+ 139.7458761098901,
+ 35.63486709009009
+ ],
+ [
+ 139.74609589010987,
+ 35.63486709009009
+ ],
+ [
+ 139.74609589010987,
+ 35.63468690990991
+ ],
+ [
+ 139.7458761098901,
+ 35.63468690990991
+ ],
+ [
+ 139.7458761098901,
+ 35.63486709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuidobashiStation.771.1",
+ "name": "水道橋駅前",
+ "latitude": 35.701158,
+ "longitude": 139.755279,
+ "polygon": [
+ [
+ 139.75516910989012,
+ 35.70124809009009
+ ],
+ [
+ 139.75538889010988,
+ 35.70124809009009
+ ],
+ [
+ 139.75538889010988,
+ 35.70106790990991
+ ],
+ [
+ 139.75516910989012,
+ 35.70106790990991
+ ],
+ [
+ 139.75516910989012,
+ 35.70124809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuidobashiStation.771.2",
+ "name": "水道橋駅前",
+ "latitude": 35.701226,
+ "longitude": 139.755578,
+ "polygon": [
+ [
+ 139.75546810989013,
+ 35.70131609009009
+ ],
+ [
+ 139.7556878901099,
+ 35.70131609009009
+ ],
+ [
+ 139.7556878901099,
+ 35.70113590990991
+ ],
+ [
+ 139.75546810989013,
+ 35.70113590990991
+ ],
+ [
+ 139.75546810989013,
+ 35.70131609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugamoStation.773.3",
+ "name": "巣鴨駅前",
+ "latitude": 35.734058,
+ "longitude": 139.738132,
+ "polygon": [
+ [
+ 139.73802210989012,
+ 35.73414809009009
+ ],
+ [
+ 139.7382418901099,
+ 35.73414809009009
+ ],
+ [
+ 139.7382418901099,
+ 35.73396790990991
+ ],
+ [
+ 139.73802210989012,
+ 35.73396790990991
+ ],
+ [
+ 139.73802210989012,
+ 35.73414809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugamoStation.773.4",
+ "name": "巣鴨駅前",
+ "latitude": 35.733885,
+ "longitude": 139.737827,
+ "polygon": [
+ [
+ 139.73771710989013,
+ 35.73397509009009
+ ],
+ [
+ 139.7379368901099,
+ 35.73397509009009
+ ],
+ [
+ 139.7379368901099,
+ 35.73379490990991
+ ],
+ [
+ 139.73771710989013,
+ 35.73379490990991
+ ],
+ [
+ 139.73771710989013,
+ 35.73397509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugamoStationMinamiguchi.774.5",
+ "name": "巣鴨駅南口",
+ "latitude": 35.732158,
+ "longitude": 139.74041,
+ "polygon": [
+ [
+ 139.74030010989011,
+ 35.73224809009009
+ ],
+ [
+ 139.74051989010988,
+ 35.73224809009009
+ ],
+ [
+ 139.74051989010988,
+ 35.73206790990991
+ ],
+ [
+ 139.74030010989011,
+ 35.73206790990991
+ ],
+ [
+ 139.74030010989011,
+ 35.73224809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugamoStationMinamiguchi.774.6",
+ "name": "巣鴨駅南口",
+ "latitude": 35.732617,
+ "longitude": 139.739367,
+ "polygon": [
+ [
+ 139.7392571098901,
+ 35.73270709009009
+ ],
+ [
+ 139.73947689010987,
+ 35.73270709009009
+ ],
+ [
+ 139.73947689010987,
+ 35.73252690990991
+ ],
+ [
+ 139.7392571098901,
+ 35.73252690990991
+ ],
+ [
+ 139.7392571098901,
+ 35.73270709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugamoShogakko.775.1",
+ "name": "巣鴨小学校前",
+ "latitude": 35.727473,
+ "longitude": 139.733454,
+ "polygon": [
+ [
+ 139.7333441098901,
+ 35.727563090090094
+ ],
+ [
+ 139.73356389010988,
+ 35.727563090090094
+ ],
+ [
+ 139.73356389010988,
+ 35.72738290990991
+ ],
+ [
+ 139.7333441098901,
+ 35.72738290990991
+ ],
+ [
+ 139.7333441098901,
+ 35.727563090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugamoShogakko.775.2",
+ "name": "巣鴨小学校前",
+ "latitude": 35.727849,
+ "longitude": 139.732856,
+ "polygon": [
+ [
+ 139.73274610989012,
+ 35.72793909009009
+ ],
+ [
+ 139.73296589010988,
+ 35.72793909009009
+ ],
+ [
+ 139.73296589010988,
+ 35.72775890990991
+ ],
+ [
+ 139.73274610989012,
+ 35.72775890990991
+ ],
+ [
+ 139.73274610989012,
+ 35.72793909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugamoYonchome.776.1",
+ "name": "巣鴨四丁目",
+ "latitude": 35.738006,
+ "longitude": 139.733768,
+ "polygon": [
+ [
+ 139.73365810989011,
+ 35.73809609009009
+ ],
+ [
+ 139.73387789010988,
+ 35.73809609009009
+ ],
+ [
+ 139.73387789010988,
+ 35.73791590990991
+ ],
+ [
+ 139.73365810989011,
+ 35.73791590990991
+ ],
+ [
+ 139.73365810989011,
+ 35.73809609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugamoYonchome.776.2",
+ "name": "巣鴨四丁目",
+ "latitude": 35.738648,
+ "longitude": 139.733435,
+ "polygon": [
+ [
+ 139.7333251098901,
+ 35.73873809009009
+ ],
+ [
+ 139.73354489010987,
+ 35.73873809009009
+ ],
+ [
+ 139.73354489010987,
+ 35.73855790990991
+ ],
+ [
+ 139.7333251098901,
+ 35.73855790990991
+ ],
+ [
+ 139.7333251098901,
+ 35.73873809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sugawarabashi.777.1",
+ "name": "菅原橋",
+ "latitude": 35.715619,
+ "longitude": 139.873707,
+ "polygon": [
+ [
+ 139.8735971098901,
+ 35.71570909009009
+ ],
+ [
+ 139.87381689010988,
+ 35.71570909009009
+ ],
+ [
+ 139.87381689010988,
+ 35.71552890990991
+ ],
+ [
+ 139.8735971098901,
+ 35.71552890990991
+ ],
+ [
+ 139.8735971098901,
+ 35.71570909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sugawarabashi.777.2",
+ "name": "菅原橋",
+ "latitude": 35.71663,
+ "longitude": 139.874884,
+ "polygon": [
+ [
+ 139.87477410989013,
+ 35.71672009009009
+ ],
+ [
+ 139.8749938901099,
+ 35.71672009009009
+ ],
+ [
+ 139.8749938901099,
+ 35.71653990990991
+ ],
+ [
+ 139.87477410989013,
+ 35.71653990990991
+ ],
+ [
+ 139.87477410989013,
+ 35.71672009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaNichome.857.2",
+ "name": "高田馬場二丁目",
+ "latitude": 35.711183,
+ "longitude": 139.710899,
+ "polygon": [
+ [
+ 139.71078910989013,
+ 35.71127309009009
+ ],
+ [
+ 139.7110088901099,
+ 35.71127309009009
+ ],
+ [
+ 139.7110088901099,
+ 35.71109290990991
+ ],
+ [
+ 139.71078910989013,
+ 35.71109290990991
+ ],
+ [
+ 139.71078910989013,
+ 35.71127309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sugawarabashi.777.3",
+ "name": "菅原橋",
+ "latitude": 35.715385,
+ "longitude": 139.874128,
+ "polygon": [
+ [
+ 139.87401810989013,
+ 35.71547509009009
+ ],
+ [
+ 139.8742378901099,
+ 35.71547509009009
+ ],
+ [
+ 139.8742378901099,
+ 35.71529490990991
+ ],
+ [
+ 139.87401810989013,
+ 35.71529490990991
+ ],
+ [
+ 139.87401810989013,
+ 35.71547509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sukiyabashi.778.3",
+ "name": "数寄屋橋",
+ "latitude": 35.673234,
+ "longitude": 139.762412,
+ "polygon": [
+ [
+ 139.76230210989013,
+ 35.67332409009009
+ ],
+ [
+ 139.7625218901099,
+ 35.67332409009009
+ ],
+ [
+ 139.7625218901099,
+ 35.67314390990991
+ ],
+ [
+ 139.76230210989013,
+ 35.67314390990991
+ ],
+ [
+ 139.76230210989013,
+ 35.67332409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sukiyabashi.778.4",
+ "name": "数寄屋橋",
+ "latitude": 35.672744,
+ "longitude": 139.762572,
+ "polygon": [
+ [
+ 139.76246210989012,
+ 35.67283409009009
+ ],
+ [
+ 139.7626818901099,
+ 35.67283409009009
+ ],
+ [
+ 139.7626818901099,
+ 35.67265390990991
+ ],
+ [
+ 139.76246210989012,
+ 35.67265390990991
+ ],
+ [
+ 139.76246210989012,
+ 35.67283409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SotoKandaNichome.842.1",
+ "name": "外神田二丁目",
+ "latitude": 35.699309,
+ "longitude": 139.767664,
+ "polygon": [
+ [
+ 139.7675541098901,
+ 35.69939909009009
+ ],
+ [
+ 139.76777389010988,
+ 35.69939909009009
+ ],
+ [
+ 139.76777389010988,
+ 35.69921890990991
+ ],
+ [
+ 139.7675541098901,
+ 35.69921890990991
+ ],
+ [
+ 139.7675541098901,
+ 35.69939909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuginamiKuyakusho.779.1",
+ "name": "杉並区役所前",
+ "latitude": 35.69918,
+ "longitude": 139.636431,
+ "polygon": [
+ [
+ 139.6363211098901,
+ 35.69927009009009
+ ],
+ [
+ 139.63654089010987,
+ 35.69927009009009
+ ],
+ [
+ 139.63654089010987,
+ 35.69908990990991
+ ],
+ [
+ 139.6363211098901,
+ 35.69908990990991
+ ],
+ [
+ 139.6363211098901,
+ 35.69927009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuginamiKuyakusho.779.2",
+ "name": "杉並区役所前",
+ "latitude": 35.700078,
+ "longitude": 139.635549,
+ "polygon": [
+ [
+ 139.63543910989011,
+ 35.70016809009009
+ ],
+ [
+ 139.63565889010988,
+ 35.70016809009009
+ ],
+ [
+ 139.63565889010988,
+ 35.69998790990991
+ ],
+ [
+ 139.63543910989011,
+ 35.69998790990991
+ ],
+ [
+ 139.63543910989011,
+ 35.70016809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuginamiShako.780.1",
+ "name": "杉並車庫前",
+ "latitude": 35.697873,
+ "longitude": 139.651243,
+ "polygon": [
+ [
+ 139.6511331098901,
+ 35.69796309009009
+ ],
+ [
+ 139.65135289010988,
+ 35.69796309009009
+ ],
+ [
+ 139.65135289010988,
+ 35.69778290990991
+ ],
+ [
+ 139.6511331098901,
+ 35.69778290990991
+ ],
+ [
+ 139.6511331098901,
+ 35.69796309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuginamiShako.780.2",
+ "name": "杉並車庫前",
+ "latitude": 35.698046,
+ "longitude": 139.652123,
+ "polygon": [
+ [
+ 139.6520131098901,
+ 35.69813609009009
+ ],
+ [
+ 139.65223289010987,
+ 35.69813609009009
+ ],
+ [
+ 139.65223289010987,
+ 35.69795590990991
+ ],
+ [
+ 139.6520131098901,
+ 35.69795590990991
+ ],
+ [
+ 139.6520131098901,
+ 35.69813609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuginamiShako.780.3",
+ "name": "杉並車庫前",
+ "latitude": 35.697855,
+ "longitude": 139.651828,
+ "polygon": [
+ [
+ 139.6517181098901,
+ 35.69794509009009
+ ],
+ [
+ 139.65193789010988,
+ 35.69794509009009
+ ],
+ [
+ 139.65193789010988,
+ 35.69776490990991
+ ],
+ [
+ 139.6517181098901,
+ 35.69776490990991
+ ],
+ [
+ 139.6517181098901,
+ 35.69794509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuginamiShako.780.4",
+ "name": "杉並車庫前",
+ "latitude": 35.697838,
+ "longitude": 139.65166,
+ "polygon": [
+ [
+ 139.6515501098901,
+ 35.69792809009009
+ ],
+ [
+ 139.65176989010988,
+ 35.69792809009009
+ ],
+ [
+ 139.65176989010988,
+ 35.69774790990991
+ ],
+ [
+ 139.6515501098901,
+ 35.69774790990991
+ ],
+ [
+ 139.6515501098901,
+ 35.69792809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SesionSuginami.781.1",
+ "name": "セシオン杉並前",
+ "latitude": 35.696023,
+ "longitude": 139.65424,
+ "polygon": [
+ [
+ 139.6541301098901,
+ 35.69611309009009
+ ],
+ [
+ 139.65434989010987,
+ 35.69611309009009
+ ],
+ [
+ 139.65434989010987,
+ 35.69593290990991
+ ],
+ [
+ 139.6541301098901,
+ 35.69593290990991
+ ],
+ [
+ 139.6541301098901,
+ 35.69611309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SesionSuginami.781.2",
+ "name": "セシオン杉並前",
+ "latitude": 35.695467,
+ "longitude": 139.654485,
+ "polygon": [
+ [
+ 139.6543751098901,
+ 35.69555709009009
+ ],
+ [
+ 139.65459489010988,
+ 35.69555709009009
+ ],
+ [
+ 139.65459489010988,
+ 35.69537690990991
+ ],
+ [
+ 139.6543751098901,
+ 35.69537690990991
+ ],
+ [
+ 139.6543751098901,
+ 35.69555709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidaKoen.786.1",
+ "name": "隅田公園",
+ "latitude": 35.715346,
+ "longitude": 139.800883,
+ "polygon": [
+ [
+ 139.80077310989012,
+ 35.71543609009009
+ ],
+ [
+ 139.80099289010988,
+ 35.71543609009009
+ ],
+ [
+ 139.80099289010988,
+ 35.71525590990991
+ ],
+ [
+ 139.80077310989012,
+ 35.71525590990991
+ ],
+ [
+ 139.80077310989012,
+ 35.71543609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmezatoChuoKoenIriguchi.782.1",
+ "name": "梅里中央公園入口",
+ "latitude": 35.698028,
+ "longitude": 139.640133,
+ "polygon": [
+ [
+ 139.6400231098901,
+ 35.69811809009009
+ ],
+ [
+ 139.64024289010987,
+ 35.69811809009009
+ ],
+ [
+ 139.64024289010987,
+ 35.69793790990991
+ ],
+ [
+ 139.6400231098901,
+ 35.69793790990991
+ ],
+ [
+ 139.6400231098901,
+ 35.69811809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmezatoChuoKoenIriguchi.782.2",
+ "name": "梅里中央公園入口",
+ "latitude": 35.697775,
+ "longitude": 139.640236,
+ "polygon": [
+ [
+ 139.6401261098901,
+ 35.69786509009009
+ ],
+ [
+ 139.64034589010987,
+ 35.69786509009009
+ ],
+ [
+ 139.64034589010987,
+ 35.69768490990991
+ ],
+ [
+ 139.6401261098901,
+ 35.69768490990991
+ ],
+ [
+ 139.6401261098901,
+ 35.69786509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sudacho.784.5",
+ "name": "須田町",
+ "latitude": 35.696305,
+ "longitude": 139.77081,
+ "polygon": [
+ [
+ 139.77070010989013,
+ 35.69639509009009
+ ],
+ [
+ 139.7709198901099,
+ 35.69639509009009
+ ],
+ [
+ 139.7709198901099,
+ 35.69621490990991
+ ],
+ [
+ 139.77070010989013,
+ 35.69621490990991
+ ],
+ [
+ 139.77070010989013,
+ 35.69639509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sudacho.784.7",
+ "name": "須田町",
+ "latitude": 35.69496,
+ "longitude": 139.77024,
+ "polygon": [
+ [
+ 139.77013010989012,
+ 35.69505009009009
+ ],
+ [
+ 139.77034989010988,
+ 35.69505009009009
+ ],
+ [
+ 139.77034989010988,
+ 35.69486990990991
+ ],
+ [
+ 139.77013010989012,
+ 35.69486990990991
+ ],
+ [
+ 139.77013010989012,
+ 35.69505009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToeiRyogokuStation.785.1",
+ "name": "都営両国駅前",
+ "latitude": 35.6975,
+ "longitude": 139.797274,
+ "polygon": [
+ [
+ 139.7971641098901,
+ 35.69759009009009
+ ],
+ [
+ 139.79738389010987,
+ 35.69759009009009
+ ],
+ [
+ 139.79738389010987,
+ 35.69740990990991
+ ],
+ [
+ 139.7971641098901,
+ 35.69740990990991
+ ],
+ [
+ 139.7971641098901,
+ 35.69759009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToeiRyogokuStation.785.2",
+ "name": "都営両国駅前",
+ "latitude": 35.696474,
+ "longitude": 139.79757,
+ "polygon": [
+ [
+ 139.79746010989012,
+ 35.69656409009009
+ ],
+ [
+ 139.7976798901099,
+ 35.69656409009009
+ ],
+ [
+ 139.7976798901099,
+ 35.69638390990991
+ ],
+ [
+ 139.79746010989012,
+ 35.69638390990991
+ ],
+ [
+ 139.79746010989012,
+ 35.69656409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidaKoen.786.2",
+ "name": "隅田公園",
+ "latitude": 35.715276,
+ "longitude": 139.800477,
+ "polygon": [
+ [
+ 139.80036710989012,
+ 35.71536609009009
+ ],
+ [
+ 139.80058689010988,
+ 35.71536609009009
+ ],
+ [
+ 139.80058689010988,
+ 35.71518590990991
+ ],
+ [
+ 139.80036710989012,
+ 35.71518590990991
+ ],
+ [
+ 139.80036710989012,
+ 35.71536609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidaKoen.786.3",
+ "name": "隅田公園",
+ "latitude": 35.715876,
+ "longitude": 139.801694,
+ "polygon": [
+ [
+ 139.80158410989011,
+ 35.71596609009009
+ ],
+ [
+ 139.80180389010988,
+ 35.71596609009009
+ ],
+ [
+ 139.80180389010988,
+ 35.71578590990991
+ ],
+ [
+ 139.80158410989011,
+ 35.71578590990991
+ ],
+ [
+ 139.80158410989011,
+ 35.71596609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidaKoen.786.4",
+ "name": "隅田公園",
+ "latitude": 35.715923,
+ "longitude": 139.801939,
+ "polygon": [
+ [
+ 139.80182910989012,
+ 35.71601309009009
+ ],
+ [
+ 139.8020488901099,
+ 35.71601309009009
+ ],
+ [
+ 139.8020488901099,
+ 35.715832909909906
+ ],
+ [
+ 139.80182910989012,
+ 35.715832909909906
+ ],
+ [
+ 139.80182910989012,
+ 35.71601309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumiyoshiStation.787.1",
+ "name": "住吉駅前",
+ "latitude": 35.688883,
+ "longitude": 139.814925,
+ "polygon": [
+ [
+ 139.8148151098901,
+ 35.68897309009009
+ ],
+ [
+ 139.81503489010987,
+ 35.68897309009009
+ ],
+ [
+ 139.81503489010987,
+ 35.68879290990991
+ ],
+ [
+ 139.8148151098901,
+ 35.68879290990991
+ ],
+ [
+ 139.8148151098901,
+ 35.68897309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SurugadaiShita.791.1",
+ "name": "駿河台下",
+ "latitude": 35.697284,
+ "longitude": 139.761882,
+ "polygon": [
+ [
+ 139.76177210989013,
+ 35.69737409009009
+ ],
+ [
+ 139.7619918901099,
+ 35.69737409009009
+ ],
+ [
+ 139.7619918901099,
+ 35.69719390990991
+ ],
+ [
+ 139.76177210989013,
+ 35.69719390990991
+ ],
+ [
+ 139.76177210989013,
+ 35.69737409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumiyoshiStation.787.2",
+ "name": "住吉駅前",
+ "latitude": 35.689679,
+ "longitude": 139.815543,
+ "polygon": [
+ [
+ 139.8154331098901,
+ 35.68976909009009
+ ],
+ [
+ 139.81565289010987,
+ 35.68976909009009
+ ],
+ [
+ 139.81565289010987,
+ 35.68958890990991
+ ],
+ [
+ 139.8154331098901,
+ 35.68958890990991
+ ],
+ [
+ 139.8154331098901,
+ 35.68976909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumiyoshiStation.787.3",
+ "name": "住吉駅前",
+ "latitude": 35.689631,
+ "longitude": 139.815767,
+ "polygon": [
+ [
+ 139.8156571098901,
+ 35.68972109009009
+ ],
+ [
+ 139.81587689010988,
+ 35.68972109009009
+ ],
+ [
+ 139.81587689010988,
+ 35.68954090990991
+ ],
+ [
+ 139.8156571098901,
+ 35.68954090990991
+ ],
+ [
+ 139.8156571098901,
+ 35.68972109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumiyoshiJinja.788.1",
+ "name": "住吉神社前",
+ "latitude": 35.788779,
+ "longitude": 139.260963,
+ "polygon": [
+ [
+ 139.26085310989012,
+ 35.78886909009009
+ ],
+ [
+ 139.2610728901099,
+ 35.78886909009009
+ ],
+ [
+ 139.2610728901099,
+ 35.78868890990991
+ ],
+ [
+ 139.26085310989012,
+ 35.78868890990991
+ ],
+ [
+ 139.26085310989012,
+ 35.78886909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumiyoshiJinja.788.2",
+ "name": "住吉神社前",
+ "latitude": 35.788723,
+ "longitude": 139.260825,
+ "polygon": [
+ [
+ 139.26071510989013,
+ 35.78881309009009
+ ],
+ [
+ 139.2609348901099,
+ 35.78881309009009
+ ],
+ [
+ 139.2609348901099,
+ 35.78863290990991
+ ],
+ [
+ 139.26071510989013,
+ 35.78863290990991
+ ],
+ [
+ 139.26071510989013,
+ 35.78881309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumiyoshiItchome.789.1",
+ "name": "住吉一丁目",
+ "latitude": 35.688726,
+ "longitude": 139.812325,
+ "polygon": [
+ [
+ 139.8122151098901,
+ 35.68881609009009
+ ],
+ [
+ 139.81243489010987,
+ 35.68881609009009
+ ],
+ [
+ 139.81243489010987,
+ 35.68863590990991
+ ],
+ [
+ 139.8122151098901,
+ 35.68863590990991
+ ],
+ [
+ 139.8122151098901,
+ 35.68881609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumiyoshiItchome.789.2",
+ "name": "住吉一丁目",
+ "latitude": 35.688157,
+ "longitude": 139.810858,
+ "polygon": [
+ [
+ 139.8107481098901,
+ 35.68824709009009
+ ],
+ [
+ 139.81096789010988,
+ 35.68824709009009
+ ],
+ [
+ 139.81096789010988,
+ 35.68806690990991
+ ],
+ [
+ 139.8107481098901,
+ 35.68806690990991
+ ],
+ [
+ 139.8107481098901,
+ 35.68824709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SurugadaiShita.791.2",
+ "name": "駿河台下",
+ "latitude": 35.694892,
+ "longitude": 139.761393,
+ "polygon": [
+ [
+ 139.76128310989012,
+ 35.69498209009009
+ ],
+ [
+ 139.76150289010988,
+ 35.69498209009009
+ ],
+ [
+ 139.76150289010988,
+ 35.69480190990991
+ ],
+ [
+ 139.76128310989012,
+ 35.69480190990991
+ ],
+ [
+ 139.76128310989012,
+ 35.69498209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuwaJinja.792.1",
+ "name": "諏訪神社前",
+ "latitude": 35.800546,
+ "longitude": 139.265437,
+ "polygon": [
+ [
+ 139.2653271098901,
+ 35.80063609009009
+ ],
+ [
+ 139.26554689010987,
+ 35.80063609009009
+ ],
+ [
+ 139.26554689010987,
+ 35.80045590990991
+ ],
+ [
+ 139.2653271098901,
+ 35.80045590990991
+ ],
+ [
+ 139.2653271098901,
+ 35.80063609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuwaJinja.792.2",
+ "name": "諏訪神社前",
+ "latitude": 35.80041,
+ "longitude": 139.26561,
+ "polygon": [
+ [
+ 139.26550010989013,
+ 35.80050009009009
+ ],
+ [
+ 139.2657198901099,
+ 35.80050009009009
+ ],
+ [
+ 139.2657198901099,
+ 35.80031990990991
+ ],
+ [
+ 139.26550010989013,
+ 35.80031990990991
+ ],
+ [
+ 139.26550010989013,
+ 35.80050009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeibuHyakkaten.794.1",
+ "name": "西武百貨店前",
+ "latitude": 35.660591,
+ "longitude": 139.699113,
+ "polygon": [
+ [
+ 139.69900310989013,
+ 35.66068109009009
+ ],
+ [
+ 139.6992228901099,
+ 35.66068109009009
+ ],
+ [
+ 139.6992228901099,
+ 35.660500909909906
+ ],
+ [
+ 139.69900310989013,
+ 35.660500909909906
+ ],
+ [
+ 139.69900310989013,
+ 35.66068109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeiboByoinIriguchi.795.1",
+ "name": "聖母病院入口",
+ "latitude": 35.722043,
+ "longitude": 139.695168,
+ "polygon": [
+ [
+ 139.6950581098901,
+ 35.72213309009009
+ ],
+ [
+ 139.69527789010988,
+ 35.72213309009009
+ ],
+ [
+ 139.69527789010988,
+ 35.72195290990991
+ ],
+ [
+ 139.6950581098901,
+ 35.72195290990991
+ ],
+ [
+ 139.6950581098901,
+ 35.72213309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeiboByoinIriguchi.795.2",
+ "name": "聖母病院入口",
+ "latitude": 35.721932,
+ "longitude": 139.695055,
+ "polygon": [
+ [
+ 139.6949451098901,
+ 35.72202209009009
+ ],
+ [
+ 139.69516489010988,
+ 35.72202209009009
+ ],
+ [
+ 139.69516489010988,
+ 35.72184190990991
+ ],
+ [
+ 139.6949451098901,
+ 35.72184190990991
+ ],
+ [
+ 139.6949451098901,
+ 35.72202209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeimeiFukushiKyokai.796.1",
+ "name": "聖明福祉協会前",
+ "latitude": 35.805168,
+ "longitude": 139.265056,
+ "polygon": [
+ [
+ 139.2649461098901,
+ 35.80525809009009
+ ],
+ [
+ 139.26516589010987,
+ 35.80525809009009
+ ],
+ [
+ 139.26516589010987,
+ 35.80507790990991
+ ],
+ [
+ 139.2649461098901,
+ 35.80507790990991
+ ],
+ [
+ 139.2649461098901,
+ 35.80525809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeirukaByoin.797.1",
+ "name": "聖路加病院前",
+ "latitude": 35.66686,
+ "longitude": 139.77797,
+ "polygon": [
+ [
+ 139.77786010989013,
+ 35.66695009009009
+ ],
+ [
+ 139.7780798901099,
+ 35.66695009009009
+ ],
+ [
+ 139.7780798901099,
+ 35.66676990990991
+ ],
+ [
+ 139.77786010989013,
+ 35.66676990990991
+ ],
+ [
+ 139.77786010989013,
+ 35.66695009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengenJinja.806.1",
+ "name": "浅間神社",
+ "latitude": 35.697449,
+ "longitude": 139.844265,
+ "polygon": [
+ [
+ 139.84415510989012,
+ 35.69753909009009
+ ],
+ [
+ 139.8443748901099,
+ 35.69753909009009
+ ],
+ [
+ 139.8443748901099,
+ 35.69735890990991
+ ],
+ [
+ 139.84415510989012,
+ 35.69735890990991
+ ],
+ [
+ 139.84415510989012,
+ 35.69753909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeirukaByoin.797.2",
+ "name": "聖路加病院前",
+ "latitude": 35.666881,
+ "longitude": 139.777777,
+ "polygon": [
+ [
+ 139.7776671098901,
+ 35.66697109009009
+ ],
+ [
+ 139.77788689010987,
+ 35.66697109009009
+ ],
+ [
+ 139.77788689010987,
+ 35.666790909909906
+ ],
+ [
+ 139.7776671098901,
+ 35.666790909909906
+ ],
+ [
+ 139.7776671098901,
+ 35.66697109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SekiguchiItchome.798.1",
+ "name": "関口一丁目",
+ "latitude": 35.710481,
+ "longitude": 139.723959,
+ "polygon": [
+ [
+ 139.72384910989012,
+ 35.71057109009009
+ ],
+ [
+ 139.7240688901099,
+ 35.71057109009009
+ ],
+ [
+ 139.7240688901099,
+ 35.71039090990991
+ ],
+ [
+ 139.72384910989012,
+ 35.71039090990991
+ ],
+ [
+ 139.72384910989012,
+ 35.71057109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SekiguchiItchome.798.2",
+ "name": "関口一丁目",
+ "latitude": 35.710006,
+ "longitude": 139.724876,
+ "polygon": [
+ [
+ 139.7247661098901,
+ 35.71009609009009
+ ],
+ [
+ 139.72498589010988,
+ 35.71009609009009
+ ],
+ [
+ 139.72498589010988,
+ 35.70991590990991
+ ],
+ [
+ 139.7247661098901,
+ 35.70991590990991
+ ],
+ [
+ 139.7247661098901,
+ 35.71009609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HOTELCHINZANSOTOKYO.799.1",
+ "name": "ホテル椿山荘東京前",
+ "latitude": 35.713781,
+ "longitude": 139.725911,
+ "polygon": [
+ [
+ 139.7258011098901,
+ 35.71387109009009
+ ],
+ [
+ 139.72602089010988,
+ 35.71387109009009
+ ],
+ [
+ 139.72602089010988,
+ 35.71369090990991
+ ],
+ [
+ 139.7258011098901,
+ 35.71369090990991
+ ],
+ [
+ 139.7258011098901,
+ 35.71387109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HOTELCHINZANSOTOKYO.799.2",
+ "name": "ホテル椿山荘東京前",
+ "latitude": 35.713856,
+ "longitude": 139.726049,
+ "polygon": [
+ [
+ 139.7259391098901,
+ 35.71394609009009
+ ],
+ [
+ 139.72615889010987,
+ 35.71394609009009
+ ],
+ [
+ 139.72615889010987,
+ 35.71376590990991
+ ],
+ [
+ 139.7259391098901,
+ 35.71376590990991
+ ],
+ [
+ 139.7259391098901,
+ 35.71394609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sengakuji.805.1",
+ "name": "泉岳寺前",
+ "latitude": 35.637662,
+ "longitude": 139.738363,
+ "polygon": [
+ [
+ 139.7382531098901,
+ 35.63775209009009
+ ],
+ [
+ 139.73847289010988,
+ 35.63775209009009
+ ],
+ [
+ 139.73847289010988,
+ 35.63757190990991
+ ],
+ [
+ 139.7382531098901,
+ 35.63757190990991
+ ],
+ [
+ 139.7382531098901,
+ 35.63775209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sengakuji.805.2",
+ "name": "泉岳寺前",
+ "latitude": 35.636542,
+ "longitude": 139.739178,
+ "polygon": [
+ [
+ 139.73906810989013,
+ 35.63663209009009
+ ],
+ [
+ 139.7392878901099,
+ 35.63663209009009
+ ],
+ [
+ 139.7392878901099,
+ 35.63645190990991
+ ],
+ [
+ 139.73906810989013,
+ 35.63645190990991
+ ],
+ [
+ 139.73906810989013,
+ 35.63663209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuItchome.807.1",
+ "name": "千石一丁目(せんごくいっちょうめ(こうとうく))",
+ "latitude": 35.678715,
+ "longitude": 139.811771,
+ "polygon": [
+ [
+ 139.8116611098901,
+ 35.67880509009009
+ ],
+ [
+ 139.81188089010988,
+ 35.67880509009009
+ ],
+ [
+ 139.81188089010988,
+ 35.67862490990991
+ ],
+ [
+ 139.8116611098901,
+ 35.67862490990991
+ ],
+ [
+ 139.8116611098901,
+ 35.67880509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuItchome.807.2",
+ "name": "千石一丁目(せんごくいっちょうめ(こうとうく))",
+ "latitude": 35.677931,
+ "longitude": 139.812004,
+ "polygon": [
+ [
+ 139.81189410989012,
+ 35.67802109009009
+ ],
+ [
+ 139.81211389010988,
+ 35.67802109009009
+ ],
+ [
+ 139.81211389010988,
+ 35.67784090990991
+ ],
+ [
+ 139.81189410989012,
+ 35.67784090990991
+ ],
+ [
+ 139.81189410989012,
+ 35.67802109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuItchome.808.1",
+ "name": "千石一丁目(せんごくいっちょうめ(ぶんきょうく))",
+ "latitude": 35.728103,
+ "longitude": 139.743505,
+ "polygon": [
+ [
+ 139.74339510989012,
+ 35.72819309009009
+ ],
+ [
+ 139.74361489010988,
+ 35.72819309009009
+ ],
+ [
+ 139.74361489010988,
+ 35.72801290990991
+ ],
+ [
+ 139.74339510989012,
+ 35.72801290990991
+ ],
+ [
+ 139.74339510989012,
+ 35.72819309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuItchome.808.2",
+ "name": "千石一丁目(せんごくいっちょうめ(ぶんきょうく))",
+ "latitude": 35.7291,
+ "longitude": 139.743181,
+ "polygon": [
+ [
+ 139.7430711098901,
+ 35.72919009009009
+ ],
+ [
+ 139.74329089010988,
+ 35.72919009009009
+ ],
+ [
+ 139.74329089010988,
+ 35.72900990990991
+ ],
+ [
+ 139.7430711098901,
+ 35.72900990990991
+ ],
+ [
+ 139.7430711098901,
+ 35.72919009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuItchome.808.3",
+ "name": "千石一丁目(せんごくいっちょうめ(ぶんきょうく))",
+ "latitude": 35.729112,
+ "longitude": 139.744215,
+ "polygon": [
+ [
+ 139.7441051098901,
+ 35.72920209009009
+ ],
+ [
+ 139.74432489010988,
+ 35.72920209009009
+ ],
+ [
+ 139.74432489010988,
+ 35.72902190990991
+ ],
+ [
+ 139.7441051098901,
+ 35.72902190990991
+ ],
+ [
+ 139.7441051098901,
+ 35.72920209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuSanchome.811.1",
+ "name": "千石三丁目",
+ "latitude": 35.722999,
+ "longitude": 139.736873,
+ "polygon": [
+ [
+ 139.73676310989012,
+ 35.72308909009009
+ ],
+ [
+ 139.73698289010989,
+ 35.72308909009009
+ ],
+ [
+ 139.73698289010989,
+ 35.72290890990991
+ ],
+ [
+ 139.73676310989012,
+ 35.72290890990991
+ ],
+ [
+ 139.73676310989012,
+ 35.72308909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuItchome.808.4",
+ "name": "千石一丁目(せんごくいっちょうめ(ぶんきょうく))",
+ "latitude": 35.729239,
+ "longitude": 139.743497,
+ "polygon": [
+ [
+ 139.7433871098901,
+ 35.72932909009009
+ ],
+ [
+ 139.74360689010987,
+ 35.72932909009009
+ ],
+ [
+ 139.74360689010987,
+ 35.72914890990991
+ ],
+ [
+ 139.7433871098901,
+ 35.72914890990991
+ ],
+ [
+ 139.7433871098901,
+ 35.72932909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuNichome.809.1",
+ "name": "千石二丁目(せんごくにちょうめ(こうとうく))",
+ "latitude": 35.678359,
+ "longitude": 139.81606,
+ "polygon": [
+ [
+ 139.8159501098901,
+ 35.67844909009009
+ ],
+ [
+ 139.81616989010988,
+ 35.67844909009009
+ ],
+ [
+ 139.81616989010988,
+ 35.67826890990991
+ ],
+ [
+ 139.8159501098901,
+ 35.67826890990991
+ ],
+ [
+ 139.8159501098901,
+ 35.67844909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuNichome.809.2",
+ "name": "千石二丁目(せんごくにちょうめ(こうとうく))",
+ "latitude": 35.678518,
+ "longitude": 139.815862,
+ "polygon": [
+ [
+ 139.81575210989013,
+ 35.67860809009009
+ ],
+ [
+ 139.8159718901099,
+ 35.67860809009009
+ ],
+ [
+ 139.8159718901099,
+ 35.67842790990991
+ ],
+ [
+ 139.81575210989013,
+ 35.67842790990991
+ ],
+ [
+ 139.81575210989013,
+ 35.67860809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuNichome.810.3",
+ "name": "千石二丁目(せんごくにちょうめ(ぶんきょうく))",
+ "latitude": 35.725333,
+ "longitude": 139.740198,
+ "polygon": [
+ [
+ 139.7400881098901,
+ 35.72542309009009
+ ],
+ [
+ 139.74030789010988,
+ 35.72542309009009
+ ],
+ [
+ 139.74030789010988,
+ 35.72524290990991
+ ],
+ [
+ 139.7400881098901,
+ 35.72524290990991
+ ],
+ [
+ 139.7400881098901,
+ 35.72542309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuNichome.810.4",
+ "name": "千石二丁目(せんごくにちょうめ(ぶんきょうく))",
+ "latitude": 35.725985,
+ "longitude": 139.740912,
+ "polygon": [
+ [
+ 139.74080210989013,
+ 35.72607509009009
+ ],
+ [
+ 139.7410218901099,
+ 35.72607509009009
+ ],
+ [
+ 139.7410218901099,
+ 35.72589490990991
+ ],
+ [
+ 139.74080210989013,
+ 35.72589490990991
+ ],
+ [
+ 139.74080210989013,
+ 35.72607509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuSanchome.811.2",
+ "name": "千石三丁目",
+ "latitude": 35.723166,
+ "longitude": 139.737457,
+ "polygon": [
+ [
+ 139.73734710989012,
+ 35.72325609009009
+ ],
+ [
+ 139.7375668901099,
+ 35.72325609009009
+ ],
+ [
+ 139.7375668901099,
+ 35.72307590990991
+ ],
+ [
+ 139.73734710989012,
+ 35.72307590990991
+ ],
+ [
+ 139.73734710989012,
+ 35.72325609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuSanchome.811.3",
+ "name": "千石三丁目",
+ "latitude": 35.723141,
+ "longitude": 139.736799,
+ "polygon": [
+ [
+ 139.7366891098901,
+ 35.72323109009009
+ ],
+ [
+ 139.73690889010987,
+ 35.72323109009009
+ ],
+ [
+ 139.73690889010987,
+ 35.72305090990991
+ ],
+ [
+ 139.7366891098901,
+ 35.72305090990991
+ ],
+ [
+ 139.7366891098901,
+ 35.72323109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SengokuSanchome.811.4",
+ "name": "千石三丁目",
+ "latitude": 35.72386,
+ "longitude": 139.737041,
+ "polygon": [
+ [
+ 139.73693110989012,
+ 35.72395009009009
+ ],
+ [
+ 139.7371508901099,
+ 35.72395009009009
+ ],
+ [
+ 139.7371508901099,
+ 35.72376990990991
+ ],
+ [
+ 139.73693110989012,
+ 35.72376990990991
+ ],
+ [
+ 139.73693110989012,
+ 35.72395009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Senjuohashi.813.1",
+ "name": "千住大橋",
+ "latitude": 35.736235,
+ "longitude": 139.796287,
+ "polygon": [
+ [
+ 139.79617710989012,
+ 35.73632509009009
+ ],
+ [
+ 139.7963968901099,
+ 35.73632509009009
+ ],
+ [
+ 139.7963968901099,
+ 35.73614490990991
+ ],
+ [
+ 139.79617710989012,
+ 35.73614490990991
+ ],
+ [
+ 139.79617710989012,
+ 35.73632509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Senjuohashi.813.2",
+ "name": "千住大橋",
+ "latitude": 35.737349,
+ "longitude": 139.796649,
+ "polygon": [
+ [
+ 139.79653910989012,
+ 35.73743909009009
+ ],
+ [
+ 139.79675889010988,
+ 35.73743909009009
+ ],
+ [
+ 139.79675889010988,
+ 35.73725890990991
+ ],
+ [
+ 139.79653910989012,
+ 35.73725890990991
+ ],
+ [
+ 139.79653910989012,
+ 35.73743909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuSakuragi.814.1",
+ "name": "千住桜木",
+ "latitude": 35.755156,
+ "longitude": 139.789437,
+ "polygon": [
+ [
+ 139.7893271098901,
+ 35.75524609009009
+ ],
+ [
+ 139.78954689010988,
+ 35.75524609009009
+ ],
+ [
+ 139.78954689010988,
+ 35.75506590990991
+ ],
+ [
+ 139.7893271098901,
+ 35.75506590990991
+ ],
+ [
+ 139.7893271098901,
+ 35.75524609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuSakuragi.814.2",
+ "name": "千住桜木",
+ "latitude": 35.755188,
+ "longitude": 139.790565,
+ "polygon": [
+ [
+ 139.7904551098901,
+ 35.75527809009009
+ ],
+ [
+ 139.79067489010987,
+ 35.75527809009009
+ ],
+ [
+ 139.79067489010987,
+ 35.75509790990991
+ ],
+ [
+ 139.7904551098901,
+ 35.75509790990991
+ ],
+ [
+ 139.7904551098901,
+ 35.75527809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuSakuragi.814.3",
+ "name": "千住桜木",
+ "latitude": 35.756089,
+ "longitude": 139.789434,
+ "polygon": [
+ [
+ 139.78932410989012,
+ 35.75617909009009
+ ],
+ [
+ 139.78954389010988,
+ 35.75617909009009
+ ],
+ [
+ 139.78954389010988,
+ 35.75599890990991
+ ],
+ [
+ 139.78932410989012,
+ 35.75599890990991
+ ],
+ [
+ 139.78932410989012,
+ 35.75617909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuSakuragi.814.4",
+ "name": "千住桜木",
+ "latitude": 35.755517,
+ "longitude": 139.789647,
+ "polygon": [
+ [
+ 139.78953710989012,
+ 35.75560709009009
+ ],
+ [
+ 139.78975689010989,
+ 35.75560709009009
+ ],
+ [
+ 139.78975689010989,
+ 35.75542690990991
+ ],
+ [
+ 139.78953710989012,
+ 35.75542690990991
+ ],
+ [
+ 139.78953710989012,
+ 35.75560709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuSakuragi.814.5",
+ "name": "千住桜木",
+ "latitude": 35.755253,
+ "longitude": 139.789536,
+ "polygon": [
+ [
+ 139.78942610989012,
+ 35.75534309009009
+ ],
+ [
+ 139.78964589010988,
+ 35.75534309009009
+ ],
+ [
+ 139.78964589010988,
+ 35.75516290990991
+ ],
+ [
+ 139.78942610989012,
+ 35.75516290990991
+ ],
+ [
+ 139.78942610989012,
+ 35.75534309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuShako.815.1",
+ "name": "千住車庫前",
+ "latitude": 35.764718,
+ "longitude": 139.803881,
+ "polygon": [
+ [
+ 139.8037711098901,
+ 35.76480809009009
+ ],
+ [
+ 139.80399089010987,
+ 35.76480809009009
+ ],
+ [
+ 139.80399089010987,
+ 35.76462790990991
+ ],
+ [
+ 139.8037711098901,
+ 35.76462790990991
+ ],
+ [
+ 139.8037711098901,
+ 35.76480809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaStation.828.3",
+ "name": "千駄ヶ谷駅前",
+ "latitude": 35.680665,
+ "longitude": 139.711995,
+ "polygon": [
+ [
+ 139.71188510989012,
+ 35.68075509009009
+ ],
+ [
+ 139.71210489010988,
+ 35.68075509009009
+ ],
+ [
+ 139.71210489010988,
+ 35.68057490990991
+ ],
+ [
+ 139.71188510989012,
+ 35.68057490990991
+ ],
+ [
+ 139.71188510989012,
+ 35.68075509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuShako.815.2",
+ "name": "千住車庫前",
+ "latitude": 35.764767,
+ "longitude": 139.802738,
+ "polygon": [
+ [
+ 139.80262810989012,
+ 35.76485709009009
+ ],
+ [
+ 139.8028478901099,
+ 35.76485709009009
+ ],
+ [
+ 139.8028478901099,
+ 35.76467690990991
+ ],
+ [
+ 139.80262810989012,
+ 35.76467690990991
+ ],
+ [
+ 139.80262810989012,
+ 35.76485709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuShako.815.3",
+ "name": "千住車庫前",
+ "latitude": 35.765197,
+ "longitude": 139.802435,
+ "polygon": [
+ [
+ 139.80232510989012,
+ 35.76528709009009
+ ],
+ [
+ 139.80254489010989,
+ 35.76528709009009
+ ],
+ [
+ 139.80254489010989,
+ 35.76510690990991
+ ],
+ [
+ 139.80232510989012,
+ 35.76510690990991
+ ],
+ [
+ 139.80232510989012,
+ 35.76528709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuShako.815.4",
+ "name": "千住車庫前",
+ "latitude": 35.765228,
+ "longitude": 139.802406,
+ "polygon": [
+ [
+ 139.8022961098901,
+ 35.76531809009009
+ ],
+ [
+ 139.80251589010987,
+ 35.76531809009009
+ ],
+ [
+ 139.80251589010987,
+ 35.76513790990991
+ ],
+ [
+ 139.8022961098901,
+ 35.76513790990991
+ ],
+ [
+ 139.8022961098901,
+ 35.76531809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuShako.815.5",
+ "name": "千住車庫前",
+ "latitude": 35.765557,
+ "longitude": 139.803523,
+ "polygon": [
+ [
+ 139.80341310989013,
+ 35.76564709009009
+ ],
+ [
+ 139.8036328901099,
+ 35.76564709009009
+ ],
+ [
+ 139.8036328901099,
+ 35.76546690990991
+ ],
+ [
+ 139.80341310989013,
+ 35.76546690990991
+ ],
+ [
+ 139.80341310989013,
+ 35.76564709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuTatsutacho.816.1",
+ "name": "千住竜田町",
+ "latitude": 35.751416,
+ "longitude": 139.793769,
+ "polygon": [
+ [
+ 139.79365910989011,
+ 35.75150609009009
+ ],
+ [
+ 139.79387889010988,
+ 35.75150609009009
+ ],
+ [
+ 139.79387889010988,
+ 35.75132590990991
+ ],
+ [
+ 139.79365910989011,
+ 35.75132590990991
+ ],
+ [
+ 139.79365910989011,
+ 35.75150609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuTatsutacho.816.2",
+ "name": "千住竜田町",
+ "latitude": 35.751098,
+ "longitude": 139.794163,
+ "polygon": [
+ [
+ 139.79405310989011,
+ 35.75118809009009
+ ],
+ [
+ 139.79427289010988,
+ 35.75118809009009
+ ],
+ [
+ 139.79427289010988,
+ 35.75100790990991
+ ],
+ [
+ 139.79405310989011,
+ 35.75100790990991
+ ],
+ [
+ 139.79405310989011,
+ 35.75118809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuNakaicho.817.1",
+ "name": "千住中居町",
+ "latitude": 35.750887,
+ "longitude": 139.796381,
+ "polygon": [
+ [
+ 139.7962711098901,
+ 35.75097709009009
+ ],
+ [
+ 139.79649089010988,
+ 35.75097709009009
+ ],
+ [
+ 139.79649089010988,
+ 35.75079690990991
+ ],
+ [
+ 139.7962711098901,
+ 35.75079690990991
+ ],
+ [
+ 139.7962711098901,
+ 35.75097709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuNakaicho.817.2",
+ "name": "千住中居町",
+ "latitude": 35.750815,
+ "longitude": 139.797147,
+ "polygon": [
+ [
+ 139.7970371098901,
+ 35.75090509009009
+ ],
+ [
+ 139.79725689010988,
+ 35.75090509009009
+ ],
+ [
+ 139.79725689010988,
+ 35.75072490990991
+ ],
+ [
+ 139.7970371098901,
+ 35.75072490990991
+ ],
+ [
+ 139.7970371098901,
+ 35.75090509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuNichome.820.1",
+ "name": "千住二丁目",
+ "latitude": 35.750631,
+ "longitude": 139.801504,
+ "polygon": [
+ [
+ 139.8013941098901,
+ 35.75072109009009
+ ],
+ [
+ 139.80161389010988,
+ 35.75072109009009
+ ],
+ [
+ 139.80161389010988,
+ 35.75054090990991
+ ],
+ [
+ 139.8013941098901,
+ 35.75054090990991
+ ],
+ [
+ 139.8013941098901,
+ 35.75072109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiSanchome.851.3",
+ "name": "太平三丁目",
+ "latitude": 35.701693,
+ "longitude": 139.814759,
+ "polygon": [
+ [
+ 139.81464910989013,
+ 35.70178309009009
+ ],
+ [
+ 139.8148688901099,
+ 35.70178309009009
+ ],
+ [
+ 139.8148688901099,
+ 35.70160290990991
+ ],
+ [
+ 139.81464910989013,
+ 35.70160290990991
+ ],
+ [
+ 139.81464910989013,
+ 35.70178309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuNichome.820.2",
+ "name": "千住二丁目",
+ "latitude": 35.75168,
+ "longitude": 139.800425,
+ "polygon": [
+ [
+ 139.8003151098901,
+ 35.75177009009009
+ ],
+ [
+ 139.80053489010987,
+ 35.75177009009009
+ ],
+ [
+ 139.80053489010987,
+ 35.75158990990991
+ ],
+ [
+ 139.8003151098901,
+ 35.75158990990991
+ ],
+ [
+ 139.8003151098901,
+ 35.75177009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuNichome.820.3",
+ "name": "千住二丁目",
+ "latitude": 35.750108,
+ "longitude": 139.799558,
+ "polygon": [
+ [
+ 139.7994481098901,
+ 35.75019809009009
+ ],
+ [
+ 139.79966789010987,
+ 35.75019809009009
+ ],
+ [
+ 139.79966789010987,
+ 35.75001790990991
+ ],
+ [
+ 139.7994481098901,
+ 35.75001790990991
+ ],
+ [
+ 139.7994481098901,
+ 35.75019809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuNichome.820.4",
+ "name": "千住二丁目",
+ "latitude": 35.750958,
+ "longitude": 139.799382,
+ "polygon": [
+ [
+ 139.79927210989013,
+ 35.75104809009009
+ ],
+ [
+ 139.7994918901099,
+ 35.75104809009009
+ ],
+ [
+ 139.7994918901099,
+ 35.75086790990991
+ ],
+ [
+ 139.79927210989013,
+ 35.75086790990991
+ ],
+ [
+ 139.79927210989013,
+ 35.75104809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuNichome.820.5",
+ "name": "千住二丁目",
+ "latitude": 35.750418,
+ "longitude": 139.800002,
+ "polygon": [
+ [
+ 139.79989210989012,
+ 35.750508090090094
+ ],
+ [
+ 139.8001118901099,
+ 35.750508090090094
+ ],
+ [
+ 139.8001118901099,
+ 35.75032790990991
+ ],
+ [
+ 139.79989210989012,
+ 35.75032790990991
+ ],
+ [
+ 139.79989210989012,
+ 35.750508090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuYonchome.821.1",
+ "name": "千住四丁目",
+ "latitude": 35.753975,
+ "longitude": 139.801225,
+ "polygon": [
+ [
+ 139.8011151098901,
+ 35.75406509009009
+ ],
+ [
+ 139.80133489010987,
+ 35.75406509009009
+ ],
+ [
+ 139.80133489010987,
+ 35.75388490990991
+ ],
+ [
+ 139.8011151098901,
+ 35.75388490990991
+ ],
+ [
+ 139.8011151098901,
+ 35.75406509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SenjuYonchome.821.2",
+ "name": "千住四丁目",
+ "latitude": 35.754002,
+ "longitude": 139.800825,
+ "polygon": [
+ [
+ 139.80071510989012,
+ 35.75409209009009
+ ],
+ [
+ 139.8009348901099,
+ 35.75409209009009
+ ],
+ [
+ 139.8009348901099,
+ 35.75391190990991
+ ],
+ [
+ 139.80071510989012,
+ 35.75391190990991
+ ],
+ [
+ 139.80071510989012,
+ 35.75409209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Senzoku.822.2",
+ "name": "千束",
+ "latitude": 35.720722,
+ "longitude": 139.791678,
+ "polygon": [
+ [
+ 139.7915681098901,
+ 35.72081209009009
+ ],
+ [
+ 139.79178789010987,
+ 35.72081209009009
+ ],
+ [
+ 139.79178789010987,
+ 35.72063190990991
+ ],
+ [
+ 139.7915681098901,
+ 35.72063190990991
+ ],
+ [
+ 139.7915681098901,
+ 35.72081209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaShogakko.829.1",
+ "name": "千駄ヶ谷小学校前",
+ "latitude": 35.675218,
+ "longitude": 139.706851,
+ "polygon": [
+ [
+ 139.70674110989012,
+ 35.67530809009009
+ ],
+ [
+ 139.70696089010988,
+ 35.67530809009009
+ ],
+ [
+ 139.70696089010988,
+ 35.67512790990991
+ ],
+ [
+ 139.70674110989012,
+ 35.67512790990991
+ ],
+ [
+ 139.70674110989012,
+ 35.67530809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Senda.824.1",
+ "name": "千田",
+ "latitude": 35.680368,
+ "longitude": 139.816117,
+ "polygon": [
+ [
+ 139.8160071098901,
+ 35.68045809009009
+ ],
+ [
+ 139.81622689010987,
+ 35.68045809009009
+ ],
+ [
+ 139.81622689010987,
+ 35.68027790990991
+ ],
+ [
+ 139.8160071098901,
+ 35.68027790990991
+ ],
+ [
+ 139.8160071098901,
+ 35.68045809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Senda.824.2",
+ "name": "千田",
+ "latitude": 35.680489,
+ "longitude": 139.81592,
+ "polygon": [
+ [
+ 139.81581010989012,
+ 35.68057909009009
+ ],
+ [
+ 139.8160298901099,
+ 35.68057909009009
+ ],
+ [
+ 139.8160298901099,
+ 35.68039890990991
+ ],
+ [
+ 139.81581010989012,
+ 35.68039890990991
+ ],
+ [
+ 139.81581010989012,
+ 35.68057909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sendaizaka.825.1",
+ "name": "仙台坂",
+ "latitude": 35.606425,
+ "longitude": 139.738273,
+ "polygon": [
+ [
+ 139.7381631098901,
+ 35.60651509009009
+ ],
+ [
+ 139.73838289010988,
+ 35.60651509009009
+ ],
+ [
+ 139.73838289010988,
+ 35.60633490990991
+ ],
+ [
+ 139.7381631098901,
+ 35.60633490990991
+ ],
+ [
+ 139.7381631098901,
+ 35.60651509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sendaizaka.825.2",
+ "name": "仙台坂",
+ "latitude": 35.60731,
+ "longitude": 139.740149,
+ "polygon": [
+ [
+ 139.74003910989012,
+ 35.60740009009009
+ ],
+ [
+ 139.74025889010989,
+ 35.60740009009009
+ ],
+ [
+ 139.74025889010989,
+ 35.60721990990991
+ ],
+ [
+ 139.74003910989012,
+ 35.60721990990991
+ ],
+ [
+ 139.74003910989012,
+ 35.60740009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendaizakaUe.826.1",
+ "name": "仙台坂上",
+ "latitude": 35.651915,
+ "longitude": 139.73077,
+ "polygon": [
+ [
+ 139.73066010989012,
+ 35.65200509009009
+ ],
+ [
+ 139.7308798901099,
+ 35.65200509009009
+ ],
+ [
+ 139.7308798901099,
+ 35.65182490990991
+ ],
+ [
+ 139.73066010989012,
+ 35.65182490990991
+ ],
+ [
+ 139.73066010989012,
+ 35.65200509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaShogakko.829.2",
+ "name": "千駄ヶ谷小学校前",
+ "latitude": 35.675143,
+ "longitude": 139.706656,
+ "polygon": [
+ [
+ 139.70654610989013,
+ 35.67523309009009
+ ],
+ [
+ 139.7067658901099,
+ 35.67523309009009
+ ],
+ [
+ 139.7067658901099,
+ 35.67505290990991
+ ],
+ [
+ 139.70654610989013,
+ 35.67505290990991
+ ],
+ [
+ 139.70654610989013,
+ 35.67523309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendaizakaUe.826.2",
+ "name": "仙台坂上",
+ "latitude": 35.652014,
+ "longitude": 139.730889,
+ "polygon": [
+ [
+ 139.7307791098901,
+ 35.65210409009009
+ ],
+ [
+ 139.73099889010987,
+ 35.65210409009009
+ ],
+ [
+ 139.73099889010987,
+ 35.65192390990991
+ ],
+ [
+ 139.7307791098901,
+ 35.65192390990991
+ ],
+ [
+ 139.7307791098901,
+ 35.65210409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendaizakaShita.827.1",
+ "name": "仙台坂下",
+ "latitude": 35.652562,
+ "longitude": 139.733739,
+ "polygon": [
+ [
+ 139.73362910989013,
+ 35.65265209009009
+ ],
+ [
+ 139.7338488901099,
+ 35.65265209009009
+ ],
+ [
+ 139.7338488901099,
+ 35.65247190990991
+ ],
+ [
+ 139.73362910989013,
+ 35.65247190990991
+ ],
+ [
+ 139.73362910989013,
+ 35.65265209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendaizakaShita.827.2",
+ "name": "仙台坂下",
+ "latitude": 35.652451,
+ "longitude": 139.733628,
+ "polygon": [
+ [
+ 139.73351810989013,
+ 35.65254109009009
+ ],
+ [
+ 139.7337378901099,
+ 35.65254109009009
+ ],
+ [
+ 139.7337378901099,
+ 35.65236090990991
+ ],
+ [
+ 139.73351810989013,
+ 35.65236090990991
+ ],
+ [
+ 139.73351810989013,
+ 35.65254109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaStation.828.1",
+ "name": "千駄ヶ谷駅前",
+ "latitude": 35.680487,
+ "longitude": 139.712202,
+ "polygon": [
+ [
+ 139.7120921098901,
+ 35.68057709009009
+ ],
+ [
+ 139.71231189010987,
+ 35.68057709009009
+ ],
+ [
+ 139.71231189010987,
+ 35.68039690990991
+ ],
+ [
+ 139.7120921098901,
+ 35.68039690990991
+ ],
+ [
+ 139.7120921098901,
+ 35.68057709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaStation.828.2",
+ "name": "千駄ヶ谷駅前",
+ "latitude": 35.680185,
+ "longitude": 139.71121,
+ "polygon": [
+ [
+ 139.7111001098901,
+ 35.68027509009009
+ ],
+ [
+ 139.71131989010988,
+ 35.68027509009009
+ ],
+ [
+ 139.71131989010988,
+ 35.68009490990991
+ ],
+ [
+ 139.7111001098901,
+ 35.68009490990991
+ ],
+ [
+ 139.7111001098901,
+ 35.68027509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaHachiman.830.1",
+ "name": "千駄ヶ谷八幡前",
+ "latitude": 35.67872,
+ "longitude": 139.711017,
+ "polygon": [
+ [
+ 139.71090710989012,
+ 35.67881009009009
+ ],
+ [
+ 139.71112689010988,
+ 35.67881009009009
+ ],
+ [
+ 139.71112689010988,
+ 35.67862990990991
+ ],
+ [
+ 139.71090710989012,
+ 35.67862990990991
+ ],
+ [
+ 139.71090710989012,
+ 35.67881009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaHachiman.830.2",
+ "name": "千駄ヶ谷八幡前",
+ "latitude": 35.678606,
+ "longitude": 139.710987,
+ "polygon": [
+ [
+ 139.7108771098901,
+ 35.67869609009009
+ ],
+ [
+ 139.71109689010987,
+ 35.67869609009009
+ ],
+ [
+ 139.71109689010987,
+ 35.67851590990991
+ ],
+ [
+ 139.7108771098901,
+ 35.67851590990991
+ ],
+ [
+ 139.7108771098901,
+ 35.67869609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaNichome.831.1",
+ "name": "千駄ヶ谷二丁目",
+ "latitude": 35.675043,
+ "longitude": 139.710156,
+ "polygon": [
+ [
+ 139.71004610989013,
+ 35.67513309009009
+ ],
+ [
+ 139.7102658901099,
+ 35.67513309009009
+ ],
+ [
+ 139.7102658901099,
+ 35.67495290990991
+ ],
+ [
+ 139.71004610989013,
+ 35.67495290990991
+ ],
+ [
+ 139.71004610989013,
+ 35.67513309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaNichome.831.2",
+ "name": "千駄ヶ谷二丁目",
+ "latitude": 35.675143,
+ "longitude": 139.709912,
+ "polygon": [
+ [
+ 139.70980210989012,
+ 35.67523309009009
+ ],
+ [
+ 139.71002189010989,
+ 35.67523309009009
+ ],
+ [
+ 139.71002189010989,
+ 35.67505290990991
+ ],
+ [
+ 139.70980210989012,
+ 35.67505290990991
+ ],
+ [
+ 139.70980210989012,
+ 35.67523309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaGochome.832.1",
+ "name": "千駄ヶ谷五丁目",
+ "latitude": 35.686473,
+ "longitude": 139.703151,
+ "polygon": [
+ [
+ 139.7030411098901,
+ 35.68656309009009
+ ],
+ [
+ 139.70326089010987,
+ 35.68656309009009
+ ],
+ [
+ 139.70326089010987,
+ 35.68638290990991
+ ],
+ [
+ 139.7030411098901,
+ 35.68638290990991
+ ],
+ [
+ 139.7030411098901,
+ 35.68656309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagayaGochome.832.2",
+ "name": "千駄ヶ谷五丁目",
+ "latitude": 35.686828,
+ "longitude": 139.703242,
+ "polygon": [
+ [
+ 139.7031321098901,
+ 35.68691809009009
+ ],
+ [
+ 139.70335189010987,
+ 35.68691809009009
+ ],
+ [
+ 139.70335189010987,
+ 35.68673790990991
+ ],
+ [
+ 139.7031321098901,
+ 35.68673790990991
+ ],
+ [
+ 139.7031321098901,
+ 35.68691809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagiNichome.833.1",
+ "name": "千駄木二丁目",
+ "latitude": 35.7216,
+ "longitude": 139.762026,
+ "polygon": [
+ [
+ 139.7619161098901,
+ 35.72169009009009
+ ],
+ [
+ 139.76213589010987,
+ 35.72169009009009
+ ],
+ [
+ 139.76213589010987,
+ 35.72150990990991
+ ],
+ [
+ 139.7619161098901,
+ 35.72150990990991
+ ],
+ [
+ 139.7619161098901,
+ 35.72169009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagiNichome.833.2",
+ "name": "千駄木二丁目",
+ "latitude": 35.722211,
+ "longitude": 139.762375,
+ "polygon": [
+ [
+ 139.7622651098901,
+ 35.72230109009009
+ ],
+ [
+ 139.76248489010987,
+ 35.72230109009009
+ ],
+ [
+ 139.76248489010987,
+ 35.72212090990991
+ ],
+ [
+ 139.7622651098901,
+ 35.72212090990991
+ ],
+ [
+ 139.7622651098901,
+ 35.72230109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagiSanchome.834.1",
+ "name": "千駄木三丁目",
+ "latitude": 35.727601,
+ "longitude": 139.763566,
+ "polygon": [
+ [
+ 139.76345610989011,
+ 35.72769109009009
+ ],
+ [
+ 139.76367589010988,
+ 35.72769109009009
+ ],
+ [
+ 139.76367589010988,
+ 35.72751090990991
+ ],
+ [
+ 139.76345610989011,
+ 35.72751090990991
+ ],
+ [
+ 139.76345610989011,
+ 35.72769109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagiSanchome.834.2",
+ "name": "千駄木三丁目",
+ "latitude": 35.72808,
+ "longitude": 139.763611,
+ "polygon": [
+ [
+ 139.76350110989011,
+ 35.72817009009009
+ ],
+ [
+ 139.76372089010988,
+ 35.72817009009009
+ ],
+ [
+ 139.76372089010988,
+ 35.72798990990991
+ ],
+ [
+ 139.76350110989011,
+ 35.72798990990991
+ ],
+ [
+ 139.76350110989011,
+ 35.72817009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagiGochome.835.1",
+ "name": "千駄木五丁目",
+ "latitude": 35.727354,
+ "longitude": 139.756242,
+ "polygon": [
+ [
+ 139.7561321098901,
+ 35.72744409009009
+ ],
+ [
+ 139.75635189010987,
+ 35.72744409009009
+ ],
+ [
+ 139.75635189010987,
+ 35.72726390990991
+ ],
+ [
+ 139.7561321098901,
+ 35.72726390990991
+ ],
+ [
+ 139.7561321098901,
+ 35.72744409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SodaiSeimon.839.9",
+ "name": "早大正門",
+ "latitude": 35.708697,
+ "longitude": 139.721481,
+ "polygon": [
+ [
+ 139.72137110989013,
+ 35.70878709009009
+ ],
+ [
+ 139.7215908901099,
+ 35.70878709009009
+ ],
+ [
+ 139.7215908901099,
+ 35.70860690990991
+ ],
+ [
+ 139.72137110989013,
+ 35.70860690990991
+ ],
+ [
+ 139.72137110989013,
+ 35.70878709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SendagiGochome.835.2",
+ "name": "千駄木五丁目",
+ "latitude": 35.72746,
+ "longitude": 139.75615,
+ "polygon": [
+ [
+ 139.7560401098901,
+ 35.72755009009009
+ ],
+ [
+ 139.75625989010987,
+ 35.72755009009009
+ ],
+ [
+ 139.75625989010987,
+ 35.72736990990991
+ ],
+ [
+ 139.7560401098901,
+ 35.72736990990991
+ ],
+ [
+ 139.7560401098901,
+ 35.72755009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuYashioKoko.836.1",
+ "name": "都立八潮高校前",
+ "latitude": 35.610547,
+ "longitude": 139.747309,
+ "polygon": [
+ [
+ 139.74719910989012,
+ 35.61063709009009
+ ],
+ [
+ 139.74741889010988,
+ 35.61063709009009
+ ],
+ [
+ 139.74741889010988,
+ 35.61045690990991
+ ],
+ [
+ 139.74719910989012,
+ 35.61045690990991
+ ],
+ [
+ 139.74719910989012,
+ 35.61063709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuYashioKoko.836.2",
+ "name": "都立八潮高校前",
+ "latitude": 35.6114,
+ "longitude": 139.746822,
+ "polygon": [
+ [
+ 139.74671210989013,
+ 35.61149009009009
+ ],
+ [
+ 139.7469318901099,
+ 35.61149009009009
+ ],
+ [
+ 139.7469318901099,
+ 35.61130990990991
+ ],
+ [
+ 139.74671210989013,
+ 35.61130990990991
+ ],
+ [
+ 139.74671210989013,
+ 35.61149009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuYashioKoko.836.3",
+ "name": "都立八潮高校前",
+ "latitude": 35.610806,
+ "longitude": 139.747559,
+ "polygon": [
+ [
+ 139.7474491098901,
+ 35.61089609009009
+ ],
+ [
+ 139.74766889010988,
+ 35.61089609009009
+ ],
+ [
+ 139.74766889010988,
+ 35.610715909909906
+ ],
+ [
+ 139.7474491098901,
+ 35.610715909909906
+ ],
+ [
+ 139.7474491098901,
+ 35.61089609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuYashioKoko.836.4",
+ "name": "都立八潮高校前",
+ "latitude": 35.610995,
+ "longitude": 139.745887,
+ "polygon": [
+ [
+ 139.74577710989013,
+ 35.61108509009009
+ ],
+ [
+ 139.7459968901099,
+ 35.61108509009009
+ ],
+ [
+ 139.7459968901099,
+ 35.61090490990991
+ ],
+ [
+ 139.74577710989013,
+ 35.61090490990991
+ ],
+ [
+ 139.74577710989013,
+ 35.61108509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sosenji.838.1",
+ "name": "宗泉寺",
+ "latitude": 35.79714,
+ "longitude": 139.278866,
+ "polygon": [
+ [
+ 139.2787561098901,
+ 35.79723009009009
+ ],
+ [
+ 139.27897589010988,
+ 35.79723009009009
+ ],
+ [
+ 139.27897589010988,
+ 35.79704990990991
+ ],
+ [
+ 139.2787561098901,
+ 35.79704990990991
+ ],
+ [
+ 139.2787561098901,
+ 35.79723009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeGarden.2610.2",
+ "name": "有明ガーデン",
+ "latitude": 35.638758,
+ "longitude": 139.793425,
+ "polygon": [
+ [
+ 139.79331510989013,
+ 35.63884809009009
+ ],
+ [
+ 139.7935348901099,
+ 35.63884809009009
+ ],
+ [
+ 139.7935348901099,
+ 35.63866790990991
+ ],
+ [
+ 139.79331510989013,
+ 35.63866790990991
+ ],
+ [
+ 139.79331510989013,
+ 35.63884809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sosenji.838.2",
+ "name": "宗泉寺",
+ "latitude": 35.797101,
+ "longitude": 139.278963,
+ "polygon": [
+ [
+ 139.27885310989012,
+ 35.79719109009009
+ ],
+ [
+ 139.2790728901099,
+ 35.79719109009009
+ ],
+ [
+ 139.2790728901099,
+ 35.79701090990991
+ ],
+ [
+ 139.27885310989012,
+ 35.79701090990991
+ ],
+ [
+ 139.27885310989012,
+ 35.79719109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SodaiSeimon.839.5",
+ "name": "早大正門",
+ "latitude": 35.709077,
+ "longitude": 139.722979,
+ "polygon": [
+ [
+ 139.72286910989013,
+ 35.70916709009009
+ ],
+ [
+ 139.7230888901099,
+ 35.70916709009009
+ ],
+ [
+ 139.7230888901099,
+ 35.70898690990991
+ ],
+ [
+ 139.72286910989013,
+ 35.70898690990991
+ ],
+ [
+ 139.72286910989013,
+ 35.70916709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SodaiSeimon.839.6",
+ "name": "早大正門",
+ "latitude": 35.708631,
+ "longitude": 139.721682,
+ "polygon": [
+ [
+ 139.7215721098901,
+ 35.70872109009009
+ ],
+ [
+ 139.72179189010987,
+ 35.70872109009009
+ ],
+ [
+ 139.72179189010987,
+ 35.70854090990991
+ ],
+ [
+ 139.7215721098901,
+ 35.70854090990991
+ ],
+ [
+ 139.7215721098901,
+ 35.70872109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaYonchome.859.1",
+ "name": "高田馬場四丁目",
+ "latitude": 35.711474,
+ "longitude": 139.6965,
+ "polygon": [
+ [
+ 139.6963901098901,
+ 35.71156409009009
+ ],
+ [
+ 139.69660989010987,
+ 35.71156409009009
+ ],
+ [
+ 139.69660989010987,
+ 35.71138390990991
+ ],
+ [
+ 139.6963901098901,
+ 35.71138390990991
+ ],
+ [
+ 139.6963901098901,
+ 35.71156409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SodaiSeimon.839.7",
+ "name": "早大正門",
+ "latitude": 35.708526,
+ "longitude": 139.721404,
+ "polygon": [
+ [
+ 139.72129410989012,
+ 35.70861609009009
+ ],
+ [
+ 139.7215138901099,
+ 35.70861609009009
+ ],
+ [
+ 139.7215138901099,
+ 35.70843590990991
+ ],
+ [
+ 139.72129410989012,
+ 35.70843590990991
+ ],
+ [
+ 139.72129410989012,
+ 35.70861609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SodaiSeimon.839.8",
+ "name": "早大正門",
+ "latitude": 35.708471,
+ "longitude": 139.721608,
+ "polygon": [
+ [
+ 139.72149810989012,
+ 35.70856109009009
+ ],
+ [
+ 139.7217178901099,
+ 35.70856109009009
+ ],
+ [
+ 139.7217178901099,
+ 35.70838090990991
+ ],
+ [
+ 139.72149810989012,
+ 35.70838090990991
+ ],
+ [
+ 139.72149810989012,
+ 35.70856109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sokuseiji.840.1",
+ "name": "即清寺",
+ "latitude": 35.794765,
+ "longitude": 139.214271,
+ "polygon": [
+ [
+ 139.2141611098901,
+ 35.79485509009009
+ ],
+ [
+ 139.21438089010988,
+ 35.79485509009009
+ ],
+ [
+ 139.21438089010988,
+ 35.79467490990991
+ ],
+ [
+ 139.2141611098901,
+ 35.79467490990991
+ ],
+ [
+ 139.2141611098901,
+ 35.79485509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sokuseiji.840.2",
+ "name": "即清寺",
+ "latitude": 35.794079,
+ "longitude": 139.215159,
+ "polygon": [
+ [
+ 139.21504910989012,
+ 35.794169090090094
+ ],
+ [
+ 139.21526889010988,
+ 35.794169090090094
+ ],
+ [
+ 139.21526889010988,
+ 35.79398890990991
+ ],
+ [
+ 139.21504910989012,
+ 35.79398890990991
+ ],
+ [
+ 139.21504910989012,
+ 35.794169090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sodegaura.841.1",
+ "name": "袖ヶ浦",
+ "latitude": 35.669916,
+ "longitude": 139.841179,
+ "polygon": [
+ [
+ 139.84106910989013,
+ 35.67000609009009
+ ],
+ [
+ 139.8412888901099,
+ 35.67000609009009
+ ],
+ [
+ 139.8412888901099,
+ 35.66982590990991
+ ],
+ [
+ 139.84106910989013,
+ 35.66982590990991
+ ],
+ [
+ 139.84106910989013,
+ 35.67000609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sodegaura.841.2",
+ "name": "袖ヶ浦",
+ "latitude": 35.669789,
+ "longitude": 139.841074,
+ "polygon": [
+ [
+ 139.8409641098901,
+ 35.66987909009009
+ ],
+ [
+ 139.84118389010987,
+ 35.66987909009009
+ ],
+ [
+ 139.84118389010987,
+ 35.66969890990991
+ ],
+ [
+ 139.8409641098901,
+ 35.66969890990991
+ ],
+ [
+ 139.8409641098901,
+ 35.66987909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GotenYamaShogakko.845.1",
+ "name": "御殿山小学校前",
+ "latitude": 35.624254,
+ "longitude": 139.732065,
+ "polygon": [
+ [
+ 139.73195510989012,
+ 35.62434409009009
+ ],
+ [
+ 139.7321748901099,
+ 35.62434409009009
+ ],
+ [
+ 139.7321748901099,
+ 35.62416390990991
+ ],
+ [
+ 139.73195510989012,
+ 35.62416390990991
+ ],
+ [
+ 139.73195510989012,
+ 35.62434409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GotenYamaShogakko.845.2",
+ "name": "御殿山小学校前",
+ "latitude": 35.624021,
+ "longitude": 139.732534,
+ "polygon": [
+ [
+ 139.7324241098901,
+ 35.62411109009009
+ ],
+ [
+ 139.73264389010987,
+ 35.62411109009009
+ ],
+ [
+ 139.73264389010987,
+ 35.62393090990991
+ ],
+ [
+ 139.7324241098901,
+ 35.62393090990991
+ ],
+ [
+ 139.7324241098901,
+ 35.62411109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiIkebukuroItchome.846.1",
+ "name": "南池袋一丁目",
+ "latitude": 35.723314,
+ "longitude": 139.711676,
+ "polygon": [
+ [
+ 139.71156610989013,
+ 35.72340409009009
+ ],
+ [
+ 139.7117858901099,
+ 35.72340409009009
+ ],
+ [
+ 139.7117858901099,
+ 35.72322390990991
+ ],
+ [
+ 139.71156610989013,
+ 35.72322390990991
+ ],
+ [
+ 139.71156610989013,
+ 35.72340409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiIkebukuroItchome.846.2",
+ "name": "南池袋一丁目",
+ "latitude": 35.723651,
+ "longitude": 139.711705,
+ "polygon": [
+ [
+ 139.7115951098901,
+ 35.72374109009009
+ ],
+ [
+ 139.71181489010988,
+ 35.72374109009009
+ ],
+ [
+ 139.71181489010988,
+ 35.72356090990991
+ ],
+ [
+ 139.7115951098901,
+ 35.72356090990991
+ ],
+ [
+ 139.7115951098901,
+ 35.72374109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ZoshigayaReienIriguchi.847.1",
+ "name": "雑司ヶ谷霊園入口",
+ "latitude": 35.72276,
+ "longitude": 139.722762,
+ "polygon": [
+ [
+ 139.7226521098901,
+ 35.72285009009009
+ ],
+ [
+ 139.72287189010987,
+ 35.72285009009009
+ ],
+ [
+ 139.72287189010987,
+ 35.72266990990991
+ ],
+ [
+ 139.7226521098901,
+ 35.72266990990991
+ ],
+ [
+ 139.7226521098901,
+ 35.72285009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ZoshigayaReienIriguchi.847.2",
+ "name": "雑司ヶ谷霊園入口",
+ "latitude": 35.722743,
+ "longitude": 139.72322,
+ "polygon": [
+ [
+ 139.72311010989011,
+ 35.72283309009009
+ ],
+ [
+ 139.72332989010988,
+ 35.72283309009009
+ ],
+ [
+ 139.72332989010988,
+ 35.72265290990991
+ ],
+ [
+ 139.72311010989011,
+ 35.72265290990991
+ ],
+ [
+ 139.72311010989011,
+ 35.72283309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Zoshiki.848.1",
+ "name": "蔵敷",
+ "latitude": 35.754346,
+ "longitude": 139.418933,
+ "polygon": [
+ [
+ 139.41882310989013,
+ 35.75443609009009
+ ],
+ [
+ 139.4190428901099,
+ 35.75443609009009
+ ],
+ [
+ 139.4190428901099,
+ 35.75425590990991
+ ],
+ [
+ 139.41882310989013,
+ 35.75425590990991
+ ],
+ [
+ 139.41882310989013,
+ 35.75443609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Zoshiki.848.2",
+ "name": "蔵敷",
+ "latitude": 35.754606,
+ "longitude": 139.417864,
+ "polygon": [
+ [
+ 139.41775410989013,
+ 35.75469609009009
+ ],
+ [
+ 139.4179738901099,
+ 35.75469609009009
+ ],
+ [
+ 139.4179738901099,
+ 35.75451590990991
+ ],
+ [
+ 139.41775410989013,
+ 35.75451590990991
+ ],
+ [
+ 139.41775410989013,
+ 35.75469609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiItchome.850.1",
+ "name": "太平一丁目",
+ "latitude": 35.700929,
+ "longitude": 139.811155,
+ "polygon": [
+ [
+ 139.81104510989013,
+ 35.70101909009009
+ ],
+ [
+ 139.8112648901099,
+ 35.70101909009009
+ ],
+ [
+ 139.8112648901099,
+ 35.70083890990991
+ ],
+ [
+ 139.81104510989013,
+ 35.70083890990991
+ ],
+ [
+ 139.81104510989013,
+ 35.70101909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiItchome.850.2",
+ "name": "太平一丁目",
+ "latitude": 35.701048,
+ "longitude": 139.810152,
+ "polygon": [
+ [
+ 139.8100421098901,
+ 35.70113809009009
+ ],
+ [
+ 139.81026189010987,
+ 35.70113809009009
+ ],
+ [
+ 139.81026189010987,
+ 35.70095790990991
+ ],
+ [
+ 139.8100421098901,
+ 35.70095790990991
+ ],
+ [
+ 139.8100421098901,
+ 35.70113809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiSanchome.851.1",
+ "name": "太平三丁目",
+ "latitude": 35.701775,
+ "longitude": 139.814537,
+ "polygon": [
+ [
+ 139.81442710989012,
+ 35.70186509009009
+ ],
+ [
+ 139.81464689010988,
+ 35.70186509009009
+ ],
+ [
+ 139.81464689010988,
+ 35.70168490990991
+ ],
+ [
+ 139.81442710989012,
+ 35.70168490990991
+ ],
+ [
+ 139.81442710989012,
+ 35.70186509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiSanchome.851.2",
+ "name": "太平三丁目",
+ "latitude": 35.700184,
+ "longitude": 139.814863,
+ "polygon": [
+ [
+ 139.81475310989012,
+ 35.70027409009009
+ ],
+ [
+ 139.81497289010989,
+ 35.70027409009009
+ ],
+ [
+ 139.81497289010989,
+ 35.70009390990991
+ ],
+ [
+ 139.81475310989012,
+ 35.70009390990991
+ ],
+ [
+ 139.81475310989012,
+ 35.70027409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiYonchome.852.1",
+ "name": "太平四丁目",
+ "latitude": 35.701236,
+ "longitude": 139.817424,
+ "polygon": [
+ [
+ 139.8173141098901,
+ 35.70132609009009
+ ],
+ [
+ 139.81753389010987,
+ 35.70132609009009
+ ],
+ [
+ 139.81753389010987,
+ 35.70114590990991
+ ],
+ [
+ 139.8173141098901,
+ 35.70114590990991
+ ],
+ [
+ 139.8173141098901,
+ 35.70132609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GakushuinJoshiDaigaku.856.3",
+ "name": "学習院女子大学前",
+ "latitude": 35.709029,
+ "longitude": 139.709169,
+ "polygon": [
+ [
+ 139.70905910989012,
+ 35.70911909009009
+ ],
+ [
+ 139.70927889010989,
+ 35.70911909009009
+ ],
+ [
+ 139.70927889010989,
+ 35.70893890990991
+ ],
+ [
+ 139.70905910989012,
+ 35.70893890990991
+ ],
+ [
+ 139.70905910989012,
+ 35.70911909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiYonchome.852.2",
+ "name": "太平四丁目",
+ "latitude": 35.701408,
+ "longitude": 139.818043,
+ "polygon": [
+ [
+ 139.8179331098901,
+ 35.70149809009009
+ ],
+ [
+ 139.81815289010987,
+ 35.70149809009009
+ ],
+ [
+ 139.81815289010987,
+ 35.70131790990991
+ ],
+ [
+ 139.8179331098901,
+ 35.70131790990991
+ ],
+ [
+ 139.8179331098901,
+ 35.70149809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStation.855.1",
+ "name": "高田馬場駅前",
+ "latitude": 35.712928,
+ "longitude": 139.704854,
+ "polygon": [
+ [
+ 139.70474410989013,
+ 35.71301809009009
+ ],
+ [
+ 139.7049638901099,
+ 35.71301809009009
+ ],
+ [
+ 139.7049638901099,
+ 35.71283790990991
+ ],
+ [
+ 139.70474410989013,
+ 35.71283790990991
+ ],
+ [
+ 139.70474410989013,
+ 35.71301809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStation.855.2",
+ "name": "高田馬場駅前",
+ "latitude": 35.713342,
+ "longitude": 139.70446,
+ "polygon": [
+ [
+ 139.70435010989013,
+ 35.71343209009009
+ ],
+ [
+ 139.7045698901099,
+ 35.71343209009009
+ ],
+ [
+ 139.7045698901099,
+ 35.71325190990991
+ ],
+ [
+ 139.70435010989013,
+ 35.71325190990991
+ ],
+ [
+ 139.70435010989013,
+ 35.71343209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStation.855.3",
+ "name": "高田馬場駅前",
+ "latitude": 35.713674,
+ "longitude": 139.704128,
+ "polygon": [
+ [
+ 139.70401810989011,
+ 35.71376409009009
+ ],
+ [
+ 139.70423789010988,
+ 35.71376409009009
+ ],
+ [
+ 139.70423789010988,
+ 35.71358390990991
+ ],
+ [
+ 139.70401810989011,
+ 35.71358390990991
+ ],
+ [
+ 139.70401810989011,
+ 35.71376409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaNichome.857.1",
+ "name": "高田馬場二丁目",
+ "latitude": 35.712013,
+ "longitude": 139.710071,
+ "polygon": [
+ [
+ 139.70996110989012,
+ 35.71210309009009
+ ],
+ [
+ 139.71018089010988,
+ 35.71210309009009
+ ],
+ [
+ 139.71018089010988,
+ 35.71192290990991
+ ],
+ [
+ 139.70996110989012,
+ 35.71192290990991
+ ],
+ [
+ 139.70996110989012,
+ 35.71210309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStation.855.4",
+ "name": "高田馬場駅前",
+ "latitude": 35.713754,
+ "longitude": 139.704373,
+ "polygon": [
+ [
+ 139.70426310989012,
+ 35.71384409009009
+ ],
+ [
+ 139.7044828901099,
+ 35.71384409009009
+ ],
+ [
+ 139.7044828901099,
+ 35.71366390990991
+ ],
+ [
+ 139.70426310989012,
+ 35.71366390990991
+ ],
+ [
+ 139.70426310989012,
+ 35.71384409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStation.855.5",
+ "name": "高田馬場駅前",
+ "latitude": 35.713814,
+ "longitude": 139.704203,
+ "polygon": [
+ [
+ 139.70409310989012,
+ 35.71390409009009
+ ],
+ [
+ 139.7043128901099,
+ 35.71390409009009
+ ],
+ [
+ 139.7043128901099,
+ 35.71372390990991
+ ],
+ [
+ 139.70409310989012,
+ 35.71372390990991
+ ],
+ [
+ 139.70409310989012,
+ 35.71390409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStation.855.6",
+ "name": "高田馬場駅前",
+ "latitude": 35.713192,
+ "longitude": 139.704401,
+ "polygon": [
+ [
+ 139.7042911098901,
+ 35.71328209009009
+ ],
+ [
+ 139.70451089010987,
+ 35.71328209009009
+ ],
+ [
+ 139.70451089010987,
+ 35.71310190990991
+ ],
+ [
+ 139.7042911098901,
+ 35.71310190990991
+ ],
+ [
+ 139.7042911098901,
+ 35.71328209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStation.855.9",
+ "name": "高田馬場駅前",
+ "latitude": 35.713047,
+ "longitude": 139.704411,
+ "polygon": [
+ [
+ 139.7043011098901,
+ 35.71313709009009
+ ],
+ [
+ 139.70452089010988,
+ 35.71313709009009
+ ],
+ [
+ 139.70452089010988,
+ 35.71295690990991
+ ],
+ [
+ 139.7043011098901,
+ 35.71295690990991
+ ],
+ [
+ 139.7043011098901,
+ 35.71313709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GakushuinJoshiDaigaku.856.1",
+ "name": "学習院女子大学前",
+ "latitude": 35.707471,
+ "longitude": 139.708872,
+ "polygon": [
+ [
+ 139.70876210989013,
+ 35.70756109009009
+ ],
+ [
+ 139.7089818901099,
+ 35.70756109009009
+ ],
+ [
+ 139.7089818901099,
+ 35.70738090990991
+ ],
+ [
+ 139.70876210989013,
+ 35.70738090990991
+ ],
+ [
+ 139.70876210989013,
+ 35.70756109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GakushuinJoshiDaigaku.856.2",
+ "name": "学習院女子大学前",
+ "latitude": 35.707734,
+ "longitude": 139.709138,
+ "polygon": [
+ [
+ 139.7090281098901,
+ 35.70782409009009
+ ],
+ [
+ 139.70924789010988,
+ 35.70782409009009
+ ],
+ [
+ 139.70924789010988,
+ 35.70764390990991
+ ],
+ [
+ 139.7090281098901,
+ 35.70764390990991
+ ],
+ [
+ 139.7090281098901,
+ 35.70782409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaNichome.857.3",
+ "name": "高田馬場二丁目",
+ "latitude": 35.710806,
+ "longitude": 139.709921,
+ "polygon": [
+ [
+ 139.70981110989013,
+ 35.71089609009009
+ ],
+ [
+ 139.7100308901099,
+ 35.71089609009009
+ ],
+ [
+ 139.7100308901099,
+ 35.71071590990991
+ ],
+ [
+ 139.70981110989013,
+ 35.71071590990991
+ ],
+ [
+ 139.70981110989013,
+ 35.71089609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaNichome.857.4",
+ "name": "高田馬場二丁目",
+ "latitude": 35.711414,
+ "longitude": 139.710782,
+ "polygon": [
+ [
+ 139.7106721098901,
+ 35.71150409009009
+ ],
+ [
+ 139.71089189010988,
+ 35.71150409009009
+ ],
+ [
+ 139.71089189010988,
+ 35.71132390990991
+ ],
+ [
+ 139.7106721098901,
+ 35.71132390990991
+ ],
+ [
+ 139.7106721098901,
+ 35.71150409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaSanchome.858.1",
+ "name": "高田馬場三丁目",
+ "latitude": 35.712286,
+ "longitude": 139.699319,
+ "polygon": [
+ [
+ 139.69920910989012,
+ 35.71237609009009
+ ],
+ [
+ 139.69942889010989,
+ 35.71237609009009
+ ],
+ [
+ 139.69942889010989,
+ 35.71219590990991
+ ],
+ [
+ 139.69920910989012,
+ 35.71219590990991
+ ],
+ [
+ 139.69920910989012,
+ 35.71237609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaSanchome.858.2",
+ "name": "高田馬場三丁目",
+ "latitude": 35.712277,
+ "longitude": 139.69966,
+ "polygon": [
+ [
+ 139.6995501098901,
+ 35.71236709009009
+ ],
+ [
+ 139.69976989010988,
+ 35.71236709009009
+ ],
+ [
+ 139.69976989010988,
+ 35.71218690990991
+ ],
+ [
+ 139.6995501098901,
+ 35.71218690990991
+ ],
+ [
+ 139.6995501098901,
+ 35.71236709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaYonchome.859.2",
+ "name": "高田馬場四丁目",
+ "latitude": 35.711522,
+ "longitude": 139.696986,
+ "polygon": [
+ [
+ 139.69687610989013,
+ 35.71161209009009
+ ],
+ [
+ 139.6970958901099,
+ 35.71161209009009
+ ],
+ [
+ 139.6970958901099,
+ 35.71143190990991
+ ],
+ [
+ 139.69687610989013,
+ 35.71143190990991
+ ],
+ [
+ 139.69687610989013,
+ 35.71161209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadaItchome.860.1",
+ "name": "高田一丁目",
+ "latitude": 35.717017,
+ "longitude": 139.717476,
+ "polygon": [
+ [
+ 139.71736610989012,
+ 35.71710709009009
+ ],
+ [
+ 139.7175858901099,
+ 35.71710709009009
+ ],
+ [
+ 139.7175858901099,
+ 35.71692690990991
+ ],
+ [
+ 139.71736610989012,
+ 35.71692690990991
+ ],
+ [
+ 139.71736610989012,
+ 35.71710709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadaItchome.860.2",
+ "name": "高田一丁目",
+ "latitude": 35.717361,
+ "longitude": 139.717037,
+ "polygon": [
+ [
+ 139.71692710989012,
+ 35.71745109009009
+ ],
+ [
+ 139.7171468901099,
+ 35.71745109009009
+ ],
+ [
+ 139.7171468901099,
+ 35.71727090990991
+ ],
+ [
+ 139.71692710989012,
+ 35.71727090990991
+ ],
+ [
+ 139.71692710989012,
+ 35.71745109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takatto.861.1",
+ "name": "高土戸",
+ "latitude": 35.839669,
+ "longitude": 139.215214,
+ "polygon": [
+ [
+ 139.21510410989012,
+ 35.83975909009009
+ ],
+ [
+ 139.2153238901099,
+ 35.83975909009009
+ ],
+ [
+ 139.2153238901099,
+ 35.83957890990991
+ ],
+ [
+ 139.21510410989012,
+ 35.83957890990991
+ ],
+ [
+ 139.21510410989012,
+ 35.83975909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takatto.861.2",
+ "name": "高土戸",
+ "latitude": 35.839711,
+ "longitude": 139.215226,
+ "polygon": [
+ [
+ 139.21511610989012,
+ 35.83980109009009
+ ],
+ [
+ 139.21533589010988,
+ 35.83980109009009
+ ],
+ [
+ 139.21533589010988,
+ 35.83962090990991
+ ],
+ [
+ 139.21511610989012,
+ 35.83962090990991
+ ],
+ [
+ 139.21511610989012,
+ 35.83980109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaKitamachi.863.1",
+ "name": "高輪北町",
+ "latitude": 35.63445,
+ "longitude": 139.738072,
+ "polygon": [
+ [
+ 139.7379621098901,
+ 35.63454009009009
+ ],
+ [
+ 139.73818189010987,
+ 35.63454009009009
+ ],
+ [
+ 139.73818189010987,
+ 35.63435990990991
+ ],
+ [
+ 139.7379621098901,
+ 35.63435990990991
+ ],
+ [
+ 139.7379621098901,
+ 35.63454009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaKitamachi.863.2",
+ "name": "高輪北町",
+ "latitude": 35.6346,
+ "longitude": 139.73847,
+ "polygon": [
+ [
+ 139.73836010989012,
+ 35.63469009009009
+ ],
+ [
+ 139.7385798901099,
+ 35.63469009009009
+ ],
+ [
+ 139.7385798901099,
+ 35.63450990990991
+ ],
+ [
+ 139.73836010989012,
+ 35.63450990990991
+ ],
+ [
+ 139.73836010989012,
+ 35.63469009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaKeisatsusho.864.1",
+ "name": "高輪警察署前",
+ "latitude": 35.634995,
+ "longitude": 139.732953,
+ "polygon": [
+ [
+ 139.73284310989013,
+ 35.635085090090094
+ ],
+ [
+ 139.7330628901099,
+ 35.635085090090094
+ ],
+ [
+ 139.7330628901099,
+ 35.63490490990991
+ ],
+ [
+ 139.73284310989013,
+ 35.63490490990991
+ ],
+ [
+ 139.73284310989013,
+ 35.635085090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaKeisatsusho.864.2",
+ "name": "高輪警察署前",
+ "latitude": 35.635281,
+ "longitude": 139.732926,
+ "polygon": [
+ [
+ 139.7328161098901,
+ 35.63537109009009
+ ],
+ [
+ 139.73303589010987,
+ 35.63537109009009
+ ],
+ [
+ 139.73303589010987,
+ 35.63519090990991
+ ],
+ [
+ 139.7328161098901,
+ 35.63519090990991
+ ],
+ [
+ 139.7328161098901,
+ 35.63537109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawadaiStation.865.1",
+ "name": "高輪台駅前",
+ "latitude": 35.631272,
+ "longitude": 139.729468,
+ "polygon": [
+ [
+ 139.72935810989011,
+ 35.63136209009009
+ ],
+ [
+ 139.72957789010988,
+ 35.63136209009009
+ ],
+ [
+ 139.72957789010988,
+ 35.63118190990991
+ ],
+ [
+ 139.72935810989011,
+ 35.63118190990991
+ ],
+ [
+ 139.72935810989011,
+ 35.63136209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawadaiStation.865.2",
+ "name": "高輪台駅前",
+ "latitude": 35.631584,
+ "longitude": 139.730456,
+ "polygon": [
+ [
+ 139.73034610989012,
+ 35.63167409009009
+ ],
+ [
+ 139.7305658901099,
+ 35.63167409009009
+ ],
+ [
+ 139.7305658901099,
+ 35.631493909909906
+ ],
+ [
+ 139.73034610989012,
+ 35.631493909909906
+ ],
+ [
+ 139.73034610989012,
+ 35.63167409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaItchome.866.1",
+ "name": "高輪一丁目",
+ "latitude": 35.641477,
+ "longitude": 139.737417,
+ "polygon": [
+ [
+ 139.7373071098901,
+ 35.64156709009009
+ ],
+ [
+ 139.73752689010988,
+ 35.64156709009009
+ ],
+ [
+ 139.73752689010988,
+ 35.64138690990991
+ ],
+ [
+ 139.7373071098901,
+ 35.64138690990991
+ ],
+ [
+ 139.7373071098901,
+ 35.64156709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaNichome.867.2",
+ "name": "高輪二丁目",
+ "latitude": 35.638785,
+ "longitude": 139.734879,
+ "polygon": [
+ [
+ 139.73476910989012,
+ 35.63887509009009
+ ],
+ [
+ 139.7349888901099,
+ 35.63887509009009
+ ],
+ [
+ 139.7349888901099,
+ 35.63869490990991
+ ],
+ [
+ 139.73476910989012,
+ 35.63869490990991
+ ],
+ [
+ 139.73476910989012,
+ 35.63887509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaSanchome.868.1",
+ "name": "高輪三丁目",
+ "latitude": 35.633272,
+ "longitude": 139.732529,
+ "polygon": [
+ [
+ 139.73241910989012,
+ 35.63336209009009
+ ],
+ [
+ 139.73263889010988,
+ 35.63336209009009
+ ],
+ [
+ 139.73263889010988,
+ 35.63318190990991
+ ],
+ [
+ 139.73241910989012,
+ 35.63318190990991
+ ],
+ [
+ 139.73241910989012,
+ 35.63336209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakanawaSanchome.868.2",
+ "name": "高輪三丁目",
+ "latitude": 35.633856,
+ "longitude": 139.732611,
+ "polygon": [
+ [
+ 139.7325011098901,
+ 35.63394609009009
+ ],
+ [
+ 139.73272089010987,
+ 35.63394609009009
+ ],
+ [
+ 139.73272089010987,
+ 35.63376590990991
+ ],
+ [
+ 139.7325011098901,
+ 35.63376590990991
+ ],
+ [
+ 139.7325011098901,
+ 35.63394609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GrandPrinceHotelShinTakanawa.869.3",
+ "name": "グランドプリンスホテル新高輪前",
+ "latitude": 35.629937,
+ "longitude": 139.732327,
+ "polygon": [
+ [
+ 139.73221710989012,
+ 35.63002709009009
+ ],
+ [
+ 139.73243689010988,
+ 35.63002709009009
+ ],
+ [
+ 139.73243689010988,
+ 35.62984690990991
+ ],
+ [
+ 139.73221710989012,
+ 35.62984690990991
+ ],
+ [
+ 139.73221710989012,
+ 35.63002709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GrandPrinceHotelShinTakanawa.869.4",
+ "name": "グランドプリンスホテル新高輪前",
+ "latitude": 35.630268,
+ "longitude": 139.732432,
+ "polygon": [
+ [
+ 139.7323221098901,
+ 35.63035809009009
+ ],
+ [
+ 139.73254189010987,
+ 35.63035809009009
+ ],
+ [
+ 139.73254189010987,
+ 35.63017790990991
+ ],
+ [
+ 139.7323221098901,
+ 35.63017790990991
+ ],
+ [
+ 139.7323221098901,
+ 35.63035809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takahamabashi.870.1",
+ "name": "高浜橋",
+ "latitude": 35.637625,
+ "longitude": 139.746716,
+ "polygon": [
+ [
+ 139.7466061098901,
+ 35.63771509009009
+ ],
+ [
+ 139.74682589010987,
+ 35.63771509009009
+ ],
+ [
+ 139.74682589010987,
+ 35.63753490990991
+ ],
+ [
+ 139.7466061098901,
+ 35.63753490990991
+ ],
+ [
+ 139.7466061098901,
+ 35.63771509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takahamabashi.870.2",
+ "name": "高浜橋",
+ "latitude": 35.638317,
+ "longitude": 139.747113,
+ "polygon": [
+ [
+ 139.74700310989013,
+ 35.63840709009009
+ ],
+ [
+ 139.7472228901099,
+ 35.63840709009009
+ ],
+ [
+ 139.7472228901099,
+ 35.63822690990991
+ ],
+ [
+ 139.74700310989013,
+ 35.63822690990991
+ ],
+ [
+ 139.74700310989013,
+ 35.63840709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakenotsukaStation.881.1",
+ "name": "竹の塚駅前",
+ "latitude": 35.79442,
+ "longitude": 139.791228,
+ "polygon": [
+ [
+ 139.7911181098901,
+ 35.79451009009009
+ ],
+ [
+ 139.79133789010987,
+ 35.79451009009009
+ ],
+ [
+ 139.79133789010987,
+ 35.79432990990991
+ ],
+ [
+ 139.7911181098901,
+ 35.79432990990991
+ ],
+ [
+ 139.7911181098901,
+ 35.79451009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takabashi.871.1",
+ "name": "高橋",
+ "latitude": 35.68513,
+ "longitude": 139.798574,
+ "polygon": [
+ [
+ 139.79846410989012,
+ 35.68522009009009
+ ],
+ [
+ 139.79868389010988,
+ 35.68522009009009
+ ],
+ [
+ 139.79868389010988,
+ 35.68503990990991
+ ],
+ [
+ 139.79846410989012,
+ 35.68503990990991
+ ],
+ [
+ 139.79846410989012,
+ 35.68522009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takabashi.871.2",
+ "name": "高橋",
+ "latitude": 35.6859,
+ "longitude": 139.798273,
+ "polygon": [
+ [
+ 139.7981631098901,
+ 35.68599009009009
+ ],
+ [
+ 139.79838289010988,
+ 35.68599009009009
+ ],
+ [
+ 139.79838289010988,
+ 35.685809909909906
+ ],
+ [
+ 139.7981631098901,
+ 35.685809909909906
+ ],
+ [
+ 139.7981631098901,
+ 35.68599009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takinari.875.1",
+ "name": "滝成",
+ "latitude": 35.83152,
+ "longitude": 139.230244,
+ "polygon": [
+ [
+ 139.23013410989012,
+ 35.83161009009009
+ ],
+ [
+ 139.23035389010988,
+ 35.83161009009009
+ ],
+ [
+ 139.23035389010988,
+ 35.83142990990991
+ ],
+ [
+ 139.23013410989012,
+ 35.83142990990991
+ ],
+ [
+ 139.23013410989012,
+ 35.83161009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takinari.875.2",
+ "name": "滝成",
+ "latitude": 35.831769,
+ "longitude": 139.230288,
+ "polygon": [
+ [
+ 139.23017810989012,
+ 35.83185909009009
+ ],
+ [
+ 139.23039789010988,
+ 35.83185909009009
+ ],
+ [
+ 139.23039789010988,
+ 35.83167890990991
+ ],
+ [
+ 139.23017810989012,
+ 35.83167890990991
+ ],
+ [
+ 139.23017810989012,
+ 35.83185909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takinoue.876.1",
+ "name": "滝の上",
+ "latitude": 35.787582,
+ "longitude": 139.25442,
+ "polygon": [
+ [
+ 139.25431010989013,
+ 35.78767209009009
+ ],
+ [
+ 139.2545298901099,
+ 35.78767209009009
+ ],
+ [
+ 139.2545298901099,
+ 35.78749190990991
+ ],
+ [
+ 139.25431010989013,
+ 35.78749190990991
+ ],
+ [
+ 139.25431010989013,
+ 35.78767209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiStation.891.2",
+ "name": "辰巳駅前",
+ "latitude": 35.646796,
+ "longitude": 139.812234,
+ "polygon": [
+ [
+ 139.8121241098901,
+ 35.64688609009009
+ ],
+ [
+ 139.81234389010987,
+ 35.64688609009009
+ ],
+ [
+ 139.81234389010987,
+ 35.64670590990991
+ ],
+ [
+ 139.8121241098901,
+ 35.64670590990991
+ ],
+ [
+ 139.8121241098901,
+ 35.64688609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Takinoue.876.2",
+ "name": "滝の上",
+ "latitude": 35.787518,
+ "longitude": 139.254224,
+ "polygon": [
+ [
+ 139.2541141098901,
+ 35.78760809009009
+ ],
+ [
+ 139.25433389010988,
+ 35.78760809009009
+ ],
+ [
+ 139.25433389010988,
+ 35.78742790990991
+ ],
+ [
+ 139.2541141098901,
+ 35.78742790990991
+ ],
+ [
+ 139.2541141098901,
+ 35.78760809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakinogawaNichome.878.1",
+ "name": "滝野川二丁目",
+ "latitude": 35.747685,
+ "longitude": 139.733111,
+ "polygon": [
+ [
+ 139.73300110989013,
+ 35.74777509009009
+ ],
+ [
+ 139.7332208901099,
+ 35.74777509009009
+ ],
+ [
+ 139.7332208901099,
+ 35.74759490990991
+ ],
+ [
+ 139.73300110989013,
+ 35.74759490990991
+ ],
+ [
+ 139.73300110989013,
+ 35.74777509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakinogawaNichome.878.2",
+ "name": "滝野川二丁目",
+ "latitude": 35.748111,
+ "longitude": 139.733119,
+ "polygon": [
+ [
+ 139.7330091098901,
+ 35.74820109009009
+ ],
+ [
+ 139.73322889010987,
+ 35.74820109009009
+ ],
+ [
+ 139.73322889010987,
+ 35.74802090990991
+ ],
+ [
+ 139.7330091098901,
+ 35.74802090990991
+ ],
+ [
+ 139.7330091098901,
+ 35.74820109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakinogawaSanchome.879.1",
+ "name": "滝野川三丁目",
+ "latitude": 35.746153,
+ "longitude": 139.730856,
+ "polygon": [
+ [
+ 139.7307461098901,
+ 35.74624309009009
+ ],
+ [
+ 139.73096589010987,
+ 35.74624309009009
+ ],
+ [
+ 139.73096589010987,
+ 35.74606290990991
+ ],
+ [
+ 139.7307461098901,
+ 35.74606290990991
+ ],
+ [
+ 139.7307461098901,
+ 35.74624309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakinogawaSanchome.879.2",
+ "name": "滝野川三丁目",
+ "latitude": 35.746351,
+ "longitude": 139.730783,
+ "polygon": [
+ [
+ 139.73067310989012,
+ 35.74644109009009
+ ],
+ [
+ 139.73089289010989,
+ 35.74644109009009
+ ],
+ [
+ 139.73089289010989,
+ 35.74626090990991
+ ],
+ [
+ 139.73067310989012,
+ 35.74626090990991
+ ],
+ [
+ 139.73067310989012,
+ 35.74644109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakeshibaSambashiIriguchi.880.1",
+ "name": "竹芝桟橋入口",
+ "latitude": 35.6548,
+ "longitude": 139.761746,
+ "polygon": [
+ [
+ 139.7616361098901,
+ 35.65489009009009
+ ],
+ [
+ 139.76185589010987,
+ 35.65489009009009
+ ],
+ [
+ 139.76185589010987,
+ 35.65470990990991
+ ],
+ [
+ 139.7616361098901,
+ 35.65470990990991
+ ],
+ [
+ 139.7616361098901,
+ 35.65489009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakenotsukaStation.881.6",
+ "name": "竹の塚駅前",
+ "latitude": 35.79355,
+ "longitude": 139.792446,
+ "polygon": [
+ [
+ 139.79233610989013,
+ 35.79364009009009
+ ],
+ [
+ 139.7925558901099,
+ 35.79364009009009
+ ],
+ [
+ 139.7925558901099,
+ 35.79345990990991
+ ],
+ [
+ 139.79233610989013,
+ 35.79345990990991
+ ],
+ [
+ 139.79233610989013,
+ 35.79364009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakenotsukaStation.881.7",
+ "name": "竹の塚駅前",
+ "latitude": 35.793351,
+ "longitude": 139.792867,
+ "polygon": [
+ [
+ 139.79275710989012,
+ 35.79344109009009
+ ],
+ [
+ 139.79297689010988,
+ 35.79344109009009
+ ],
+ [
+ 139.79297689010988,
+ 35.79326090990991
+ ],
+ [
+ 139.79275710989012,
+ 35.79326090990991
+ ],
+ [
+ 139.79275710989012,
+ 35.79344109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TachibanaDori.885.1",
+ "name": "橘通り",
+ "latitude": 35.715529,
+ "longitude": 139.824839,
+ "polygon": [
+ [
+ 139.82472910989011,
+ 35.71561909009009
+ ],
+ [
+ 139.82494889010988,
+ 35.71561909009009
+ ],
+ [
+ 139.82494889010988,
+ 35.715438909909906
+ ],
+ [
+ 139.82472910989011,
+ 35.715438909909906
+ ],
+ [
+ 139.82472910989011,
+ 35.71561909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TachibanaDori.885.2",
+ "name": "橘通り",
+ "latitude": 35.715776,
+ "longitude": 139.824833,
+ "polygon": [
+ [
+ 139.82472310989013,
+ 35.71586609009009
+ ],
+ [
+ 139.8249428901099,
+ 35.71586609009009
+ ],
+ [
+ 139.8249428901099,
+ 35.71568590990991
+ ],
+ [
+ 139.82472310989013,
+ 35.71568590990991
+ ],
+ [
+ 139.82472310989013,
+ 35.71586609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsuokaMon.886.1",
+ "name": "竜岡門",
+ "latitude": 35.708237,
+ "longitude": 139.763666,
+ "polygon": [
+ [
+ 139.76355610989012,
+ 35.70832709009009
+ ],
+ [
+ 139.76377589010988,
+ 35.70832709009009
+ ],
+ [
+ 139.76377589010988,
+ 35.70814690990991
+ ],
+ [
+ 139.76355610989012,
+ 35.70814690990991
+ ],
+ [
+ 139.76355610989012,
+ 35.70832709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiStation.891.3",
+ "name": "辰巳駅前",
+ "latitude": 35.647056,
+ "longitude": 139.812564,
+ "polygon": [
+ [
+ 139.81245410989013,
+ 35.64714609009009
+ ],
+ [
+ 139.8126738901099,
+ 35.64714609009009
+ ],
+ [
+ 139.8126738901099,
+ 35.64696590990991
+ ],
+ [
+ 139.81245410989013,
+ 35.64696590990991
+ ],
+ [
+ 139.81245410989013,
+ 35.64714609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsuokaMon.886.2",
+ "name": "竜岡門",
+ "latitude": 35.708293,
+ "longitude": 139.7638,
+ "polygon": [
+ [
+ 139.76369010989012,
+ 35.70838309009009
+ ],
+ [
+ 139.7639098901099,
+ 35.70838309009009
+ ],
+ [
+ 139.7639098901099,
+ 35.70820290990991
+ ],
+ [
+ 139.76369010989012,
+ 35.70820290990991
+ ],
+ [
+ 139.76369010989012,
+ 35.70838309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiDanchi.887.1",
+ "name": "辰巳団地",
+ "latitude": 35.648916,
+ "longitude": 139.811925,
+ "polygon": [
+ [
+ 139.81181510989012,
+ 35.64900609009009
+ ],
+ [
+ 139.81203489010989,
+ 35.64900609009009
+ ],
+ [
+ 139.81203489010989,
+ 35.64882590990991
+ ],
+ [
+ 139.81181510989012,
+ 35.64882590990991
+ ],
+ [
+ 139.81181510989012,
+ 35.64900609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiDanchi.887.2",
+ "name": "辰巳団地",
+ "latitude": 35.648944,
+ "longitude": 139.811935,
+ "polygon": [
+ [
+ 139.81182510989012,
+ 35.64903409009009
+ ],
+ [
+ 139.8120448901099,
+ 35.64903409009009
+ ],
+ [
+ 139.8120448901099,
+ 35.64885390990991
+ ],
+ [
+ 139.81182510989012,
+ 35.64885390990991
+ ],
+ [
+ 139.81182510989012,
+ 35.64903409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiDanchi.887.3",
+ "name": "辰巳団地",
+ "latitude": 35.648087,
+ "longitude": 139.812404,
+ "polygon": [
+ [
+ 139.8122941098901,
+ 35.64817709009009
+ ],
+ [
+ 139.81251389010987,
+ 35.64817709009009
+ ],
+ [
+ 139.81251389010987,
+ 35.64799690990991
+ ],
+ [
+ 139.8122941098901,
+ 35.64799690990991
+ ],
+ [
+ 139.8122941098901,
+ 35.64817709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamaDanchi.905.1",
+ "name": "多摩団地前",
+ "latitude": 35.802376,
+ "longitude": 139.265233,
+ "polygon": [
+ [
+ 139.2651231098901,
+ 35.80246609009009
+ ],
+ [
+ 139.26534289010988,
+ 35.80246609009009
+ ],
+ [
+ 139.26534289010988,
+ 35.80228590990991
+ ],
+ [
+ 139.2651231098901,
+ 35.80228590990991
+ ],
+ [
+ 139.2651231098901,
+ 35.80246609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiDanchi.887.4",
+ "name": "辰巳団地",
+ "latitude": 35.64895,
+ "longitude": 139.811917,
+ "polygon": [
+ [
+ 139.8118071098901,
+ 35.64904009009009
+ ],
+ [
+ 139.81202689010988,
+ 35.64904009009009
+ ],
+ [
+ 139.81202689010988,
+ 35.64885990990991
+ ],
+ [
+ 139.8118071098901,
+ 35.64885990990991
+ ],
+ [
+ 139.8118071098901,
+ 35.64904009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tatsumibashi.888.1",
+ "name": "辰巳橋",
+ "latitude": 35.650136,
+ "longitude": 139.807307,
+ "polygon": [
+ [
+ 139.80719710989013,
+ 35.650226090090094
+ ],
+ [
+ 139.8074168901099,
+ 35.650226090090094
+ ],
+ [
+ 139.8074168901099,
+ 35.65004590990991
+ ],
+ [
+ 139.80719710989013,
+ 35.65004590990991
+ ],
+ [
+ 139.80719710989013,
+ 35.650226090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tatsumibashi.888.2",
+ "name": "辰巳橋",
+ "latitude": 35.650367,
+ "longitude": 139.807582,
+ "polygon": [
+ [
+ 139.8074721098901,
+ 35.65045709009009
+ ],
+ [
+ 139.80769189010988,
+ 35.65045709009009
+ ],
+ [
+ 139.80769189010988,
+ 35.65027690990991
+ ],
+ [
+ 139.8074721098901,
+ 35.65027690990991
+ ],
+ [
+ 139.8074721098901,
+ 35.65045709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tatsumibashi.889.1",
+ "name": "巽橋",
+ "latitude": 35.720352,
+ "longitude": 139.858683,
+ "polygon": [
+ [
+ 139.85857310989013,
+ 35.72044209009009
+ ],
+ [
+ 139.8587928901099,
+ 35.72044209009009
+ ],
+ [
+ 139.8587928901099,
+ 35.72026190990991
+ ],
+ [
+ 139.85857310989013,
+ 35.72026190990991
+ ],
+ [
+ 139.85857310989013,
+ 35.72044209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tatsumibashi.889.2",
+ "name": "巽橋",
+ "latitude": 35.720214,
+ "longitude": 139.858164,
+ "polygon": [
+ [
+ 139.8580541098901,
+ 35.72030409009009
+ ],
+ [
+ 139.85827389010987,
+ 35.72030409009009
+ ],
+ [
+ 139.85827389010987,
+ 35.72012390990991
+ ],
+ [
+ 139.8580541098901,
+ 35.72012390990991
+ ],
+ [
+ 139.8580541098901,
+ 35.72030409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiStation.891.4",
+ "name": "辰巳駅前",
+ "latitude": 35.646904,
+ "longitude": 139.812126,
+ "polygon": [
+ [
+ 139.81201610989012,
+ 35.64699409009009
+ ],
+ [
+ 139.8122358901099,
+ 35.64699409009009
+ ],
+ [
+ 139.8122358901099,
+ 35.64681390990991
+ ],
+ [
+ 139.81201610989012,
+ 35.64681390990991
+ ],
+ [
+ 139.81201610989012,
+ 35.64699409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiItchome.890.1",
+ "name": "辰巳一丁目",
+ "latitude": 35.650615,
+ "longitude": 139.810137,
+ "polygon": [
+ [
+ 139.81002710989011,
+ 35.65070509009009
+ ],
+ [
+ 139.81024689010988,
+ 35.65070509009009
+ ],
+ [
+ 139.81024689010988,
+ 35.65052490990991
+ ],
+ [
+ 139.81002710989011,
+ 35.65052490990991
+ ],
+ [
+ 139.81002710989011,
+ 35.65070509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiItchome.890.2",
+ "name": "辰巳一丁目",
+ "latitude": 35.651121,
+ "longitude": 139.811617,
+ "polygon": [
+ [
+ 139.81150710989013,
+ 35.651211090090094
+ ],
+ [
+ 139.8117268901099,
+ 35.651211090090094
+ ],
+ [
+ 139.8117268901099,
+ 35.65103090990991
+ ],
+ [
+ 139.81150710989013,
+ 35.65103090990991
+ ],
+ [
+ 139.81150710989013,
+ 35.651211090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiItchome.890.3",
+ "name": "辰巳一丁目",
+ "latitude": 35.65041,
+ "longitude": 139.810309,
+ "polygon": [
+ [
+ 139.8101991098901,
+ 35.65050009009009
+ ],
+ [
+ 139.81041889010987,
+ 35.65050009009009
+ ],
+ [
+ 139.81041889010987,
+ 35.65031990990991
+ ],
+ [
+ 139.8101991098901,
+ 35.65031990990991
+ ],
+ [
+ 139.8101991098901,
+ 35.65050009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiItchome.890.4",
+ "name": "辰巳一丁目",
+ "latitude": 35.65145,
+ "longitude": 139.811923,
+ "polygon": [
+ [
+ 139.81181310989012,
+ 35.65154009009009
+ ],
+ [
+ 139.8120328901099,
+ 35.65154009009009
+ ],
+ [
+ 139.8120328901099,
+ 35.65135990990991
+ ],
+ [
+ 139.81181310989012,
+ 35.65135990990991
+ ],
+ [
+ 139.81181310989012,
+ 35.65154009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiStation.891.1",
+ "name": "辰巳駅前",
+ "latitude": 35.64691,
+ "longitude": 139.812221,
+ "polygon": [
+ [
+ 139.8121111098901,
+ 35.64700009009009
+ ],
+ [
+ 139.81233089010988,
+ 35.64700009009009
+ ],
+ [
+ 139.81233089010988,
+ 35.64681990990991
+ ],
+ [
+ 139.8121111098901,
+ 35.64681990990991
+ ],
+ [
+ 139.8121111098901,
+ 35.64700009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tatekawa.892.1",
+ "name": "立川",
+ "latitude": 35.69161,
+ "longitude": 139.805645,
+ "polygon": [
+ [
+ 139.80553510989012,
+ 35.69170009009009
+ ],
+ [
+ 139.80575489010988,
+ 35.69170009009009
+ ],
+ [
+ 139.80575489010988,
+ 35.69151990990991
+ ],
+ [
+ 139.80553510989012,
+ 35.69151990990991
+ ],
+ [
+ 139.80553510989012,
+ 35.69170009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tatekawa.892.2",
+ "name": "立川",
+ "latitude": 35.691527,
+ "longitude": 139.805884,
+ "polygon": [
+ [
+ 139.8057741098901,
+ 35.69161709009009
+ ],
+ [
+ 139.80599389010987,
+ 35.69161709009009
+ ],
+ [
+ 139.80599389010987,
+ 35.69143690990991
+ ],
+ [
+ 139.8057741098901,
+ 35.69143690990991
+ ],
+ [
+ 139.8057741098901,
+ 35.69161709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatekawaOhashiKitazume.893.1",
+ "name": "竪川大橋北詰",
+ "latitude": 35.695096,
+ "longitude": 139.834082,
+ "polygon": [
+ [
+ 139.8339721098901,
+ 35.69518609009009
+ ],
+ [
+ 139.83419189010988,
+ 35.69518609009009
+ ],
+ [
+ 139.83419189010988,
+ 35.69500590990991
+ ],
+ [
+ 139.8339721098901,
+ 35.69500590990991
+ ],
+ [
+ 139.8339721098901,
+ 35.69518609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatekawaOhashiKitazume.893.2",
+ "name": "竪川大橋北詰",
+ "latitude": 35.695643,
+ "longitude": 139.834262,
+ "polygon": [
+ [
+ 139.8341521098901,
+ 35.69573309009009
+ ],
+ [
+ 139.83437189010988,
+ 35.69573309009009
+ ],
+ [
+ 139.83437189010988,
+ 35.69555290990991
+ ],
+ [
+ 139.8341521098901,
+ 35.69555290990991
+ ],
+ [
+ 139.8341521098901,
+ 35.69573309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataStation.898.1",
+ "name": "田端駅前",
+ "latitude": 35.738217,
+ "longitude": 139.760209,
+ "polygon": [
+ [
+ 139.76009910989012,
+ 35.73830709009009
+ ],
+ [
+ 139.7603188901099,
+ 35.73830709009009
+ ],
+ [
+ 139.7603188901099,
+ 35.73812690990991
+ ],
+ [
+ 139.76009910989012,
+ 35.73812690990991
+ ],
+ [
+ 139.76009910989012,
+ 35.73830709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataStation.898.2",
+ "name": "田端駅前",
+ "latitude": 35.738754,
+ "longitude": 139.76071,
+ "polygon": [
+ [
+ 139.7606001098901,
+ 35.73884409009009
+ ],
+ [
+ 139.76081989010987,
+ 35.73884409009009
+ ],
+ [
+ 139.76081989010987,
+ 35.73866390990991
+ ],
+ [
+ 139.7606001098901,
+ 35.73866390990991
+ ],
+ [
+ 139.7606001098901,
+ 35.73884409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataStation.898.3",
+ "name": "田端駅前",
+ "latitude": 35.738643,
+ "longitude": 139.760534,
+ "polygon": [
+ [
+ 139.76042410989012,
+ 35.73873309009009
+ ],
+ [
+ 139.7606438901099,
+ 35.73873309009009
+ ],
+ [
+ 139.7606438901099,
+ 35.73855290990991
+ ],
+ [
+ 139.76042410989012,
+ 35.73855290990991
+ ],
+ [
+ 139.76042410989012,
+ 35.73873309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachi.899.1",
+ "name": "田端新町",
+ "latitude": 35.738825,
+ "longitude": 139.765702,
+ "polygon": [
+ [
+ 139.76559210989012,
+ 35.73891509009009
+ ],
+ [
+ 139.7658118901099,
+ 35.73891509009009
+ ],
+ [
+ 139.7658118901099,
+ 35.73873490990991
+ ],
+ [
+ 139.76559210989012,
+ 35.73873490990991
+ ],
+ [
+ 139.76559210989012,
+ 35.73891509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachi.899.2",
+ "name": "田端新町",
+ "latitude": 35.739115,
+ "longitude": 139.766351,
+ "polygon": [
+ [
+ 139.7662411098901,
+ 35.73920509009009
+ ],
+ [
+ 139.76646089010987,
+ 35.73920509009009
+ ],
+ [
+ 139.76646089010987,
+ 35.73902490990991
+ ],
+ [
+ 139.7662411098901,
+ 35.73902490990991
+ ],
+ [
+ 139.7662411098901,
+ 35.73920509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiItchome.900.1",
+ "name": "田端新町一丁目",
+ "latitude": 35.739046,
+ "longitude": 139.767812,
+ "polygon": [
+ [
+ 139.7677021098901,
+ 35.73913609009009
+ ],
+ [
+ 139.76792189010987,
+ 35.73913609009009
+ ],
+ [
+ 139.76792189010987,
+ 35.73895590990991
+ ],
+ [
+ 139.7677021098901,
+ 35.73895590990991
+ ],
+ [
+ 139.7677021098901,
+ 35.73913609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiItchome.900.2",
+ "name": "田端新町一丁目",
+ "latitude": 35.738679,
+ "longitude": 139.768743,
+ "polygon": [
+ [
+ 139.76863310989012,
+ 35.73876909009009
+ ],
+ [
+ 139.76885289010988,
+ 35.73876909009009
+ ],
+ [
+ 139.76885289010988,
+ 35.73858890990991
+ ],
+ [
+ 139.76863310989012,
+ 35.73858890990991
+ ],
+ [
+ 139.76863310989012,
+ 35.73876909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiItchome.900.3",
+ "name": "田端新町一丁目",
+ "latitude": 35.73882,
+ "longitude": 139.769462,
+ "polygon": [
+ [
+ 139.76935210989012,
+ 35.73891009009009
+ ],
+ [
+ 139.7695718901099,
+ 35.73891009009009
+ ],
+ [
+ 139.7695718901099,
+ 35.73872990990991
+ ],
+ [
+ 139.76935210989012,
+ 35.73872990990991
+ ],
+ [
+ 139.76935210989012,
+ 35.73891009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiItchome.900.4",
+ "name": "田端新町一丁目",
+ "latitude": 35.739659,
+ "longitude": 139.768593,
+ "polygon": [
+ [
+ 139.76848310989013,
+ 35.73974909009009
+ ],
+ [
+ 139.7687028901099,
+ 35.73974909009009
+ ],
+ [
+ 139.7687028901099,
+ 35.73956890990991
+ ],
+ [
+ 139.76848310989013,
+ 35.73956890990991
+ ],
+ [
+ 139.76848310989013,
+ 35.73974909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiItchome.900.5",
+ "name": "田端新町一丁目",
+ "latitude": 35.739634,
+ "longitude": 139.767782,
+ "polygon": [
+ [
+ 139.76767210989013,
+ 35.73972409009009
+ ],
+ [
+ 139.7678918901099,
+ 35.73972409009009
+ ],
+ [
+ 139.7678918901099,
+ 35.73954390990991
+ ],
+ [
+ 139.76767210989013,
+ 35.73954390990991
+ ],
+ [
+ 139.76767210989013,
+ 35.73972409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamaDanchi.905.2",
+ "name": "多摩団地前",
+ "latitude": 35.802106,
+ "longitude": 139.265247,
+ "polygon": [
+ [
+ 139.2651371098901,
+ 35.80219609009009
+ ],
+ [
+ 139.26535689010987,
+ 35.80219609009009
+ ],
+ [
+ 139.26535689010987,
+ 35.80201590990991
+ ],
+ [
+ 139.2651371098901,
+ 35.80201590990991
+ ],
+ [
+ 139.2651371098901,
+ 35.80219609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiNichome.901.1",
+ "name": "田端新町二丁目",
+ "latitude": 35.740781,
+ "longitude": 139.76617,
+ "polygon": [
+ [
+ 139.7660601098901,
+ 35.74087109009009
+ ],
+ [
+ 139.76627989010987,
+ 35.74087109009009
+ ],
+ [
+ 139.76627989010987,
+ 35.74069090990991
+ ],
+ [
+ 139.7660601098901,
+ 35.74069090990991
+ ],
+ [
+ 139.7660601098901,
+ 35.74087109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiNichome.901.2",
+ "name": "田端新町二丁目",
+ "latitude": 35.741562,
+ "longitude": 139.764441,
+ "polygon": [
+ [
+ 139.76433110989012,
+ 35.74165209009009
+ ],
+ [
+ 139.7645508901099,
+ 35.74165209009009
+ ],
+ [
+ 139.7645508901099,
+ 35.74147190990991
+ ],
+ [
+ 139.76433110989012,
+ 35.74147190990991
+ ],
+ [
+ 139.76433110989012,
+ 35.74165209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamachiStation.907.1",
+ "name": "田町駅前",
+ "latitude": 35.646688,
+ "longitude": 139.746527,
+ "polygon": [
+ [
+ 139.7464171098901,
+ 35.64677809009009
+ ],
+ [
+ 139.74663689010987,
+ 35.64677809009009
+ ],
+ [
+ 139.74663689010987,
+ 35.64659790990991
+ ],
+ [
+ 139.7464171098901,
+ 35.64659790990991
+ ],
+ [
+ 139.7464171098901,
+ 35.64677809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiSanchome.902.1",
+ "name": "田端新町三丁目",
+ "latitude": 35.742998,
+ "longitude": 139.76201,
+ "polygon": [
+ [
+ 139.76190010989012,
+ 35.74308809009009
+ ],
+ [
+ 139.7621198901099,
+ 35.74308809009009
+ ],
+ [
+ 139.7621198901099,
+ 35.74290790990991
+ ],
+ [
+ 139.76190010989012,
+ 35.74290790990991
+ ],
+ [
+ 139.76190010989012,
+ 35.74308809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiSanchome.902.2",
+ "name": "田端新町三丁目",
+ "latitude": 35.743375,
+ "longitude": 139.762835,
+ "polygon": [
+ [
+ 139.7627251098901,
+ 35.74346509009009
+ ],
+ [
+ 139.76294489010988,
+ 35.74346509009009
+ ],
+ [
+ 139.76294489010988,
+ 35.74328490990991
+ ],
+ [
+ 139.7627251098901,
+ 35.74328490990991
+ ],
+ [
+ 139.7627251098901,
+ 35.74346509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiSanchome.902.3",
+ "name": "田端新町三丁目",
+ "latitude": 35.743391,
+ "longitude": 139.762979,
+ "polygon": [
+ [
+ 139.76286910989012,
+ 35.74348109009009
+ ],
+ [
+ 139.76308889010988,
+ 35.74348109009009
+ ],
+ [
+ 139.76308889010988,
+ 35.74330090990991
+ ],
+ [
+ 139.76286910989012,
+ 35.74330090990991
+ ],
+ [
+ 139.76286910989012,
+ 35.74348109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TabataShimmachiSanchome.902.4",
+ "name": "田端新町三丁目",
+ "latitude": 35.742549,
+ "longitude": 139.763166,
+ "polygon": [
+ [
+ 139.76305610989013,
+ 35.74263909009009
+ ],
+ [
+ 139.7632758901099,
+ 35.74263909009009
+ ],
+ [
+ 139.7632758901099,
+ 35.74245890990991
+ ],
+ [
+ 139.76305610989013,
+ 35.74245890990991
+ ],
+ [
+ 139.76305610989013,
+ 35.74263909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamachiStationHigashiguchi.906.7",
+ "name": "田町駅東口",
+ "latitude": 35.644568,
+ "longitude": 139.748199,
+ "polygon": [
+ [
+ 139.74808910989012,
+ 35.64465809009009
+ ],
+ [
+ 139.74830889010988,
+ 35.64465809009009
+ ],
+ [
+ 139.74830889010988,
+ 35.64447790990991
+ ],
+ [
+ 139.74808910989012,
+ 35.64447790990991
+ ],
+ [
+ 139.74808910989012,
+ 35.64465809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamachiStationHigashiguchi.906.8",
+ "name": "田町駅東口",
+ "latitude": 35.644833,
+ "longitude": 139.748023,
+ "polygon": [
+ [
+ 139.7479131098901,
+ 35.64492309009009
+ ],
+ [
+ 139.74813289010987,
+ 35.64492309009009
+ ],
+ [
+ 139.74813289010987,
+ 35.64474290990991
+ ],
+ [
+ 139.7479131098901,
+ 35.64474290990991
+ ],
+ [
+ 139.7479131098901,
+ 35.64492309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tameike.909.1",
+ "name": "溜池",
+ "latitude": 35.670135,
+ "longitude": 139.742279,
+ "polygon": [
+ [
+ 139.7421691098901,
+ 35.67022509009009
+ ],
+ [
+ 139.74238889010988,
+ 35.67022509009009
+ ],
+ [
+ 139.74238889010988,
+ 35.67004490990991
+ ],
+ [
+ 139.7421691098901,
+ 35.67004490990991
+ ],
+ [
+ 139.7421691098901,
+ 35.67022509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tameike.909.2",
+ "name": "溜池",
+ "latitude": 35.670302,
+ "longitude": 139.741954,
+ "polygon": [
+ [
+ 139.7418441098901,
+ 35.67039209009009
+ ],
+ [
+ 139.74206389010988,
+ 35.67039209009009
+ ],
+ [
+ 139.74206389010988,
+ 35.67021190990991
+ ],
+ [
+ 139.7418441098901,
+ 35.67021190990991
+ ],
+ [
+ 139.7418441098901,
+ 35.67039209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaigoChugakkoUra.912.2",
+ "name": "第五中学校裏",
+ "latitude": 35.778021,
+ "longitude": 139.775354,
+ "polygon": [
+ [
+ 139.7752441098901,
+ 35.77811109009009
+ ],
+ [
+ 139.77546389010988,
+ 35.77811109009009
+ ],
+ [
+ 139.77546389010988,
+ 35.77793090990991
+ ],
+ [
+ 139.7752441098901,
+ 35.77793090990991
+ ],
+ [
+ 139.7752441098901,
+ 35.77811109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyoikuPlazaIchinoeIriguchi.910.1",
+ "name": "共育プラザ一之江入口",
+ "latitude": 35.690099,
+ "longitude": 139.883082,
+ "polygon": [
+ [
+ 139.88297210989012,
+ 35.69018909009009
+ ],
+ [
+ 139.88319189010988,
+ 35.69018909009009
+ ],
+ [
+ 139.88319189010988,
+ 35.690008909909906
+ ],
+ [
+ 139.88297210989012,
+ 35.690008909909906
+ ],
+ [
+ 139.88297210989012,
+ 35.69018909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyoikuPlazaIchinoeIriguchi.910.2",
+ "name": "共育プラザ一之江入口",
+ "latitude": 35.69108,
+ "longitude": 139.882641,
+ "polygon": [
+ [
+ 139.88253110989012,
+ 35.69117009009009
+ ],
+ [
+ 139.8827508901099,
+ 35.69117009009009
+ ],
+ [
+ 139.8827508901099,
+ 35.69098990990991
+ ],
+ [
+ 139.88253110989012,
+ 35.69098990990991
+ ],
+ [
+ 139.88253110989012,
+ 35.69117009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaigoOjimaShogakko.911.1",
+ "name": "第五大島小学校前",
+ "latitude": 35.688342,
+ "longitude": 139.844979,
+ "polygon": [
+ [
+ 139.8448691098901,
+ 35.68843209009009
+ ],
+ [
+ 139.84508889010988,
+ 35.68843209009009
+ ],
+ [
+ 139.84508889010988,
+ 35.68825190990991
+ ],
+ [
+ 139.8448691098901,
+ 35.68825190990991
+ ],
+ [
+ 139.8448691098901,
+ 35.68843209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaigoOjimaShogakko.911.2",
+ "name": "第五大島小学校前",
+ "latitude": 35.688333,
+ "longitude": 139.845285,
+ "polygon": [
+ [
+ 139.8451751098901,
+ 35.68842309009009
+ ],
+ [
+ 139.84539489010987,
+ 35.68842309009009
+ ],
+ [
+ 139.84539489010987,
+ 35.68824290990991
+ ],
+ [
+ 139.8451751098901,
+ 35.68824290990991
+ ],
+ [
+ 139.8451751098901,
+ 35.68842309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaigoChugakkoUra.912.1",
+ "name": "第五中学校裏",
+ "latitude": 35.778222,
+ "longitude": 139.775329,
+ "polygon": [
+ [
+ 139.77521910989012,
+ 35.77831209009009
+ ],
+ [
+ 139.77543889010988,
+ 35.77831209009009
+ ],
+ [
+ 139.77543889010988,
+ 35.77813190990991
+ ],
+ [
+ 139.77521910989012,
+ 35.77813190990991
+ ],
+ [
+ 139.77521910989012,
+ 35.77831209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukishimaYonchome.938.2",
+ "name": "月島四丁目",
+ "latitude": 35.660086,
+ "longitude": 139.781621,
+ "polygon": [
+ [
+ 139.78151110989012,
+ 35.66017609009009
+ ],
+ [
+ 139.78173089010988,
+ 35.66017609009009
+ ],
+ [
+ 139.78173089010988,
+ 35.65999590990991
+ ],
+ [
+ 139.78151110989012,
+ 35.65999590990991
+ ],
+ [
+ 139.78151110989012,
+ 35.66017609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaNanachome.913.2",
+ "name": "大島七丁目",
+ "latitude": 35.69038,
+ "longitude": 139.842344,
+ "polygon": [
+ [
+ 139.84223410989011,
+ 35.69047009009009
+ ],
+ [
+ 139.84245389010988,
+ 35.69047009009009
+ ],
+ [
+ 139.84245389010988,
+ 35.69028990990991
+ ],
+ [
+ 139.84223410989011,
+ 35.69028990990991
+ ],
+ [
+ 139.84223410989011,
+ 35.69047009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaNanachome.913.3",
+ "name": "大島七丁目",
+ "latitude": 35.690558,
+ "longitude": 139.842612,
+ "polygon": [
+ [
+ 139.84250210989012,
+ 35.69064809009009
+ ],
+ [
+ 139.84272189010989,
+ 35.69064809009009
+ ],
+ [
+ 139.84272189010989,
+ 35.69046790990991
+ ],
+ [
+ 139.84250210989012,
+ 35.69046790990991
+ ],
+ [
+ 139.84250210989012,
+ 35.69064809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Daitabashi.914.1",
+ "name": "代田橋",
+ "latitude": 35.673872,
+ "longitude": 139.659771,
+ "polygon": [
+ [
+ 139.65966110989012,
+ 35.67396209009009
+ ],
+ [
+ 139.6598808901099,
+ 35.67396209009009
+ ],
+ [
+ 139.6598808901099,
+ 35.67378190990991
+ ],
+ [
+ 139.65966110989012,
+ 35.67378190990991
+ ],
+ [
+ 139.65966110989012,
+ 35.67396209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Daitabashi.914.2",
+ "name": "代田橋",
+ "latitude": 35.671217,
+ "longitude": 139.661418,
+ "polygon": [
+ [
+ 139.66130810989011,
+ 35.67130709009009
+ ],
+ [
+ 139.66152789010988,
+ 35.67130709009009
+ ],
+ [
+ 139.66152789010988,
+ 35.67112690990991
+ ],
+ [
+ 139.66130810989011,
+ 35.67112690990991
+ ],
+ [
+ 139.66130810989011,
+ 35.67130709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Daitabashi.914.3",
+ "name": "代田橋",
+ "latitude": 35.672851,
+ "longitude": 139.661208,
+ "polygon": [
+ [
+ 139.6610981098901,
+ 35.67294109009009
+ ],
+ [
+ 139.66131789010987,
+ 35.67294109009009
+ ],
+ [
+ 139.66131789010987,
+ 35.67276090990991
+ ],
+ [
+ 139.6610981098901,
+ 35.67276090990991
+ ],
+ [
+ 139.6610981098901,
+ 35.67294109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DainanaKasaiShogakko.916.1",
+ "name": "第七葛西小学校前",
+ "latitude": 35.658853,
+ "longitude": 139.858991,
+ "polygon": [
+ [
+ 139.85888110989012,
+ 35.65894309009009
+ ],
+ [
+ 139.8591008901099,
+ 35.65894309009009
+ ],
+ [
+ 139.8591008901099,
+ 35.65876290990991
+ ],
+ [
+ 139.85888110989012,
+ 35.65876290990991
+ ],
+ [
+ 139.85888110989012,
+ 35.65894309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DainanaKasaiShogakko.916.2",
+ "name": "第七葛西小学校前",
+ "latitude": 35.658855,
+ "longitude": 139.859154,
+ "polygon": [
+ [
+ 139.8590441098901,
+ 35.65894509009009
+ ],
+ [
+ 139.85926389010987,
+ 35.65894509009009
+ ],
+ [
+ 139.85926389010987,
+ 35.65876490990991
+ ],
+ [
+ 139.8590441098901,
+ 35.65876490990991
+ ],
+ [
+ 139.8590441098901,
+ 35.65894509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DainanaSunamachiShogakko.917.1",
+ "name": "第七砂町小学校前",
+ "latitude": 35.678604,
+ "longitude": 139.843663,
+ "polygon": [
+ [
+ 139.8435531098901,
+ 35.67869409009009
+ ],
+ [
+ 139.84377289010988,
+ 35.67869409009009
+ ],
+ [
+ 139.84377289010988,
+ 35.67851390990991
+ ],
+ [
+ 139.8435531098901,
+ 35.67851390990991
+ ],
+ [
+ 139.8435531098901,
+ 35.67869409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DainanaSunamachiShogakko.917.2",
+ "name": "第七砂町小学校前",
+ "latitude": 35.678427,
+ "longitude": 139.843771,
+ "polygon": [
+ [
+ 139.84366110989012,
+ 35.67851709009009
+ ],
+ [
+ 139.8438808901099,
+ 35.67851709009009
+ ],
+ [
+ 139.8438808901099,
+ 35.67833690990991
+ ],
+ [
+ 139.84366110989012,
+ 35.67833690990991
+ ],
+ [
+ 139.84366110989012,
+ 35.67851709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaimonStation.919.1",
+ "name": "大門駅前",
+ "latitude": 35.657477,
+ "longitude": 139.754606,
+ "polygon": [
+ [
+ 139.7544961098901,
+ 35.65756709009009
+ ],
+ [
+ 139.75471589010988,
+ 35.65756709009009
+ ],
+ [
+ 139.75471589010988,
+ 35.65738690990991
+ ],
+ [
+ 139.7544961098901,
+ 35.65738690990991
+ ],
+ [
+ 139.7544961098901,
+ 35.65756709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaimonStation.919.2",
+ "name": "大門駅前",
+ "latitude": 35.65726,
+ "longitude": 139.754969,
+ "polygon": [
+ [
+ 139.7548591098901,
+ 35.65735009009009
+ ],
+ [
+ 139.75507889010987,
+ 35.65735009009009
+ ],
+ [
+ 139.75507889010987,
+ 35.65716990990991
+ ],
+ [
+ 139.7548591098901,
+ 35.65716990990991
+ ],
+ [
+ 139.7548591098901,
+ 35.65735009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DangozakaShita.922.2",
+ "name": "団子坂下",
+ "latitude": 35.724179,
+ "longitude": 139.762934,
+ "polygon": [
+ [
+ 139.76282410989012,
+ 35.72426909009009
+ ],
+ [
+ 139.76304389010988,
+ 35.72426909009009
+ ],
+ [
+ 139.76304389010988,
+ 35.72408890990991
+ ],
+ [
+ 139.76282410989012,
+ 35.72408890990991
+ ],
+ [
+ 139.76282410989012,
+ 35.72426909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaimonStation.919.3",
+ "name": "大門駅前",
+ "latitude": 35.656182,
+ "longitude": 139.754786,
+ "polygon": [
+ [
+ 139.7546761098901,
+ 35.65627209009009
+ ],
+ [
+ 139.75489589010988,
+ 35.65627209009009
+ ],
+ [
+ 139.75489589010988,
+ 35.65609190990991
+ ],
+ [
+ 139.7546761098901,
+ 35.65609190990991
+ ],
+ [
+ 139.7546761098901,
+ 35.65627209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaimonShogakko.920.1",
+ "name": "大門小学校前",
+ "latitude": 35.749522,
+ "longitude": 139.777139,
+ "polygon": [
+ [
+ 139.77702910989012,
+ 35.74961209009009
+ ],
+ [
+ 139.7772488901099,
+ 35.74961209009009
+ ],
+ [
+ 139.7772488901099,
+ 35.74943190990991
+ ],
+ [
+ 139.77702910989012,
+ 35.74943190990991
+ ],
+ [
+ 139.77702910989012,
+ 35.74961209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaimonShogakko.920.2",
+ "name": "大門小学校前",
+ "latitude": 35.749588,
+ "longitude": 139.77748,
+ "polygon": [
+ [
+ 139.77737010989011,
+ 35.74967809009009
+ ],
+ [
+ 139.77758989010988,
+ 35.74967809009009
+ ],
+ [
+ 139.77758989010988,
+ 35.74949790990991
+ ],
+ [
+ 139.77737010989011,
+ 35.74949790990991
+ ],
+ [
+ 139.77737010989011,
+ 35.74967809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaiyonKasaiShogakko.921.1",
+ "name": "第四葛西小学校前",
+ "latitude": 35.65988,
+ "longitude": 139.87034,
+ "polygon": [
+ [
+ 139.87023010989012,
+ 35.65997009009009
+ ],
+ [
+ 139.87044989010988,
+ 35.65997009009009
+ ],
+ [
+ 139.87044989010988,
+ 35.65978990990991
+ ],
+ [
+ 139.87023010989012,
+ 35.65978990990991
+ ],
+ [
+ 139.87023010989012,
+ 35.65997009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaiyonKasaiShogakko.921.2",
+ "name": "第四葛西小学校前",
+ "latitude": 35.659486,
+ "longitude": 139.86956,
+ "polygon": [
+ [
+ 139.86945010989012,
+ 35.65957609009009
+ ],
+ [
+ 139.8696698901099,
+ 35.65957609009009
+ ],
+ [
+ 139.8696698901099,
+ 35.65939590990991
+ ],
+ [
+ 139.86945010989012,
+ 35.65939590990991
+ ],
+ [
+ 139.86945010989012,
+ 35.65957609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DangozakaShita.922.1",
+ "name": "団子坂下",
+ "latitude": 35.72446,
+ "longitude": 139.762868,
+ "polygon": [
+ [
+ 139.76275810989011,
+ 35.72455009009009
+ ],
+ [
+ 139.76297789010988,
+ 35.72455009009009
+ ],
+ [
+ 139.76297789010988,
+ 35.72436990990991
+ ],
+ [
+ 139.76275810989011,
+ 35.72436990990991
+ ],
+ [
+ 139.76275810989011,
+ 35.72455009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DangozakaShita.922.3",
+ "name": "団子坂下",
+ "latitude": 35.725111,
+ "longitude": 139.763033,
+ "polygon": [
+ [
+ 139.76292310989012,
+ 35.72520109009009
+ ],
+ [
+ 139.7631428901099,
+ 35.72520109009009
+ ],
+ [
+ 139.7631428901099,
+ 35.72502090990991
+ ],
+ [
+ 139.76292310989012,
+ 35.72502090990991
+ ],
+ [
+ 139.76292310989012,
+ 35.72520109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DangozakaShita.922.4",
+ "name": "団子坂下",
+ "latitude": 35.725219,
+ "longitude": 139.763241,
+ "polygon": [
+ [
+ 139.7631311098901,
+ 35.72530909009009
+ ],
+ [
+ 139.76335089010988,
+ 35.72530909009009
+ ],
+ [
+ 139.76335089010988,
+ 35.72512890990991
+ ],
+ [
+ 139.7631311098901,
+ 35.72512890990991
+ ],
+ [
+ 139.7631311098901,
+ 35.72530909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChigaseYonchome.923.1",
+ "name": "千ヶ瀬四丁目",
+ "latitude": 35.786406,
+ "longitude": 139.272189,
+ "polygon": [
+ [
+ 139.27207910989011,
+ 35.78649609009009
+ ],
+ [
+ 139.27229889010988,
+ 35.78649609009009
+ ],
+ [
+ 139.27229889010988,
+ 35.78631590990991
+ ],
+ [
+ 139.27207910989011,
+ 35.78631590990991
+ ],
+ [
+ 139.27207910989011,
+ 35.78649609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChigaseYonchome.923.2",
+ "name": "千ヶ瀬四丁目",
+ "latitude": 35.786215,
+ "longitude": 139.272452,
+ "polygon": [
+ [
+ 139.2723421098901,
+ 35.78630509009009
+ ],
+ [
+ 139.27256189010987,
+ 35.78630509009009
+ ],
+ [
+ 139.27256189010987,
+ 35.78612490990991
+ ],
+ [
+ 139.2723421098901,
+ 35.78612490990991
+ ],
+ [
+ 139.2723421098901,
+ 35.78630509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChigaseGochome.924.1",
+ "name": "千ヶ瀬五丁目",
+ "latitude": 35.786553,
+ "longitude": 139.265367,
+ "polygon": [
+ [
+ 139.26525710989011,
+ 35.78664309009009
+ ],
+ [
+ 139.26547689010988,
+ 35.78664309009009
+ ],
+ [
+ 139.26547689010988,
+ 35.78646290990991
+ ],
+ [
+ 139.26525710989011,
+ 35.78646290990991
+ ],
+ [
+ 139.26525710989011,
+ 35.78664309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChigaseGochome.924.2",
+ "name": "千ヶ瀬五丁目",
+ "latitude": 35.786376,
+ "longitude": 139.265376,
+ "polygon": [
+ [
+ 139.26526610989012,
+ 35.78646609009009
+ ],
+ [
+ 139.2654858901099,
+ 35.78646609009009
+ ],
+ [
+ 139.2654858901099,
+ 35.78628590990991
+ ],
+ [
+ 139.26526610989012,
+ 35.78628590990991
+ ],
+ [
+ 139.26526610989012,
+ 35.78646609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChikusanShikenjo.925.1",
+ "name": "新田山公園",
+ "latitude": 35.783888,
+ "longitude": 139.315147,
+ "polygon": [
+ [
+ 139.3150371098901,
+ 35.78397809009009
+ ],
+ [
+ 139.31525689010988,
+ 35.78397809009009
+ ],
+ [
+ 139.31525689010988,
+ 35.78379790990991
+ ],
+ [
+ 139.3150371098901,
+ 35.78379790990991
+ ],
+ [
+ 139.3150371098901,
+ 35.78397809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChikusanShikenjo.925.2",
+ "name": "新田山公園",
+ "latitude": 35.783842,
+ "longitude": 139.314527,
+ "polygon": [
+ [
+ 139.31441710989012,
+ 35.78393209009009
+ ],
+ [
+ 139.31463689010988,
+ 35.78393209009009
+ ],
+ [
+ 139.31463689010988,
+ 35.78375190990991
+ ],
+ [
+ 139.31441710989012,
+ 35.78375190990991
+ ],
+ [
+ 139.31441710989012,
+ 35.78393209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Chitosebashi.926.1",
+ "name": "千登世橋",
+ "latitude": 35.720883,
+ "longitude": 139.712906,
+ "polygon": [
+ [
+ 139.71279610989012,
+ 35.72097309009009
+ ],
+ [
+ 139.7130158901099,
+ 35.72097309009009
+ ],
+ [
+ 139.7130158901099,
+ 35.72079290990991
+ ],
+ [
+ 139.71279610989012,
+ 35.72079290990991
+ ],
+ [
+ 139.71279610989012,
+ 35.72097309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Chitosebashi.926.2",
+ "name": "千登世橋",
+ "latitude": 35.720833,
+ "longitude": 139.712726,
+ "polygon": [
+ [
+ 139.71261610989012,
+ 35.72092309009009
+ ],
+ [
+ 139.7128358901099,
+ 35.72092309009009
+ ],
+ [
+ 139.7128358901099,
+ 35.72074290990991
+ ],
+ [
+ 139.71261610989012,
+ 35.72074290990991
+ ],
+ [
+ 139.71261610989012,
+ 35.72092309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChitoseSanchome.927.1",
+ "name": "千歳三丁目",
+ "latitude": 35.690744,
+ "longitude": 139.798096,
+ "polygon": [
+ [
+ 139.7979861098901,
+ 35.69083409009009
+ ],
+ [
+ 139.79820589010987,
+ 35.69083409009009
+ ],
+ [
+ 139.79820589010987,
+ 35.69065390990991
+ ],
+ [
+ 139.7979861098901,
+ 35.69065390990991
+ ],
+ [
+ 139.7979861098901,
+ 35.69083409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChitoseSanchome.927.2",
+ "name": "千歳三丁目",
+ "latitude": 35.690731,
+ "longitude": 139.797916,
+ "polygon": [
+ [
+ 139.7978061098901,
+ 35.69082109009009
+ ],
+ [
+ 139.79802589010987,
+ 35.69082109009009
+ ],
+ [
+ 139.79802589010987,
+ 35.69064090990991
+ ],
+ [
+ 139.7978061098901,
+ 35.69064090990991
+ ],
+ [
+ 139.7978061098901,
+ 35.69082109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoDori.929.1",
+ "name": "中央通り",
+ "latitude": 35.69961,
+ "longitude": 139.873058,
+ "polygon": [
+ [
+ 139.8729481098901,
+ 35.69970009009009
+ ],
+ [
+ 139.87316789010987,
+ 35.69970009009009
+ ],
+ [
+ 139.87316789010987,
+ 35.69951990990991
+ ],
+ [
+ 139.8729481098901,
+ 35.69951990990991
+ ],
+ [
+ 139.8729481098901,
+ 35.69970009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoDori.929.2",
+ "name": "中央通り",
+ "latitude": 35.700112,
+ "longitude": 139.873395,
+ "polygon": [
+ [
+ 139.8732851098901,
+ 35.70020209009009
+ ],
+ [
+ 139.87350489010987,
+ 35.70020209009009
+ ],
+ [
+ 139.87350489010987,
+ 35.70002190990991
+ ],
+ [
+ 139.8732851098901,
+ 35.70002190990991
+ ],
+ [
+ 139.8732851098901,
+ 35.70020209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Chuobashi.930.1",
+ "name": "中央橋",
+ "latitude": 35.829301,
+ "longitude": 139.29369,
+ "polygon": [
+ [
+ 139.29358010989012,
+ 35.82939109009009
+ ],
+ [
+ 139.29379989010988,
+ 35.82939109009009
+ ],
+ [
+ 139.29379989010988,
+ 35.82921090990991
+ ],
+ [
+ 139.29358010989012,
+ 35.82921090990991
+ ],
+ [
+ 139.29358010989012,
+ 35.82939109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Chuobashi.930.2",
+ "name": "中央橋",
+ "latitude": 35.829366,
+ "longitude": 139.293631,
+ "polygon": [
+ [
+ 139.29352110989012,
+ 35.82945609009009
+ ],
+ [
+ 139.2937408901099,
+ 35.82945609009009
+ ],
+ [
+ 139.2937408901099,
+ 35.82927590990991
+ ],
+ [
+ 139.29352110989012,
+ 35.82927590990991
+ ],
+ [
+ 139.29352110989012,
+ 35.82945609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoSanchome.931.1",
+ "name": "中央三丁目",
+ "latitude": 35.713258,
+ "longitude": 139.874163,
+ "polygon": [
+ [
+ 139.87405310989013,
+ 35.71334809009009
+ ],
+ [
+ 139.8742728901099,
+ 35.71334809009009
+ ],
+ [
+ 139.8742728901099,
+ 35.71316790990991
+ ],
+ [
+ 139.87405310989013,
+ 35.71316790990991
+ ],
+ [
+ 139.87405310989013,
+ 35.71334809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoSanchome.931.2",
+ "name": "中央三丁目",
+ "latitude": 35.712752,
+ "longitude": 139.874213,
+ "polygon": [
+ [
+ 139.87410310989011,
+ 35.71284209009009
+ ],
+ [
+ 139.87432289010988,
+ 35.71284209009009
+ ],
+ [
+ 139.87432289010988,
+ 35.71266190990991
+ ],
+ [
+ 139.87410310989011,
+ 35.71266190990991
+ ],
+ [
+ 139.87410310989011,
+ 35.71284209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Choenji.933.1",
+ "name": "長円寺前",
+ "latitude": 35.757682,
+ "longitude": 139.381137,
+ "polygon": [
+ [
+ 139.3810271098901,
+ 35.75777209009009
+ ],
+ [
+ 139.38124689010988,
+ 35.75777209009009
+ ],
+ [
+ 139.38124689010988,
+ 35.75759190990991
+ ],
+ [
+ 139.3810271098901,
+ 35.75759190990991
+ ],
+ [
+ 139.3810271098901,
+ 35.75777209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Choenji.933.2",
+ "name": "長円寺前",
+ "latitude": 35.757444,
+ "longitude": 139.381776,
+ "polygon": [
+ [
+ 139.38166610989012,
+ 35.75753409009009
+ ],
+ [
+ 139.38188589010988,
+ 35.75753409009009
+ ],
+ [
+ 139.38188589010988,
+ 35.75735390990991
+ ],
+ [
+ 139.38166610989012,
+ 35.75735390990991
+ ],
+ [
+ 139.38166610989012,
+ 35.75753409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChosuichiShita.934.1",
+ "name": "貯水池下",
+ "latitude": 35.75618,
+ "longitude": 139.412488,
+ "polygon": [
+ [
+ 139.4123781098901,
+ 35.75627009009009
+ ],
+ [
+ 139.41259789010988,
+ 35.75627009009009
+ ],
+ [
+ 139.41259789010988,
+ 35.75608990990991
+ ],
+ [
+ 139.4123781098901,
+ 35.75608990990991
+ ],
+ [
+ 139.4123781098901,
+ 35.75627009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChosuichiShita.934.2",
+ "name": "貯水池下",
+ "latitude": 35.756105,
+ "longitude": 139.412407,
+ "polygon": [
+ [
+ 139.41229710989012,
+ 35.75619509009009
+ ],
+ [
+ 139.41251689010988,
+ 35.75619509009009
+ ],
+ [
+ 139.41251689010988,
+ 35.75601490990991
+ ],
+ [
+ 139.41229710989012,
+ 35.75601490990991
+ ],
+ [
+ 139.41229710989012,
+ 35.75619509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeizaisangyoSho.935.3",
+ "name": "経済産業省前",
+ "latitude": 35.672624,
+ "longitude": 139.751837,
+ "polygon": [
+ [
+ 139.7517271098901,
+ 35.67271409009009
+ ],
+ [
+ 139.75194689010988,
+ 35.67271409009009
+ ],
+ [
+ 139.75194689010988,
+ 35.67253390990991
+ ],
+ [
+ 139.7517271098901,
+ 35.67253390990991
+ ],
+ [
+ 139.7517271098901,
+ 35.67271409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeizaisangyoSho.935.4",
+ "name": "経済産業省前",
+ "latitude": 35.672197,
+ "longitude": 139.752017,
+ "polygon": [
+ [
+ 139.7519071098901,
+ 35.67228709009009
+ ],
+ [
+ 139.75212689010988,
+ 35.67228709009009
+ ],
+ [
+ 139.75212689010988,
+ 35.67210690990991
+ ],
+ [
+ 139.7519071098901,
+ 35.67210690990991
+ ],
+ [
+ 139.7519071098901,
+ 35.67228709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SankyuHonsha.936.1",
+ "name": "山九本社前",
+ "latitude": 35.655004,
+ "longitude": 139.771121,
+ "polygon": [
+ [
+ 139.7710111098901,
+ 35.65509409009009
+ ],
+ [
+ 139.77123089010988,
+ 35.65509409009009
+ ],
+ [
+ 139.77123089010988,
+ 35.65491390990991
+ ],
+ [
+ 139.7710111098901,
+ 35.65491390990991
+ ],
+ [
+ 139.7710111098901,
+ 35.65509409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SankyuHonsha.936.2",
+ "name": "山九本社前",
+ "latitude": 35.655172,
+ "longitude": 139.771791,
+ "polygon": [
+ [
+ 139.77168110989012,
+ 35.65526209009009
+ ],
+ [
+ 139.7719008901099,
+ 35.65526209009009
+ ],
+ [
+ 139.7719008901099,
+ 35.65508190990991
+ ],
+ [
+ 139.77168110989012,
+ 35.65508190990991
+ ],
+ [
+ 139.77168110989012,
+ 35.65526209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukishimaSanchome.937.2",
+ "name": "月島三丁目",
+ "latitude": 35.662395,
+ "longitude": 139.781815,
+ "polygon": [
+ [
+ 139.7817051098901,
+ 35.66248509009009
+ ],
+ [
+ 139.78192489010988,
+ 35.66248509009009
+ ],
+ [
+ 139.78192489010988,
+ 35.662304909909906
+ ],
+ [
+ 139.7817051098901,
+ 35.662304909909906
+ ],
+ [
+ 139.7817051098901,
+ 35.66248509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukishimaSanchome.937.3",
+ "name": "月島三丁目",
+ "latitude": 35.662342,
+ "longitude": 139.782204,
+ "polygon": [
+ [
+ 139.78209410989012,
+ 35.66243209009009
+ ],
+ [
+ 139.7823138901099,
+ 35.66243209009009
+ ],
+ [
+ 139.7823138901099,
+ 35.66225190990991
+ ],
+ [
+ 139.78209410989012,
+ 35.66225190990991
+ ],
+ [
+ 139.78209410989012,
+ 35.66243209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukishimaYonchome.938.1",
+ "name": "月島四丁目",
+ "latitude": 35.661627,
+ "longitude": 139.783595,
+ "polygon": [
+ [
+ 139.7834851098901,
+ 35.66171709009009
+ ],
+ [
+ 139.78370489010987,
+ 35.66171709009009
+ ],
+ [
+ 139.78370489010987,
+ 35.66153690990991
+ ],
+ [
+ 139.7834851098901,
+ 35.66153690990991
+ ],
+ [
+ 139.7834851098901,
+ 35.66171709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tsukiji.939.1",
+ "name": "築地",
+ "latitude": 35.667865,
+ "longitude": 139.769295,
+ "polygon": [
+ [
+ 139.76918510989012,
+ 35.66795509009009
+ ],
+ [
+ 139.76940489010988,
+ 35.66795509009009
+ ],
+ [
+ 139.76940489010988,
+ 35.66777490990991
+ ],
+ [
+ 139.76918510989012,
+ 35.66777490990991
+ ],
+ [
+ 139.76918510989012,
+ 35.66795509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tsukiji.939.2",
+ "name": "築地",
+ "latitude": 35.667885,
+ "longitude": 139.768853,
+ "polygon": [
+ [
+ 139.76874310989012,
+ 35.66797509009009
+ ],
+ [
+ 139.7689628901099,
+ 35.66797509009009
+ ],
+ [
+ 139.7689628901099,
+ 35.66779490990991
+ ],
+ [
+ 139.76874310989012,
+ 35.66779490990991
+ ],
+ [
+ 139.76874310989012,
+ 35.66797509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoSoshajo.987.2",
+ "name": "東陽操車所前",
+ "latitude": 35.669555,
+ "longitude": 139.813733,
+ "polygon": [
+ [
+ 139.81362310989013,
+ 35.66964509009009
+ ],
+ [
+ 139.8138428901099,
+ 35.66964509009009
+ ],
+ [
+ 139.8138428901099,
+ 35.66946490990991
+ ],
+ [
+ 139.81362310989013,
+ 35.66946490990991
+ ],
+ [
+ 139.81362310989013,
+ 35.66964509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiStation.941.1",
+ "name": "築地駅前",
+ "latitude": 35.667445,
+ "longitude": 139.771584,
+ "polygon": [
+ [
+ 139.7714741098901,
+ 35.66753509009009
+ ],
+ [
+ 139.77169389010987,
+ 35.66753509009009
+ ],
+ [
+ 139.77169389010987,
+ 35.66735490990991
+ ],
+ [
+ 139.7714741098901,
+ 35.66735490990991
+ ],
+ [
+ 139.7714741098901,
+ 35.66753509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiStation.941.2",
+ "name": "築地駅前",
+ "latitude": 35.668094,
+ "longitude": 139.770666,
+ "polygon": [
+ [
+ 139.77055610989012,
+ 35.668184090090094
+ ],
+ [
+ 139.7707758901099,
+ 35.668184090090094
+ ],
+ [
+ 139.7707758901099,
+ 35.66800390990991
+ ],
+ [
+ 139.77055610989012,
+ 35.66800390990991
+ ],
+ [
+ 139.77055610989012,
+ 35.668184090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiNichome.944.1",
+ "name": "築地二丁目",
+ "latitude": 35.669849,
+ "longitude": 139.772389,
+ "polygon": [
+ [
+ 139.77227910989012,
+ 35.66993909009009
+ ],
+ [
+ 139.7724988901099,
+ 35.66993909009009
+ ],
+ [
+ 139.7724988901099,
+ 35.66975890990991
+ ],
+ [
+ 139.77227910989012,
+ 35.66975890990991
+ ],
+ [
+ 139.77227910989012,
+ 35.66993909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationMarunouchiMinamiguchi.966.3",
+ "name": "東京駅丸の内南口",
+ "latitude": 35.679934,
+ "longitude": 139.765721,
+ "polygon": [
+ [
+ 139.76561110989013,
+ 35.68002409009009
+ ],
+ [
+ 139.7658308901099,
+ 35.68002409009009
+ ],
+ [
+ 139.7658308901099,
+ 35.67984390990991
+ ],
+ [
+ 139.76561110989013,
+ 35.67984390990991
+ ],
+ [
+ 139.76561110989013,
+ 35.68002409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiNichome.944.2",
+ "name": "築地二丁目",
+ "latitude": 35.669727,
+ "longitude": 139.772479,
+ "polygon": [
+ [
+ 139.77236910989012,
+ 35.66981709009009
+ ],
+ [
+ 139.7725888901099,
+ 35.66981709009009
+ ],
+ [
+ 139.7725888901099,
+ 35.66963690990991
+ ],
+ [
+ 139.77236910989012,
+ 35.66963690990991
+ ],
+ [
+ 139.77236910989012,
+ 35.66981709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyochoStation.989.4",
+ "name": "東陽町駅前",
+ "latitude": 35.669471,
+ "longitude": 139.817132,
+ "polygon": [
+ [
+ 139.8170221098901,
+ 35.66956109009009
+ ],
+ [
+ 139.81724189010987,
+ 35.66956109009009
+ ],
+ [
+ 139.81724189010987,
+ 35.66938090990991
+ ],
+ [
+ 139.8170221098901,
+ 35.66938090990991
+ ],
+ [
+ 139.8170221098901,
+ 35.66956109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiSanchome.945.1",
+ "name": "築地三丁目",
+ "latitude": 35.666983,
+ "longitude": 139.77036,
+ "polygon": [
+ [
+ 139.77025010989013,
+ 35.66707309009009
+ ],
+ [
+ 139.7704698901099,
+ 35.66707309009009
+ ],
+ [
+ 139.7704698901099,
+ 35.66689290990991
+ ],
+ [
+ 139.77025010989013,
+ 35.66689290990991
+ ],
+ [
+ 139.77025010989013,
+ 35.66707309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiSanchome.945.2",
+ "name": "築地三丁目",
+ "latitude": 35.666857,
+ "longitude": 139.770098,
+ "polygon": [
+ [
+ 139.7699881098901,
+ 35.66694709009009
+ ],
+ [
+ 139.77020789010987,
+ 35.66694709009009
+ ],
+ [
+ 139.77020789010987,
+ 35.66676690990991
+ ],
+ [
+ 139.7699881098901,
+ 35.66676690990991
+ ],
+ [
+ 139.7699881098901,
+ 35.66694709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiRokuchome.946.1",
+ "name": "築地六丁目",
+ "latitude": 35.664928,
+ "longitude": 139.772052,
+ "polygon": [
+ [
+ 139.77194210989012,
+ 35.66501809009009
+ ],
+ [
+ 139.77216189010989,
+ 35.66501809009009
+ ],
+ [
+ 139.77216189010989,
+ 35.66483790990991
+ ],
+ [
+ 139.77194210989012,
+ 35.66483790990991
+ ],
+ [
+ 139.77194210989012,
+ 35.66501809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiRokuchome.946.2",
+ "name": "築地六丁目",
+ "latitude": 35.664239,
+ "longitude": 139.773148,
+ "polygon": [
+ [
+ 139.7730381098901,
+ 35.66432909009009
+ ],
+ [
+ 139.77325789010987,
+ 35.66432909009009
+ ],
+ [
+ 139.77325789010987,
+ 35.66414890990991
+ ],
+ [
+ 139.7730381098901,
+ 35.66414890990991
+ ],
+ [
+ 139.7730381098901,
+ 35.66432909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiNanachome.947.1",
+ "name": "築地七丁目",
+ "latitude": 35.665159,
+ "longitude": 139.77585,
+ "polygon": [
+ [
+ 139.7757401098901,
+ 35.66524909009009
+ ],
+ [
+ 139.77595989010987,
+ 35.66524909009009
+ ],
+ [
+ 139.77595989010987,
+ 35.66506890990991
+ ],
+ [
+ 139.7757401098901,
+ 35.66506890990991
+ ],
+ [
+ 139.7757401098901,
+ 35.66524909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiNanachome.947.2",
+ "name": "築地七丁目",
+ "latitude": 35.665259,
+ "longitude": 139.776201,
+ "polygon": [
+ [
+ 139.7760911098901,
+ 35.66534909009009
+ ],
+ [
+ 139.77631089010987,
+ 35.66534909009009
+ ],
+ [
+ 139.77631089010987,
+ 35.66516890990991
+ ],
+ [
+ 139.7760911098901,
+ 35.66516890990991
+ ],
+ [
+ 139.7760911098901,
+ 35.66534909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoShinjukuMedicalCenter.949.3",
+ "name": "東京新宿メディカルセンター前",
+ "latitude": 35.703156,
+ "longitude": 139.741688,
+ "polygon": [
+ [
+ 139.74157810989013,
+ 35.70324609009009
+ ],
+ [
+ 139.7417978901099,
+ 35.70324609009009
+ ],
+ [
+ 139.7417978901099,
+ 35.70306590990991
+ ],
+ [
+ 139.74157810989013,
+ 35.70306590990991
+ ],
+ [
+ 139.74157810989013,
+ 35.70324609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoShinjukuMedicalCenter.949.4",
+ "name": "東京新宿メディカルセンター前",
+ "latitude": 35.703156,
+ "longitude": 139.742001,
+ "polygon": [
+ [
+ 139.7418911098901,
+ 35.70324609009009
+ ],
+ [
+ 139.74211089010987,
+ 35.70324609009009
+ ],
+ [
+ 139.74211089010987,
+ 35.70306590990991
+ ],
+ [
+ 139.7418911098901,
+ 35.70306590990991
+ ],
+ [
+ 139.7418911098901,
+ 35.70324609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsubakiNichome.952.1",
+ "name": "椿二丁目",
+ "latitude": 35.778141,
+ "longitude": 139.760088,
+ "polygon": [
+ [
+ 139.7599781098901,
+ 35.77823109009009
+ ],
+ [
+ 139.76019789010988,
+ 35.77823109009009
+ ],
+ [
+ 139.76019789010988,
+ 35.77805090990991
+ ],
+ [
+ 139.7599781098901,
+ 35.77805090990991
+ ],
+ [
+ 139.7599781098901,
+ 35.77823109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsubakiNichome.952.2",
+ "name": "椿二丁目",
+ "latitude": 35.778324,
+ "longitude": 139.760927,
+ "polygon": [
+ [
+ 139.76081710989013,
+ 35.77841409009009
+ ],
+ [
+ 139.7610368901099,
+ 35.77841409009009
+ ],
+ [
+ 139.7610368901099,
+ 35.77823390990991
+ ],
+ [
+ 139.76081710989013,
+ 35.77823390990991
+ ],
+ [
+ 139.76081710989013,
+ 35.77841409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationYaesuguchi.967.1",
+ "name": "東京駅八重洲口",
+ "latitude": 35.679839,
+ "longitude": 139.768326,
+ "polygon": [
+ [
+ 139.76821610989012,
+ 35.67992909009009
+ ],
+ [
+ 139.76843589010988,
+ 35.67992909009009
+ ],
+ [
+ 139.76843589010988,
+ 35.67974890990991
+ ],
+ [
+ 139.76821610989012,
+ 35.67974890990991
+ ],
+ [
+ 139.76821610989012,
+ 35.67992909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Teppozu.955.1",
+ "name": "鉄砲洲",
+ "latitude": 35.672478,
+ "longitude": 139.78022,
+ "polygon": [
+ [
+ 139.78011010989013,
+ 35.67256809009009
+ ],
+ [
+ 139.7803298901099,
+ 35.67256809009009
+ ],
+ [
+ 139.7803298901099,
+ 35.67238790990991
+ ],
+ [
+ 139.78011010989013,
+ 35.67238790990991
+ ],
+ [
+ 139.78011010989013,
+ 35.67256809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tsurumakicho.953.1",
+ "name": "鶴巻町",
+ "latitude": 35.709839,
+ "longitude": 139.726733,
+ "polygon": [
+ [
+ 139.7266231098901,
+ 35.70992909009009
+ ],
+ [
+ 139.72684289010988,
+ 35.70992909009009
+ ],
+ [
+ 139.72684289010988,
+ 35.70974890990991
+ ],
+ [
+ 139.7266231098901,
+ 35.70974890990991
+ ],
+ [
+ 139.7266231098901,
+ 35.70992909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tsurumakicho.953.2",
+ "name": "鶴巻町",
+ "latitude": 35.709447,
+ "longitude": 139.727839,
+ "polygon": [
+ [
+ 139.7277291098901,
+ 35.70953709009009
+ ],
+ [
+ 139.72794889010987,
+ 35.70953709009009
+ ],
+ [
+ 139.72794889010987,
+ 35.70935690990991
+ ],
+ [
+ 139.7277291098901,
+ 35.70935690990991
+ ],
+ [
+ 139.7277291098901,
+ 35.70953709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tetsugakudo.954.1",
+ "name": "哲学堂",
+ "latitude": 35.723548,
+ "longitude": 139.675723,
+ "polygon": [
+ [
+ 139.67561310989012,
+ 35.72363809009009
+ ],
+ [
+ 139.6758328901099,
+ 35.72363809009009
+ ],
+ [
+ 139.6758328901099,
+ 35.72345790990991
+ ],
+ [
+ 139.67561310989012,
+ 35.72345790990991
+ ],
+ [
+ 139.67561310989012,
+ 35.72363809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tetsugakudo.954.2",
+ "name": "哲学堂",
+ "latitude": 35.72369,
+ "longitude": 139.675985,
+ "polygon": [
+ [
+ 139.67587510989011,
+ 35.72378009009009
+ ],
+ [
+ 139.67609489010988,
+ 35.72378009009009
+ ],
+ [
+ 139.67609489010988,
+ 35.72359990990991
+ ],
+ [
+ 139.67587510989011,
+ 35.72359990990991
+ ],
+ [
+ 139.67587510989011,
+ 35.72378009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTanko.976.1",
+ "name": "東京炭坑前",
+ "latitude": 35.823204,
+ "longitude": 139.286242,
+ "polygon": [
+ [
+ 139.2861321098901,
+ 35.82329409009009
+ ],
+ [
+ 139.28635189010987,
+ 35.82329409009009
+ ],
+ [
+ 139.28635189010987,
+ 35.82311390990991
+ ],
+ [
+ 139.2861321098901,
+ 35.82311390990991
+ ],
+ [
+ 139.2861321098901,
+ 35.82329409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Teppozu.955.2",
+ "name": "鉄砲洲",
+ "latitude": 35.672084,
+ "longitude": 139.779977,
+ "polygon": [
+ [
+ 139.77986710989012,
+ 35.67217409009009
+ ],
+ [
+ 139.78008689010989,
+ 35.67217409009009
+ ],
+ [
+ 139.78008689010989,
+ 35.67199390990991
+ ],
+ [
+ 139.77986710989012,
+ 35.67199390990991
+ ],
+ [
+ 139.77986710989012,
+ 35.67217409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tengenjibashi.956.1",
+ "name": "天現寺橋",
+ "latitude": 35.647169,
+ "longitude": 139.722581,
+ "polygon": [
+ [
+ 139.7224711098901,
+ 35.64725909009009
+ ],
+ [
+ 139.72269089010987,
+ 35.64725909009009
+ ],
+ [
+ 139.72269089010987,
+ 35.64707890990991
+ ],
+ [
+ 139.7224711098901,
+ 35.64707890990991
+ ],
+ [
+ 139.7224711098901,
+ 35.64725909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tengenjibashi.956.2",
+ "name": "天現寺橋",
+ "latitude": 35.646968,
+ "longitude": 139.722771,
+ "polygon": [
+ [
+ 139.7226611098901,
+ 35.64705809009009
+ ],
+ [
+ 139.72288089010988,
+ 35.64705809009009
+ ],
+ [
+ 139.72288089010988,
+ 35.64687790990991
+ ],
+ [
+ 139.7226611098901,
+ 35.64687790990991
+ ],
+ [
+ 139.7226611098901,
+ 35.64705809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tengenjibashi.956.3",
+ "name": "天現寺橋",
+ "latitude": 35.647249,
+ "longitude": 139.723527,
+ "polygon": [
+ [
+ 139.7234171098901,
+ 35.64733909009009
+ ],
+ [
+ 139.72363689010987,
+ 35.64733909009009
+ ],
+ [
+ 139.72363689010987,
+ 35.64715890990991
+ ],
+ [
+ 139.7234171098901,
+ 35.64715890990991
+ ],
+ [
+ 139.7234171098901,
+ 35.64733909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tengenjibashi.956.4",
+ "name": "天現寺橋",
+ "latitude": 35.647548,
+ "longitude": 139.723587,
+ "polygon": [
+ [
+ 139.72347710989013,
+ 35.64763809009009
+ ],
+ [
+ 139.7236968901099,
+ 35.64763809009009
+ ],
+ [
+ 139.7236968901099,
+ 35.64745790990991
+ ],
+ [
+ 139.72347710989013,
+ 35.64745790990991
+ ],
+ [
+ 139.72347710989013,
+ 35.64763809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationMarunouchiMinamiguchi.966.4",
+ "name": "東京駅丸の内南口",
+ "latitude": 35.680125,
+ "longitude": 139.765588,
+ "polygon": [
+ [
+ 139.76547810989013,
+ 35.68021509009009
+ ],
+ [
+ 139.7656978901099,
+ 35.68021509009009
+ ],
+ [
+ 139.7656978901099,
+ 35.68003490990991
+ ],
+ [
+ 139.76547810989013,
+ 35.68003490990991
+ ],
+ [
+ 139.76547810989013,
+ 35.68021509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tenjincho.957.1",
+ "name": "天神町",
+ "latitude": 35.730858,
+ "longitude": 139.494166,
+ "polygon": [
+ [
+ 139.49405610989012,
+ 35.73094809009009
+ ],
+ [
+ 139.4942758901099,
+ 35.73094809009009
+ ],
+ [
+ 139.4942758901099,
+ 35.73076790990991
+ ],
+ [
+ 139.49405610989012,
+ 35.73076790990991
+ ],
+ [
+ 139.49405610989012,
+ 35.73094809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tenjincho.957.2",
+ "name": "天神町",
+ "latitude": 35.730685,
+ "longitude": 139.494069,
+ "polygon": [
+ [
+ 139.4939591098901,
+ 35.73077509009009
+ ],
+ [
+ 139.49417889010988,
+ 35.73077509009009
+ ],
+ [
+ 139.49417889010988,
+ 35.73059490990991
+ ],
+ [
+ 139.4939591098901,
+ 35.73059490990991
+ ],
+ [
+ 139.4939591098901,
+ 35.73077509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TenjinchoNichome.958.1",
+ "name": "天神町二丁目",
+ "latitude": 35.730775,
+ "longitude": 139.497808,
+ "polygon": [
+ [
+ 139.4976981098901,
+ 35.73086509009009
+ ],
+ [
+ 139.49791789010987,
+ 35.73086509009009
+ ],
+ [
+ 139.49791789010987,
+ 35.73068490990991
+ ],
+ [
+ 139.4976981098901,
+ 35.73068490990991
+ ],
+ [
+ 139.4976981098901,
+ 35.73086509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TenjinchoNichome.958.2",
+ "name": "天神町二丁目",
+ "latitude": 35.730642,
+ "longitude": 139.498056,
+ "polygon": [
+ [
+ 139.4979461098901,
+ 35.73073209009009
+ ],
+ [
+ 139.49816589010987,
+ 35.73073209009009
+ ],
+ [
+ 139.49816589010987,
+ 35.73055190990991
+ ],
+ [
+ 139.4979461098901,
+ 35.73055190990991
+ ],
+ [
+ 139.4979461098901,
+ 35.73073209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tenjimbashi.959.1",
+ "name": "天神橋",
+ "latitude": 35.717063,
+ "longitude": 139.871433,
+ "polygon": [
+ [
+ 139.8713231098901,
+ 35.71715309009009
+ ],
+ [
+ 139.87154289010988,
+ 35.71715309009009
+ ],
+ [
+ 139.87154289010988,
+ 35.71697290990991
+ ],
+ [
+ 139.8713231098901,
+ 35.71697290990991
+ ],
+ [
+ 139.8713231098901,
+ 35.71715309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationMarunouchiMinamiguchi.966.5",
+ "name": "東京駅丸の内南口",
+ "latitude": 35.680679,
+ "longitude": 139.76482,
+ "polygon": [
+ [
+ 139.7647101098901,
+ 35.68076909009009
+ ],
+ [
+ 139.76492989010987,
+ 35.68076909009009
+ ],
+ [
+ 139.76492989010987,
+ 35.68058890990991
+ ],
+ [
+ 139.7647101098901,
+ 35.68058890990991
+ ],
+ [
+ 139.7647101098901,
+ 35.68076909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tenjimbashi.959.2",
+ "name": "天神橋",
+ "latitude": 35.71699,
+ "longitude": 139.871455,
+ "polygon": [
+ [
+ 139.87134510989011,
+ 35.71708009009009
+ ],
+ [
+ 139.87156489010988,
+ 35.71708009009009
+ ],
+ [
+ 139.87156489010988,
+ 35.71689990990991
+ ],
+ [
+ 139.87134510989011,
+ 35.71689990990991
+ ],
+ [
+ 139.87134510989011,
+ 35.71708009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tennozubashi.960.1",
+ "name": "天王洲橋",
+ "latitude": 35.619649,
+ "longitude": 139.745239,
+ "polygon": [
+ [
+ 139.74512910989012,
+ 35.61973909009009
+ ],
+ [
+ 139.74534889010988,
+ 35.61973909009009
+ ],
+ [
+ 139.74534889010988,
+ 35.61955890990991
+ ],
+ [
+ 139.74512910989012,
+ 35.61955890990991
+ ],
+ [
+ 139.74512910989012,
+ 35.61973909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tennozubashi.960.2",
+ "name": "天王洲橋",
+ "latitude": 35.619843,
+ "longitude": 139.746461,
+ "polygon": [
+ [
+ 139.74635110989013,
+ 35.61993309009009
+ ],
+ [
+ 139.7465708901099,
+ 35.61993309009009
+ ],
+ [
+ 139.7465708901099,
+ 35.61975290990991
+ ],
+ [
+ 139.74635110989013,
+ 35.61975290990991
+ ],
+ [
+ 139.74635110989013,
+ 35.61993309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tennozubashi.960.3",
+ "name": "天王洲橋",
+ "latitude": 35.621244,
+ "longitude": 139.745792,
+ "polygon": [
+ [
+ 139.7456821098901,
+ 35.62133409009009
+ ],
+ [
+ 139.74590189010988,
+ 35.62133409009009
+ ],
+ [
+ 139.74590189010988,
+ 35.62115390990991
+ ],
+ [
+ 139.7456821098901,
+ 35.62115390990991
+ ],
+ [
+ 139.7456821098901,
+ 35.62133409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tennozubashi.960.5",
+ "name": "天王洲橋",
+ "latitude": 35.621075,
+ "longitude": 139.74614,
+ "polygon": [
+ [
+ 139.7460301098901,
+ 35.62116509009009
+ ],
+ [
+ 139.74624989010988,
+ 35.62116509009009
+ ],
+ [
+ 139.74624989010988,
+ 35.62098490990991
+ ],
+ [
+ 139.7460301098901,
+ 35.62098490990991
+ ],
+ [
+ 139.7460301098901,
+ 35.62116509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Denzuin.961.1",
+ "name": "伝通院前",
+ "latitude": 35.710026,
+ "longitude": 139.746312,
+ "polygon": [
+ [
+ 139.7462021098901,
+ 35.71011609009009
+ ],
+ [
+ 139.74642189010987,
+ 35.71011609009009
+ ],
+ [
+ 139.74642189010987,
+ 35.70993590990991
+ ],
+ [
+ 139.7462021098901,
+ 35.70993590990991
+ ],
+ [
+ 139.7462021098901,
+ 35.71011609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoSoshajo.987.1",
+ "name": "東陽操車所前",
+ "latitude": 35.669319,
+ "longitude": 139.813518,
+ "polygon": [
+ [
+ 139.8134081098901,
+ 35.66940909009009
+ ],
+ [
+ 139.81362789010987,
+ 35.66940909009009
+ ],
+ [
+ 139.81362789010987,
+ 35.66922890990991
+ ],
+ [
+ 139.8134081098901,
+ 35.66922890990991
+ ],
+ [
+ 139.8134081098901,
+ 35.66940909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Denzuin.961.2",
+ "name": "伝通院前",
+ "latitude": 35.710769,
+ "longitude": 139.745491,
+ "polygon": [
+ [
+ 139.7453811098901,
+ 35.71085909009009
+ ],
+ [
+ 139.74560089010987,
+ 35.71085909009009
+ ],
+ [
+ 139.74560089010987,
+ 35.71067890990991
+ ],
+ [
+ 139.7453811098901,
+ 35.71067890990991
+ ],
+ [
+ 139.7453811098901,
+ 35.71085909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Denzuin.961.3",
+ "name": "伝通院前",
+ "latitude": 35.709826,
+ "longitude": 139.746093,
+ "polygon": [
+ [
+ 139.74598310989012,
+ 35.70991609009009
+ ],
+ [
+ 139.74620289010988,
+ 35.70991609009009
+ ],
+ [
+ 139.74620289010988,
+ 35.70973590990991
+ ],
+ [
+ 139.74598310989012,
+ 35.70973590990991
+ ],
+ [
+ 139.74598310989012,
+ 35.70991609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Denzuin.961.4",
+ "name": "伝通院前",
+ "latitude": 35.710855,
+ "longitude": 139.745866,
+ "polygon": [
+ [
+ 139.74575610989012,
+ 35.71094509009009
+ ],
+ [
+ 139.7459758901099,
+ 35.71094509009009
+ ],
+ [
+ 139.7459758901099,
+ 35.71076490990991
+ ],
+ [
+ 139.74575610989012,
+ 35.71076490990991
+ ],
+ [
+ 139.74575610989012,
+ 35.71094509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyuHyakkatenHonten.963.1",
+ "name": "東急百貨店本店前",
+ "latitude": 35.660767,
+ "longitude": 139.696789,
+ "polygon": [
+ [
+ 139.6966791098901,
+ 35.66085709009009
+ ],
+ [
+ 139.69689889010988,
+ 35.66085709009009
+ ],
+ [
+ 139.69689889010988,
+ 35.66067690990991
+ ],
+ [
+ 139.6966791098901,
+ 35.66067690990991
+ ],
+ [
+ 139.6966791098901,
+ 35.66085709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoIdaiByoin.964.1",
+ "name": "東京医大病院前",
+ "latitude": 35.694523,
+ "longitude": 139.692215,
+ "polygon": [
+ [
+ 139.69210510989012,
+ 35.69461309009009
+ ],
+ [
+ 139.6923248901099,
+ 35.69461309009009
+ ],
+ [
+ 139.6923248901099,
+ 35.69443290990991
+ ],
+ [
+ 139.69210510989012,
+ 35.69443290990991
+ ],
+ [
+ 139.69210510989012,
+ 35.69461309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTanko.976.2",
+ "name": "東京炭坑前",
+ "latitude": 35.823084,
+ "longitude": 139.285425,
+ "polygon": [
+ [
+ 139.28531510989012,
+ 35.82317409009009
+ ],
+ [
+ 139.2855348901099,
+ 35.82317409009009
+ ],
+ [
+ 139.2855348901099,
+ 35.82299390990991
+ ],
+ [
+ 139.28531510989012,
+ 35.82299390990991
+ ],
+ [
+ 139.28531510989012,
+ 35.82317409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoIdaiByoin.964.2",
+ "name": "東京医大病院前",
+ "latitude": 35.693942,
+ "longitude": 139.694555,
+ "polygon": [
+ [
+ 139.69444510989013,
+ 35.69403209009009
+ ],
+ [
+ 139.6946648901099,
+ 35.69403209009009
+ ],
+ [
+ 139.6946648901099,
+ 35.69385190990991
+ ],
+ [
+ 139.69444510989013,
+ 35.69385190990991
+ ],
+ [
+ 139.69444510989013,
+ 35.69403209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationMarunouchiKitaguchi.965.1",
+ "name": "東京駅丸の内北口",
+ "latitude": 35.682228,
+ "longitude": 139.765036,
+ "polygon": [
+ [
+ 139.76492610989013,
+ 35.68231809009009
+ ],
+ [
+ 139.7651458901099,
+ 35.68231809009009
+ ],
+ [
+ 139.7651458901099,
+ 35.68213790990991
+ ],
+ [
+ 139.76492610989013,
+ 35.68213790990991
+ ],
+ [
+ 139.76492610989013,
+ 35.68231809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationMarunouchiKitaguchi.965.2",
+ "name": "東京駅丸の内北口",
+ "latitude": 35.682392,
+ "longitude": 139.765096,
+ "polygon": [
+ [
+ 139.76498610989012,
+ 35.68248209009009
+ ],
+ [
+ 139.76520589010988,
+ 35.68248209009009
+ ],
+ [
+ 139.76520589010988,
+ 35.68230190990991
+ ],
+ [
+ 139.76498610989012,
+ 35.68230190990991
+ ],
+ [
+ 139.76498610989012,
+ 35.68248209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationMarunouchiKitaguchi.965.3",
+ "name": "東京駅丸の内北口",
+ "latitude": 35.682491,
+ "longitude": 139.765523,
+ "polygon": [
+ [
+ 139.76541310989012,
+ 35.68258109009009
+ ],
+ [
+ 139.76563289010988,
+ 35.68258109009009
+ ],
+ [
+ 139.76563289010988,
+ 35.68240090990991
+ ],
+ [
+ 139.76541310989012,
+ 35.68240090990991
+ ],
+ [
+ 139.76541310989012,
+ 35.68258109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationMarunouchiMinamiguchi.966.2",
+ "name": "東京駅丸の内南口",
+ "latitude": 35.680858,
+ "longitude": 139.764696,
+ "polygon": [
+ [
+ 139.7645861098901,
+ 35.68094809009009
+ ],
+ [
+ 139.76480589010987,
+ 35.68094809009009
+ ],
+ [
+ 139.76480589010987,
+ 35.68076790990991
+ ],
+ [
+ 139.7645861098901,
+ 35.68076790990991
+ ],
+ [
+ 139.7645861098901,
+ 35.68094809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationYaesuguchi.967.2",
+ "name": "東京駅八重洲口",
+ "latitude": 35.679684,
+ "longitude": 139.76824,
+ "polygon": [
+ [
+ 139.7681301098901,
+ 35.67977409009009
+ ],
+ [
+ 139.76834989010987,
+ 35.67977409009009
+ ],
+ [
+ 139.76834989010987,
+ 35.67959390990991
+ ],
+ [
+ 139.7681301098901,
+ 35.67959390990991
+ ],
+ [
+ 139.7681301098901,
+ 35.67977409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationYaesuguchi.967.3",
+ "name": "東京駅八重洲口",
+ "latitude": 35.679516,
+ "longitude": 139.768154,
+ "polygon": [
+ [
+ 139.76804410989013,
+ 35.67960609009009
+ ],
+ [
+ 139.7682638901099,
+ 35.67960609009009
+ ],
+ [
+ 139.7682638901099,
+ 35.67942590990991
+ ],
+ [
+ 139.76804410989013,
+ 35.67942590990991
+ ],
+ [
+ 139.76804410989013,
+ 35.67960609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoStationYaesuguchi.967.4",
+ "name": "東京駅八重洲口",
+ "latitude": 35.67924,
+ "longitude": 139.767963,
+ "polygon": [
+ [
+ 139.76785310989013,
+ 35.67933009009009
+ ],
+ [
+ 139.7680728901099,
+ 35.67933009009009
+ ],
+ [
+ 139.7680728901099,
+ 35.67914990990991
+ ],
+ [
+ 139.76785310989013,
+ 35.67914990990991
+ ],
+ [
+ 139.76785310989013,
+ 35.67933009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKaiyoDaigakuEtchujimaKosha.969.1",
+ "name": "東京海洋大学越中島校舎前",
+ "latitude": 35.667384,
+ "longitude": 139.79347,
+ "polygon": [
+ [
+ 139.79336010989013,
+ 35.66747409009009
+ ],
+ [
+ 139.7935798901099,
+ 35.66747409009009
+ ],
+ [
+ 139.7935798901099,
+ 35.66729390990991
+ ],
+ [
+ 139.79336010989013,
+ 35.66729390990991
+ ],
+ [
+ 139.79336010989013,
+ 35.66747409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKaiyoDaigakuEtchujimaKosha.969.2",
+ "name": "東京海洋大学越中島校舎前",
+ "latitude": 35.667284,
+ "longitude": 139.793328,
+ "polygon": [
+ [
+ 139.79321810989012,
+ 35.66737409009009
+ ],
+ [
+ 139.79343789010989,
+ 35.66737409009009
+ ],
+ [
+ 139.79343789010989,
+ 35.66719390990991
+ ],
+ [
+ 139.79321810989012,
+ 35.66719390990991
+ ],
+ [
+ 139.79321810989012,
+ 35.66737409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Rakusuibashi.972.2",
+ "name": "楽水橋(品川車庫入口)",
+ "latitude": 35.624104,
+ "longitude": 139.745286,
+ "polygon": [
+ [
+ 139.7451761098901,
+ 35.62419409009009
+ ],
+ [
+ 139.74539589010988,
+ 35.62419409009009
+ ],
+ [
+ 139.74539589010988,
+ 35.62401390990991
+ ],
+ [
+ 139.7451761098901,
+ 35.62401390990991
+ ],
+ [
+ 139.7451761098901,
+ 35.62419409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoJogakkan.970.2",
+ "name": "東京女学館前",
+ "latitude": 35.65581,
+ "longitude": 139.717572,
+ "polygon": [
+ [
+ 139.7174621098901,
+ 35.65590009009009
+ ],
+ [
+ 139.71768189010987,
+ 35.65590009009009
+ ],
+ [
+ 139.71768189010987,
+ 35.65571990990991
+ ],
+ [
+ 139.7174621098901,
+ 35.65571990990991
+ ],
+ [
+ 139.7174621098901,
+ 35.65590009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoJoshiIdai.971.1",
+ "name": "東京女子医大前",
+ "latitude": 35.697518,
+ "longitude": 139.71974,
+ "polygon": [
+ [
+ 139.71963010989012,
+ 35.69760809009009
+ ],
+ [
+ 139.71984989010988,
+ 35.69760809009009
+ ],
+ [
+ 139.71984989010988,
+ 35.69742790990991
+ ],
+ [
+ 139.71963010989012,
+ 35.69742790990991
+ ],
+ [
+ 139.71963010989012,
+ 35.69760809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoJoshiIdai.971.2",
+ "name": "東京女子医大前",
+ "latitude": 35.697418,
+ "longitude": 139.719907,
+ "polygon": [
+ [
+ 139.71979710989012,
+ 35.69750809009009
+ ],
+ [
+ 139.7200168901099,
+ 35.69750809009009
+ ],
+ [
+ 139.7200168901099,
+ 35.69732790990991
+ ],
+ [
+ 139.71979710989012,
+ 35.69732790990991
+ ],
+ [
+ 139.71979710989012,
+ 35.69750809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoJoshiIdai.971.3",
+ "name": "東京女子医大前",
+ "latitude": 35.697307,
+ "longitude": 139.720515,
+ "polygon": [
+ [
+ 139.72040510989012,
+ 35.69739709009009
+ ],
+ [
+ 139.7206248901099,
+ 35.69739709009009
+ ],
+ [
+ 139.7206248901099,
+ 35.69721690990991
+ ],
+ [
+ 139.72040510989012,
+ 35.69721690990991
+ ],
+ [
+ 139.72040510989012,
+ 35.69739709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Rakusuibashi.972.1",
+ "name": "楽水橋(品川車庫入口)",
+ "latitude": 35.624733,
+ "longitude": 139.74496,
+ "polygon": [
+ [
+ 139.7448501098901,
+ 35.62482309009009
+ ],
+ [
+ 139.74506989010987,
+ 35.62482309009009
+ ],
+ [
+ 139.74506989010987,
+ 35.62464290990991
+ ],
+ [
+ 139.7448501098901,
+ 35.62464290990991
+ ],
+ [
+ 139.7448501098901,
+ 35.62482309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyozeikanOiShutchojo.973.1",
+ "name": "東京税関大井出張所前",
+ "latitude": 35.592886,
+ "longitude": 139.766511,
+ "polygon": [
+ [
+ 139.76640110989013,
+ 35.59297609009009
+ ],
+ [
+ 139.7666208901099,
+ 35.59297609009009
+ ],
+ [
+ 139.7666208901099,
+ 35.59279590990991
+ ],
+ [
+ 139.76640110989013,
+ 35.59279590990991
+ ],
+ [
+ 139.76640110989013,
+ 35.59297609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyozeikanOiShutchojo.973.2",
+ "name": "東京税関大井出張所前",
+ "latitude": 35.594483,
+ "longitude": 139.765916,
+ "polygon": [
+ [
+ 139.76580610989012,
+ 35.59457309009009
+ ],
+ [
+ 139.7660258901099,
+ 35.59457309009009
+ ],
+ [
+ 139.7660258901099,
+ 35.59439290990991
+ ],
+ [
+ 139.76580610989012,
+ 35.59439290990991
+ ],
+ [
+ 139.76580610989012,
+ 35.59457309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoShutsunyukokuzairyuKanrikyoku.974.1",
+ "name": "東京出入国在留管理局前",
+ "latitude": 35.628102,
+ "longitude": 139.756095,
+ "polygon": [
+ [
+ 139.7559851098901,
+ 35.62819209009009
+ ],
+ [
+ 139.75620489010987,
+ 35.62819209009009
+ ],
+ [
+ 139.75620489010987,
+ 35.62801190990991
+ ],
+ [
+ 139.7559851098901,
+ 35.62801190990991
+ ],
+ [
+ 139.7559851098901,
+ 35.62819209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoShutsunyukokuzairyuKanrikyoku.974.2",
+ "name": "東京出入国在留管理局前",
+ "latitude": 35.627938,
+ "longitude": 139.755719,
+ "polygon": [
+ [
+ 139.75560910989012,
+ 35.62802809009009
+ ],
+ [
+ 139.75582889010988,
+ 35.62802809009009
+ ],
+ [
+ 139.75582889010988,
+ 35.62784790990991
+ ],
+ [
+ 139.75560910989012,
+ 35.62784790990991
+ ],
+ [
+ 139.75560910989012,
+ 35.62802809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTower.975.1",
+ "name": "東京タワー",
+ "latitude": 35.657934,
+ "longitude": 139.745742,
+ "polygon": [
+ [
+ 139.74563210989012,
+ 35.65802409009009
+ ],
+ [
+ 139.7458518901099,
+ 35.65802409009009
+ ],
+ [
+ 139.7458518901099,
+ 35.65784390990991
+ ],
+ [
+ 139.74563210989012,
+ 35.65784390990991
+ ],
+ [
+ 139.74563210989012,
+ 35.65802409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SamezuUntenMenkyoShikenjo.977.1",
+ "name": "鮫洲運転免許試験場前",
+ "latitude": 35.604785,
+ "longitude": 139.746401,
+ "polygon": [
+ [
+ 139.7462911098901,
+ 35.60487509009009
+ ],
+ [
+ 139.74651089010987,
+ 35.60487509009009
+ ],
+ [
+ 139.74651089010987,
+ 35.60469490990991
+ ],
+ [
+ 139.7462911098901,
+ 35.60469490990991
+ ],
+ [
+ 139.7462911098901,
+ 35.60487509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SamezuUntenMenkyoShikenjo.977.2",
+ "name": "鮫洲運転免許試験場前",
+ "latitude": 35.604151,
+ "longitude": 139.745942,
+ "polygon": [
+ [
+ 139.74583210989013,
+ 35.60424109009009
+ ],
+ [
+ 139.7460518901099,
+ 35.60424109009009
+ ],
+ [
+ 139.7460518901099,
+ 35.60406090990991
+ ],
+ [
+ 139.74583210989013,
+ 35.60406090990991
+ ],
+ [
+ 139.74583210989013,
+ 35.60424109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenHigashi.978.1",
+ "name": "新田東",
+ "latitude": 35.770603,
+ "longitude": 139.746051,
+ "polygon": [
+ [
+ 139.7459411098901,
+ 35.77069309009009
+ ],
+ [
+ 139.74616089010988,
+ 35.77069309009009
+ ],
+ [
+ 139.74616089010988,
+ 35.77051290990991
+ ],
+ [
+ 139.7459411098901,
+ 35.77051290990991
+ ],
+ [
+ 139.7459411098901,
+ 35.77069309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShindenHigashi.978.2",
+ "name": "新田東",
+ "latitude": 35.770525,
+ "longitude": 139.745745,
+ "polygon": [
+ [
+ 139.74563510989012,
+ 35.77061509009009
+ ],
+ [
+ 139.74585489010988,
+ 35.77061509009009
+ ],
+ [
+ 139.74585489010988,
+ 35.77043490990991
+ ],
+ [
+ 139.74563510989012,
+ 35.77043490990991
+ ],
+ [
+ 139.74563510989012,
+ 35.77061509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiAkamon.979.1",
+ "name": "東大赤門前",
+ "latitude": 35.710037,
+ "longitude": 139.760047,
+ "polygon": [
+ [
+ 139.7599371098901,
+ 35.71012709009009
+ ],
+ [
+ 139.76015689010987,
+ 35.71012709009009
+ ],
+ [
+ 139.76015689010987,
+ 35.70994690990991
+ ],
+ [
+ 139.7599371098901,
+ 35.70994690990991
+ ],
+ [
+ 139.7599371098901,
+ 35.71012709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TobuAsakusaStation.984.2",
+ "name": "東武浅草駅前",
+ "latitude": 35.712207,
+ "longitude": 139.797733,
+ "polygon": [
+ [
+ 139.7976231098901,
+ 35.71229709009009
+ ],
+ [
+ 139.79784289010988,
+ 35.71229709009009
+ ],
+ [
+ 139.79784289010988,
+ 35.71211690990991
+ ],
+ [
+ 139.7976231098901,
+ 35.71211690990991
+ ],
+ [
+ 139.7976231098901,
+ 35.71229709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiAkamon.979.2",
+ "name": "東大赤門前",
+ "latitude": 35.709988,
+ "longitude": 139.760248,
+ "polygon": [
+ [
+ 139.7601381098901,
+ 35.71007809009009
+ ],
+ [
+ 139.76035789010987,
+ 35.71007809009009
+ ],
+ [
+ 139.76035789010987,
+ 35.70989790990991
+ ],
+ [
+ 139.7601381098901,
+ 35.70989790990991
+ ],
+ [
+ 139.7601381098901,
+ 35.71007809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiKonai.980.1",
+ "name": "東大構内",
+ "latitude": 35.713246,
+ "longitude": 139.764125,
+ "polygon": [
+ [
+ 139.76401510989012,
+ 35.71333609009009
+ ],
+ [
+ 139.7642348901099,
+ 35.71333609009009
+ ],
+ [
+ 139.7642348901099,
+ 35.71315590990991
+ ],
+ [
+ 139.76401510989012,
+ 35.71315590990991
+ ],
+ [
+ 139.76401510989012,
+ 35.71333609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiKonai.980.2",
+ "name": "東大構内",
+ "latitude": 35.713223,
+ "longitude": 139.764178,
+ "polygon": [
+ [
+ 139.7640681098901,
+ 35.71331309009009
+ ],
+ [
+ 139.76428789010987,
+ 35.71331309009009
+ ],
+ [
+ 139.76428789010987,
+ 35.71313290990991
+ ],
+ [
+ 139.7640681098901,
+ 35.71313290990991
+ ],
+ [
+ 139.7640681098901,
+ 35.71331309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiKonai.980.3",
+ "name": "東大構内",
+ "latitude": 35.713295,
+ "longitude": 139.763974,
+ "polygon": [
+ [
+ 139.7638641098901,
+ 35.71338509009009
+ ],
+ [
+ 139.76408389010987,
+ 35.71338509009009
+ ],
+ [
+ 139.76408389010987,
+ 35.71320490990991
+ ],
+ [
+ 139.7638641098901,
+ 35.71320490990991
+ ],
+ [
+ 139.7638641098901,
+ 35.71338509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiSeimon.981.1",
+ "name": "東大正門前",
+ "latitude": 35.712239,
+ "longitude": 139.759492,
+ "polygon": [
+ [
+ 139.7593821098901,
+ 35.71232909009009
+ ],
+ [
+ 139.75960189010988,
+ 35.71232909009009
+ ],
+ [
+ 139.75960189010988,
+ 35.71214890990991
+ ],
+ [
+ 139.7593821098901,
+ 35.71214890990991
+ ],
+ [
+ 139.7593821098901,
+ 35.71232909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiSeimon.981.2",
+ "name": "東大正門前",
+ "latitude": 35.712214,
+ "longitude": 139.759675,
+ "polygon": [
+ [
+ 139.7595651098901,
+ 35.71230409009009
+ ],
+ [
+ 139.75978489010987,
+ 35.71230409009009
+ ],
+ [
+ 139.75978489010987,
+ 35.71212390990991
+ ],
+ [
+ 139.7595651098901,
+ 35.71212390990991
+ ],
+ [
+ 139.7595651098901,
+ 35.71230409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiNogakubu.982.1",
+ "name": "東大農学部前",
+ "latitude": 35.715072,
+ "longitude": 139.75827,
+ "polygon": [
+ [
+ 139.75816010989013,
+ 35.71516209009009
+ ],
+ [
+ 139.7583798901099,
+ 35.71516209009009
+ ],
+ [
+ 139.7583798901099,
+ 35.71498190990991
+ ],
+ [
+ 139.75816010989013,
+ 35.71498190990991
+ ],
+ [
+ 139.75816010989013,
+ 35.71516209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiNogakubu.982.2",
+ "name": "東大農学部前",
+ "latitude": 35.716478,
+ "longitude": 139.758356,
+ "polygon": [
+ [
+ 139.7582461098901,
+ 35.71656809009009
+ ],
+ [
+ 139.75846589010987,
+ 35.71656809009009
+ ],
+ [
+ 139.75846589010987,
+ 35.71638790990991
+ ],
+ [
+ 139.7582461098901,
+ 35.71638790990991
+ ],
+ [
+ 139.7582461098901,
+ 35.71656809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiNogakubu.982.3",
+ "name": "東大農学部前",
+ "latitude": 35.715478,
+ "longitude": 139.75944,
+ "polygon": [
+ [
+ 139.75933010989013,
+ 35.71556809009009
+ ],
+ [
+ 139.7595498901099,
+ 35.71556809009009
+ ],
+ [
+ 139.7595498901099,
+ 35.71538790990991
+ ],
+ [
+ 139.75933010989013,
+ 35.71538790990991
+ ],
+ [
+ 139.75933010989013,
+ 35.71556809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TobuAsakusaStation.984.3",
+ "name": "東武浅草駅前",
+ "latitude": 35.711363,
+ "longitude": 139.798085,
+ "polygon": [
+ [
+ 139.7979751098901,
+ 35.71145309009009
+ ],
+ [
+ 139.79819489010987,
+ 35.71145309009009
+ ],
+ [
+ 139.79819489010987,
+ 35.71127290990991
+ ],
+ [
+ 139.7979751098901,
+ 35.71127290990991
+ ],
+ [
+ 139.7979751098901,
+ 35.71145309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiNogakubu.982.4",
+ "name": "東大農学部前",
+ "latitude": 35.716531,
+ "longitude": 139.758503,
+ "polygon": [
+ [
+ 139.7583931098901,
+ 35.716621090090094
+ ],
+ [
+ 139.75861289010987,
+ 35.716621090090094
+ ],
+ [
+ 139.75861289010987,
+ 35.71644090990991
+ ],
+ [
+ 139.7583931098901,
+ 35.71644090990991
+ ],
+ [
+ 139.7583931098901,
+ 35.716621090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiByoin.983.1",
+ "name": "東大病院前",
+ "latitude": 35.710937,
+ "longitude": 139.763892,
+ "polygon": [
+ [
+ 139.76378210989012,
+ 35.71102709009009
+ ],
+ [
+ 139.76400189010988,
+ 35.71102709009009
+ ],
+ [
+ 139.76400189010988,
+ 35.71084690990991
+ ],
+ [
+ 139.76378210989012,
+ 35.71084690990991
+ ],
+ [
+ 139.76378210989012,
+ 35.71102709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiByoin.983.2",
+ "name": "東大病院前",
+ "latitude": 35.710874,
+ "longitude": 139.764022,
+ "polygon": [
+ [
+ 139.76391210989013,
+ 35.71096409009009
+ ],
+ [
+ 139.7641318901099,
+ 35.71096409009009
+ ],
+ [
+ 139.7641318901099,
+ 35.71078390990991
+ ],
+ [
+ 139.76391210989013,
+ 35.71078390990991
+ ],
+ [
+ 139.76391210989013,
+ 35.71096409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TodaiByoin.983.3",
+ "name": "東大病院前",
+ "latitude": 35.711017,
+ "longitude": 139.764031,
+ "polygon": [
+ [
+ 139.7639211098901,
+ 35.71110709009009
+ ],
+ [
+ 139.76414089010987,
+ 35.71110709009009
+ ],
+ [
+ 139.76414089010987,
+ 35.71092690990991
+ ],
+ [
+ 139.7639211098901,
+ 35.71092690990991
+ ],
+ [
+ 139.7639211098901,
+ 35.71110709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TobuAsakusaStation.984.1",
+ "name": "東武浅草駅前",
+ "latitude": 35.71137,
+ "longitude": 139.797657,
+ "polygon": [
+ [
+ 139.7975471098901,
+ 35.71146009009009
+ ],
+ [
+ 139.79776689010987,
+ 35.71146009009009
+ ],
+ [
+ 139.79776689010987,
+ 35.71127990990991
+ ],
+ [
+ 139.7975471098901,
+ 35.71127990990991
+ ],
+ [
+ 139.7975471098901,
+ 35.71146009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TobuAsakusaStation.984.4",
+ "name": "東武浅草駅前",
+ "latitude": 35.712382,
+ "longitude": 139.797914,
+ "polygon": [
+ [
+ 139.7978041098901,
+ 35.71247209009009
+ ],
+ [
+ 139.79802389010987,
+ 35.71247209009009
+ ],
+ [
+ 139.79802389010987,
+ 35.71229190990991
+ ],
+ [
+ 139.7978041098901,
+ 35.71229190990991
+ ],
+ [
+ 139.7978041098901,
+ 35.71247209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TobuAsakusaStation.984.5",
+ "name": "東武浅草駅前",
+ "latitude": 35.711381,
+ "longitude": 139.798349,
+ "polygon": [
+ [
+ 139.79823910989012,
+ 35.71147109009009
+ ],
+ [
+ 139.79845889010988,
+ 35.71147109009009
+ ],
+ [
+ 139.79845889010988,
+ 35.71129090990991
+ ],
+ [
+ 139.79823910989012,
+ 35.71129090990991
+ ],
+ [
+ 139.79823910989012,
+ 35.71147109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTower.985.2",
+ "name": "東京タワー(公園下)",
+ "latitude": 35.65723,
+ "longitude": 139.746156,
+ "polygon": [
+ [
+ 139.74604610989013,
+ 35.65732009009009
+ ],
+ [
+ 139.7462658901099,
+ 35.65732009009009
+ ],
+ [
+ 139.7462658901099,
+ 35.65713990990991
+ ],
+ [
+ 139.74604610989013,
+ 35.65713990990991
+ ],
+ [
+ 139.74604610989013,
+ 35.65732009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TobuByoin.986.1",
+ "name": "東部病院前",
+ "latitude": 35.778682,
+ "longitude": 139.798154,
+ "polygon": [
+ [
+ 139.79804410989013,
+ 35.778772090090094
+ ],
+ [
+ 139.7982638901099,
+ 35.778772090090094
+ ],
+ [
+ 139.7982638901099,
+ 35.77859190990991
+ ],
+ [
+ 139.79804410989013,
+ 35.77859190990991
+ ],
+ [
+ 139.79804410989013,
+ 35.778772090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TobuByoin.986.2",
+ "name": "東部病院前",
+ "latitude": 35.778466,
+ "longitude": 139.799435,
+ "polygon": [
+ [
+ 139.7993251098901,
+ 35.77855609009009
+ ],
+ [
+ 139.79954489010987,
+ 35.77855609009009
+ ],
+ [
+ 139.79954489010987,
+ 35.77837590990991
+ ],
+ [
+ 139.7993251098901,
+ 35.77837590990991
+ ],
+ [
+ 139.7993251098901,
+ 35.77855609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoDaigaku.988.1",
+ "name": "東洋大学前",
+ "latitude": 35.724167,
+ "longitude": 139.751044,
+ "polygon": [
+ [
+ 139.75093410989012,
+ 35.72425709009009
+ ],
+ [
+ 139.7511538901099,
+ 35.72425709009009
+ ],
+ [
+ 139.7511538901099,
+ 35.72407690990991
+ ],
+ [
+ 139.75093410989012,
+ 35.72407690990991
+ ],
+ [
+ 139.75093410989012,
+ 35.72425709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoDaigaku.988.2",
+ "name": "東洋大学前",
+ "latitude": 35.724772,
+ "longitude": 139.750218,
+ "polygon": [
+ [
+ 139.7501081098901,
+ 35.72486209009009
+ ],
+ [
+ 139.75032789010987,
+ 35.72486209009009
+ ],
+ [
+ 139.75032789010987,
+ 35.72468190990991
+ ],
+ [
+ 139.7501081098901,
+ 35.72468190990991
+ ],
+ [
+ 139.7501081098901,
+ 35.72486209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyochoStation.989.1",
+ "name": "東陽町駅前",
+ "latitude": 35.669697,
+ "longitude": 139.81675,
+ "polygon": [
+ [
+ 139.81664010989013,
+ 35.66978709009009
+ ],
+ [
+ 139.8168598901099,
+ 35.66978709009009
+ ],
+ [
+ 139.8168598901099,
+ 35.66960690990991
+ ],
+ [
+ 139.81664010989013,
+ 35.66960690990991
+ ],
+ [
+ 139.81664010989013,
+ 35.66978709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyochoStation.989.2",
+ "name": "東陽町駅前",
+ "latitude": 35.669697,
+ "longitude": 139.816922,
+ "polygon": [
+ [
+ 139.81681210989012,
+ 35.66978709009009
+ ],
+ [
+ 139.8170318901099,
+ 35.66978709009009
+ ],
+ [
+ 139.8170318901099,
+ 35.66960690990991
+ ],
+ [
+ 139.81681210989012,
+ 35.66960690990991
+ ],
+ [
+ 139.81681210989012,
+ 35.66978709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaRokuchome.1007.1",
+ "name": "豊島六丁目",
+ "latitude": 35.763497,
+ "longitude": 139.748994,
+ "polygon": [
+ [
+ 139.74888410989013,
+ 35.76358709009009
+ ],
+ [
+ 139.7491038901099,
+ 35.76358709009009
+ ],
+ [
+ 139.7491038901099,
+ 35.76340690990991
+ ],
+ [
+ 139.74888410989013,
+ 35.76340690990991
+ ],
+ [
+ 139.74888410989013,
+ 35.76358709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyochoStation.989.3",
+ "name": "東陽町駅前",
+ "latitude": 35.669707,
+ "longitude": 139.817064,
+ "polygon": [
+ [
+ 139.8169541098901,
+ 35.66979709009009
+ ],
+ [
+ 139.81717389010987,
+ 35.66979709009009
+ ],
+ [
+ 139.81717389010987,
+ 35.66961690990991
+ ],
+ [
+ 139.8169541098901,
+ 35.66961690990991
+ ],
+ [
+ 139.8169541098901,
+ 35.66979709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyochoStation.989.5",
+ "name": "東陽町駅前",
+ "latitude": 35.670131,
+ "longitude": 139.816311,
+ "polygon": [
+ [
+ 139.81620110989013,
+ 35.67022109009009
+ ],
+ [
+ 139.8164208901099,
+ 35.67022109009009
+ ],
+ [
+ 139.8164208901099,
+ 35.67004090990991
+ ],
+ [
+ 139.81620110989013,
+ 35.67004090990991
+ ],
+ [
+ 139.81620110989013,
+ 35.67022109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyochoStation.989.6",
+ "name": "東陽町駅前",
+ "latitude": 35.670604,
+ "longitude": 139.816514,
+ "polygon": [
+ [
+ 139.81640410989013,
+ 35.67069409009009
+ ],
+ [
+ 139.8166238901099,
+ 35.67069409009009
+ ],
+ [
+ 139.8166238901099,
+ 35.67051390990991
+ ],
+ [
+ 139.81640410989013,
+ 35.67051390990991
+ ],
+ [
+ 139.81640410989013,
+ 35.67069409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyochoStation.989.7",
+ "name": "東陽町駅前",
+ "latitude": 35.668853,
+ "longitude": 139.816546,
+ "polygon": [
+ [
+ 139.8164361098901,
+ 35.66894309009009
+ ],
+ [
+ 139.81665589010987,
+ 35.66894309009009
+ ],
+ [
+ 139.81665589010987,
+ 35.66876290990991
+ ],
+ [
+ 139.8164361098901,
+ 35.66876290990991
+ ],
+ [
+ 139.8164361098901,
+ 35.66894309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyochoStation.989.8",
+ "name": "東陽町駅前",
+ "latitude": 35.66939,
+ "longitude": 139.815404,
+ "polygon": [
+ [
+ 139.81529410989012,
+ 35.66948009009009
+ ],
+ [
+ 139.81551389010988,
+ 35.66948009009009
+ ],
+ [
+ 139.81551389010988,
+ 35.66929990990991
+ ],
+ [
+ 139.81529410989012,
+ 35.66929990990991
+ ],
+ [
+ 139.81529410989012,
+ 35.66948009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoItchome.990.1",
+ "name": "東陽一丁目",
+ "latitude": 35.667469,
+ "longitude": 139.810758,
+ "polygon": [
+ [
+ 139.8106481098901,
+ 35.66755909009009
+ ],
+ [
+ 139.81086789010988,
+ 35.66755909009009
+ ],
+ [
+ 139.81086789010988,
+ 35.66737890990991
+ ],
+ [
+ 139.8106481098901,
+ 35.66737890990991
+ ],
+ [
+ 139.8106481098901,
+ 35.66755909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoItchome.990.2",
+ "name": "東陽一丁目",
+ "latitude": 35.667468,
+ "longitude": 139.811055,
+ "polygon": [
+ [
+ 139.81094510989013,
+ 35.66755809009009
+ ],
+ [
+ 139.8111648901099,
+ 35.66755809009009
+ ],
+ [
+ 139.8111648901099,
+ 35.66737790990991
+ ],
+ [
+ 139.81094510989013,
+ 35.66737790990991
+ ],
+ [
+ 139.81094510989013,
+ 35.66755809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoSanchome.991.1",
+ "name": "東陽三丁目",
+ "latitude": 35.670209,
+ "longitude": 139.810942,
+ "polygon": [
+ [
+ 139.81083210989013,
+ 35.67029909009009
+ ],
+ [
+ 139.8110518901099,
+ 35.67029909009009
+ ],
+ [
+ 139.8110518901099,
+ 35.67011890990991
+ ],
+ [
+ 139.81083210989013,
+ 35.67011890990991
+ ],
+ [
+ 139.81083210989013,
+ 35.67029909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoSanchome.991.2",
+ "name": "東陽三丁目",
+ "latitude": 35.669848,
+ "longitude": 139.810989,
+ "polygon": [
+ [
+ 139.81087910989012,
+ 35.66993809009009
+ ],
+ [
+ 139.8110988901099,
+ 35.66993809009009
+ ],
+ [
+ 139.8110988901099,
+ 35.66975790990991
+ ],
+ [
+ 139.81087910989012,
+ 35.66975790990991
+ ],
+ [
+ 139.81087910989012,
+ 35.66993809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoSanchome.991.3",
+ "name": "東陽三丁目",
+ "latitude": 35.669242,
+ "longitude": 139.811608,
+ "polygon": [
+ [
+ 139.81149810989012,
+ 35.66933209009009
+ ],
+ [
+ 139.8117178901099,
+ 35.66933209009009
+ ],
+ [
+ 139.8117178901099,
+ 35.66915190990991
+ ],
+ [
+ 139.81149810989012,
+ 35.66915190990991
+ ],
+ [
+ 139.81149810989012,
+ 35.66933209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoSanchome.991.4",
+ "name": "東陽三丁目",
+ "latitude": 35.669429,
+ "longitude": 139.810303,
+ "polygon": [
+ [
+ 139.81019310989012,
+ 35.66951909009009
+ ],
+ [
+ 139.8104128901099,
+ 35.66951909009009
+ ],
+ [
+ 139.8104128901099,
+ 35.66933890990991
+ ],
+ [
+ 139.81019310989012,
+ 35.66933890990991
+ ],
+ [
+ 139.81019310989012,
+ 35.66951909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoGochome.992.1",
+ "name": "東陽五丁目",
+ "latitude": 35.672081,
+ "longitude": 139.811493,
+ "polygon": [
+ [
+ 139.81138310989013,
+ 35.67217109009009
+ ],
+ [
+ 139.8116028901099,
+ 35.67217109009009
+ ],
+ [
+ 139.8116028901099,
+ 35.67199090990991
+ ],
+ [
+ 139.81138310989013,
+ 35.67199090990991
+ ],
+ [
+ 139.81138310989013,
+ 35.67217109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoGochome.992.2",
+ "name": "東陽五丁目",
+ "latitude": 35.672179,
+ "longitude": 139.811383,
+ "polygon": [
+ [
+ 139.81127310989012,
+ 35.67226909009009
+ ],
+ [
+ 139.8114928901099,
+ 35.67226909009009
+ ],
+ [
+ 139.8114928901099,
+ 35.67208890990991
+ ],
+ [
+ 139.81127310989012,
+ 35.67208890990991
+ ],
+ [
+ 139.81127310989012,
+ 35.67226909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoRokuchome.993.1",
+ "name": "東陽六丁目",
+ "latitude": 35.675182,
+ "longitude": 139.812092,
+ "polygon": [
+ [
+ 139.81198210989012,
+ 35.67527209009009
+ ],
+ [
+ 139.8122018901099,
+ 35.67527209009009
+ ],
+ [
+ 139.8122018901099,
+ 35.67509190990991
+ ],
+ [
+ 139.81198210989012,
+ 35.67509190990991
+ ],
+ [
+ 139.81198210989012,
+ 35.67527209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToeiToyamaHeights.996.1",
+ "name": "都営戸山ハイツ前",
+ "latitude": 35.700885,
+ "longitude": 139.70995,
+ "polygon": [
+ [
+ 139.7098401098901,
+ 35.70097509009009
+ ],
+ [
+ 139.71005989010987,
+ 35.70097509009009
+ ],
+ [
+ 139.71005989010987,
+ 35.70079490990991
+ ],
+ [
+ 139.7098401098901,
+ 35.70079490990991
+ ],
+ [
+ 139.7098401098901,
+ 35.70097509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToriSanchome.997.1",
+ "name": "通り三丁目",
+ "latitude": 35.679398,
+ "longitude": 139.770868,
+ "polygon": [
+ [
+ 139.77075810989012,
+ 35.67948809009009
+ ],
+ [
+ 139.7709778901099,
+ 35.67948809009009
+ ],
+ [
+ 139.7709778901099,
+ 35.67930790990991
+ ],
+ [
+ 139.77075810989012,
+ 35.67930790990991
+ ],
+ [
+ 139.77075810989012,
+ 35.67948809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToriSanchome.997.2",
+ "name": "通り三丁目",
+ "latitude": 35.679149,
+ "longitude": 139.772418,
+ "polygon": [
+ [
+ 139.7723081098901,
+ 35.67923909009009
+ ],
+ [
+ 139.77252789010987,
+ 35.67923909009009
+ ],
+ [
+ 139.77252789010987,
+ 35.67905890990991
+ ],
+ [
+ 139.7723081098901,
+ 35.67905890990991
+ ],
+ [
+ 139.7723081098901,
+ 35.67923909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarezaIkebukuro.998.1",
+ "name": "Hareza池袋",
+ "latitude": 35.73267,
+ "longitude": 139.715533,
+ "polygon": [
+ [
+ 139.7154231098901,
+ 35.73276009009009
+ ],
+ [
+ 139.71564289010988,
+ 35.73276009009009
+ ],
+ [
+ 139.71564289010988,
+ 35.73257990990991
+ ],
+ [
+ 139.7154231098901,
+ 35.73257990990991
+ ],
+ [
+ 139.7154231098901,
+ 35.73276009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarezaIkebukuro.998.2",
+ "name": "Hareza池袋",
+ "latitude": 35.732642,
+ "longitude": 139.715099,
+ "polygon": [
+ [
+ 139.71498910989013,
+ 35.73273209009009
+ ],
+ [
+ 139.7152088901099,
+ 35.73273209009009
+ ],
+ [
+ 139.7152088901099,
+ 35.73255190990991
+ ],
+ [
+ 139.71498910989013,
+ 35.73255190990991
+ ],
+ [
+ 139.71498910989013,
+ 35.73273209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiIkebukuroSanchome.999.1",
+ "name": "東池袋三丁目",
+ "latitude": 35.73004,
+ "longitude": 139.723499,
+ "polygon": [
+ [
+ 139.72338910989012,
+ 35.73013009009009
+ ],
+ [
+ 139.7236088901099,
+ 35.73013009009009
+ ],
+ [
+ 139.7236088901099,
+ 35.72994990990991
+ ],
+ [
+ 139.72338910989012,
+ 35.72994990990991
+ ],
+ [
+ 139.72338910989012,
+ 35.73013009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiIkebukuroSanchome.999.2",
+ "name": "東池袋三丁目",
+ "latitude": 35.73061,
+ "longitude": 139.722012,
+ "polygon": [
+ [
+ 139.72190210989012,
+ 35.73070009009009
+ ],
+ [
+ 139.7221218901099,
+ 35.73070009009009
+ ],
+ [
+ 139.7221218901099,
+ 35.73051990990991
+ ],
+ [
+ 139.72190210989012,
+ 35.73051990990991
+ ],
+ [
+ 139.72190210989012,
+ 35.73070009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toshimabashi.1000.1",
+ "name": "豊島橋",
+ "latitude": 35.763829,
+ "longitude": 139.757723,
+ "polygon": [
+ [
+ 139.75761310989012,
+ 35.76391909009009
+ ],
+ [
+ 139.75783289010988,
+ 35.76391909009009
+ ],
+ [
+ 139.75783289010988,
+ 35.76373890990991
+ ],
+ [
+ 139.75761310989012,
+ 35.76373890990991
+ ],
+ [
+ 139.75761310989012,
+ 35.76391909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toshimabashi.1000.2",
+ "name": "豊島橋",
+ "latitude": 35.764372,
+ "longitude": 139.757305,
+ "polygon": [
+ [
+ 139.75719510989012,
+ 35.76446209009009
+ ],
+ [
+ 139.75741489010989,
+ 35.76446209009009
+ ],
+ [
+ 139.75741489010989,
+ 35.76428190990991
+ ],
+ [
+ 139.75719510989012,
+ 35.76428190990991
+ ],
+ [
+ 139.75719510989012,
+ 35.76446209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaNichome.1001.1",
+ "name": "豊島二丁目",
+ "latitude": 35.757364,
+ "longitude": 139.743101,
+ "polygon": [
+ [
+ 139.7429911098901,
+ 35.75745409009009
+ ],
+ [
+ 139.74321089010988,
+ 35.75745409009009
+ ],
+ [
+ 139.74321089010988,
+ 35.75727390990991
+ ],
+ [
+ 139.7429911098901,
+ 35.75727390990991
+ ],
+ [
+ 139.7429911098901,
+ 35.75745409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaNichome.1001.2",
+ "name": "豊島二丁目",
+ "latitude": 35.757169,
+ "longitude": 139.742634,
+ "polygon": [
+ [
+ 139.74252410989013,
+ 35.75725909009009
+ ],
+ [
+ 139.7427438901099,
+ 35.75725909009009
+ ],
+ [
+ 139.7427438901099,
+ 35.75707890990991
+ ],
+ [
+ 139.74252410989013,
+ 35.75707890990991
+ ],
+ [
+ 139.74252410989013,
+ 35.75725909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaSanchome.1002.1",
+ "name": "豊島三丁目",
+ "latitude": 35.759088,
+ "longitude": 139.744734,
+ "polygon": [
+ [
+ 139.7446241098901,
+ 35.75917809009009
+ ],
+ [
+ 139.74484389010988,
+ 35.75917809009009
+ ],
+ [
+ 139.74484389010988,
+ 35.75899790990991
+ ],
+ [
+ 139.7446241098901,
+ 35.75899790990991
+ ],
+ [
+ 139.7446241098901,
+ 35.75917809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaSanchome.1002.2",
+ "name": "豊島三丁目",
+ "latitude": 35.758968,
+ "longitude": 139.744475,
+ "polygon": [
+ [
+ 139.7443651098901,
+ 35.75905809009009
+ ],
+ [
+ 139.74458489010988,
+ 35.75905809009009
+ ],
+ [
+ 139.74458489010988,
+ 35.75887790990991
+ ],
+ [
+ 139.7443651098901,
+ 35.75887790990991
+ ],
+ [
+ 139.7443651098901,
+ 35.75905809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaYonchome.1003.1",
+ "name": "豊島四丁目",
+ "latitude": 35.761663,
+ "longitude": 139.747077,
+ "polygon": [
+ [
+ 139.7469671098901,
+ 35.76175309009009
+ ],
+ [
+ 139.74718689010987,
+ 35.76175309009009
+ ],
+ [
+ 139.74718689010987,
+ 35.76157290990991
+ ],
+ [
+ 139.7469671098901,
+ 35.76157290990991
+ ],
+ [
+ 139.7469671098901,
+ 35.76175309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaYonchome.1003.2",
+ "name": "豊島四丁目",
+ "latitude": 35.76226,
+ "longitude": 139.747776,
+ "polygon": [
+ [
+ 139.7476661098901,
+ 35.76235009009009
+ ],
+ [
+ 139.74788589010987,
+ 35.76235009009009
+ ],
+ [
+ 139.74788589010987,
+ 35.76216990990991
+ ],
+ [
+ 139.7476661098901,
+ 35.76216990990991
+ ],
+ [
+ 139.7476661098901,
+ 35.76235009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaGochomeDanchi.1004.1",
+ "name": "豊島五丁目団地",
+ "latitude": 35.763483,
+ "longitude": 139.752966,
+ "polygon": [
+ [
+ 139.7528561098901,
+ 35.76357309009009
+ ],
+ [
+ 139.75307589010987,
+ 35.76357309009009
+ ],
+ [
+ 139.75307589010987,
+ 35.76339290990991
+ ],
+ [
+ 139.7528561098901,
+ 35.76339290990991
+ ],
+ [
+ 139.7528561098901,
+ 35.76357309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaGochomeDanchi.1004.2",
+ "name": "豊島五丁目団地",
+ "latitude": 35.763913,
+ "longitude": 139.752165,
+ "polygon": [
+ [
+ 139.7520551098901,
+ 35.76400309009009
+ ],
+ [
+ 139.75227489010987,
+ 35.76400309009009
+ ],
+ [
+ 139.75227489010987,
+ 35.76382290990991
+ ],
+ [
+ 139.7520551098901,
+ 35.76382290990991
+ ],
+ [
+ 139.7520551098901,
+ 35.76400309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaGochomeDanchi.1004.3",
+ "name": "豊島五丁目団地",
+ "latitude": 35.764114,
+ "longitude": 139.752637,
+ "polygon": [
+ [
+ 139.7525271098901,
+ 35.76420409009009
+ ],
+ [
+ 139.75274689010988,
+ 35.76420409009009
+ ],
+ [
+ 139.75274689010988,
+ 35.76402390990991
+ ],
+ [
+ 139.7525271098901,
+ 35.76402390990991
+ ],
+ [
+ 139.7525271098901,
+ 35.76420409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaGochomeDanchi.1004.4",
+ "name": "豊島五丁目団地",
+ "latitude": 35.764256,
+ "longitude": 139.752127,
+ "polygon": [
+ [
+ 139.75201710989012,
+ 35.76434609009009
+ ],
+ [
+ 139.75223689010988,
+ 35.76434609009009
+ ],
+ [
+ 139.75223689010988,
+ 35.76416590990991
+ ],
+ [
+ 139.75201710989012,
+ 35.76416590990991
+ ],
+ [
+ 139.75201710989012,
+ 35.76434609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaGochomeDanchi.1004.5",
+ "name": "豊島五丁目団地",
+ "latitude": 35.764259,
+ "longitude": 139.752218,
+ "polygon": [
+ [
+ 139.75210810989012,
+ 35.76434909009009
+ ],
+ [
+ 139.75232789010988,
+ 35.76434909009009
+ ],
+ [
+ 139.75232789010988,
+ 35.76416890990991
+ ],
+ [
+ 139.75210810989012,
+ 35.76416890990991
+ ],
+ [
+ 139.75210810989012,
+ 35.76434909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKokusaiForum.1008.1",
+ "name": "東京国際フォーラム前",
+ "latitude": 35.678493,
+ "longitude": 139.763491,
+ "polygon": [
+ [
+ 139.7633811098901,
+ 35.67858309009009
+ ],
+ [
+ 139.76360089010987,
+ 35.67858309009009
+ ],
+ [
+ 139.76360089010987,
+ 35.67840290990991
+ ],
+ [
+ 139.7633811098901,
+ 35.67840290990991
+ ],
+ [
+ 139.7633811098901,
+ 35.67858309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaNanachome.1005.1",
+ "name": "豊島七丁目",
+ "latitude": 35.76476,
+ "longitude": 139.742473,
+ "polygon": [
+ [
+ 139.7423631098901,
+ 35.76485009009009
+ ],
+ [
+ 139.74258289010987,
+ 35.76485009009009
+ ],
+ [
+ 139.74258289010987,
+ 35.76466990990991
+ ],
+ [
+ 139.7423631098901,
+ 35.76466990990991
+ ],
+ [
+ 139.7423631098901,
+ 35.76485009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaHatchome.1006.1",
+ "name": "豊島八丁目",
+ "latitude": 35.763889,
+ "longitude": 139.741289,
+ "polygon": [
+ [
+ 139.7411791098901,
+ 35.76397909009009
+ ],
+ [
+ 139.74139889010988,
+ 35.76397909009009
+ ],
+ [
+ 139.74139889010988,
+ 35.76379890990991
+ ],
+ [
+ 139.7411791098901,
+ 35.76379890990991
+ ],
+ [
+ 139.7411791098901,
+ 35.76397909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaHatchome.1006.2",
+ "name": "豊島八丁目",
+ "latitude": 35.76404,
+ "longitude": 139.740161,
+ "polygon": [
+ [
+ 139.74005110989012,
+ 35.76413009009009
+ ],
+ [
+ 139.74027089010988,
+ 35.76413009009009
+ ],
+ [
+ 139.74027089010988,
+ 35.76394990990991
+ ],
+ [
+ 139.74005110989012,
+ 35.76394990990991
+ ],
+ [
+ 139.74005110989012,
+ 35.76413009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaHatchome.1006.3",
+ "name": "豊島八丁目",
+ "latitude": 35.765978,
+ "longitude": 139.739428,
+ "polygon": [
+ [
+ 139.73931810989012,
+ 35.76606809009009
+ ],
+ [
+ 139.7395378901099,
+ 35.76606809009009
+ ],
+ [
+ 139.7395378901099,
+ 35.76588790990991
+ ],
+ [
+ 139.73931810989012,
+ 35.76588790990991
+ ],
+ [
+ 139.73931810989012,
+ 35.76606809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaRokuchome.1007.2",
+ "name": "豊島六丁目",
+ "latitude": 35.763736,
+ "longitude": 139.74911,
+ "polygon": [
+ [
+ 139.74900010989012,
+ 35.76382609009009
+ ],
+ [
+ 139.74921989010988,
+ 35.76382609009009
+ ],
+ [
+ 139.74921989010988,
+ 35.76364590990991
+ ],
+ [
+ 139.74900010989012,
+ 35.76364590990991
+ ],
+ [
+ 139.74900010989012,
+ 35.76382609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toyozumibashi.1027.3",
+ "name": "豊住橋",
+ "latitude": 35.674683,
+ "longitude": 139.816199,
+ "polygon": [
+ [
+ 139.81608910989013,
+ 35.67477309009009
+ ],
+ [
+ 139.8163088901099,
+ 35.67477309009009
+ ],
+ [
+ 139.8163088901099,
+ 35.67459290990991
+ ],
+ [
+ 139.81608910989013,
+ 35.67459290990991
+ ],
+ [
+ 139.81608910989013,
+ 35.67477309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKokusaiForum.1008.3",
+ "name": "東京国際フォーラム前",
+ "latitude": 35.677469,
+ "longitude": 139.763346,
+ "polygon": [
+ [
+ 139.76323610989013,
+ 35.67755909009009
+ ],
+ [
+ 139.7634558901099,
+ 35.67755909009009
+ ],
+ [
+ 139.7634558901099,
+ 35.67737890990991
+ ],
+ [
+ 139.76323610989013,
+ 35.67737890990991
+ ],
+ [
+ 139.76323610989013,
+ 35.67755909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukukuShakaifukushiKyogikai.1009.1",
+ "name": "新宿区社会福祉協議会前",
+ "latitude": 35.712031,
+ "longitude": 139.707304,
+ "polygon": [
+ [
+ 139.7071941098901,
+ 35.71212109009009
+ ],
+ [
+ 139.70741389010988,
+ 35.71212109009009
+ ],
+ [
+ 139.70741389010988,
+ 35.71194090990991
+ ],
+ [
+ 139.7071941098901,
+ 35.71194090990991
+ ],
+ [
+ 139.7071941098901,
+ 35.71212109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukukuShakaifukushiKyogikai.1009.2",
+ "name": "新宿区社会福祉協議会前",
+ "latitude": 35.712067,
+ "longitude": 139.707519,
+ "polygon": [
+ [
+ 139.7074091098901,
+ 35.71215709009009
+ ],
+ [
+ 139.70762889010987,
+ 35.71215709009009
+ ],
+ [
+ 139.70762889010987,
+ 35.71197690990991
+ ],
+ [
+ 139.7074091098901,
+ 35.71197690990991
+ ],
+ [
+ 139.7074091098901,
+ 35.71215709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tonogaya.1015.1",
+ "name": "殿ヶ谷",
+ "latitude": 35.765801,
+ "longitude": 139.361978,
+ "polygon": [
+ [
+ 139.3618681098901,
+ 35.76589109009009
+ ],
+ [
+ 139.36208789010988,
+ 35.76589109009009
+ ],
+ [
+ 139.36208789010988,
+ 35.76571090990991
+ ],
+ [
+ 139.3618681098901,
+ 35.76571090990991
+ ],
+ [
+ 139.3618681098901,
+ 35.76589109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tonogaya.1015.2",
+ "name": "殿ヶ谷",
+ "latitude": 35.765593,
+ "longitude": 139.362265,
+ "polygon": [
+ [
+ 139.36215510989013,
+ 35.76568309009009
+ ],
+ [
+ 139.3623748901099,
+ 35.76568309009009
+ ],
+ [
+ 139.3623748901099,
+ 35.76550290990991
+ ],
+ [
+ 139.36215510989013,
+ 35.76550290990991
+ ],
+ [
+ 139.36215510989013,
+ 35.76568309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TomiokaItchome.1016.1",
+ "name": "富岡一丁目(とみおかいっちょうめ)",
+ "latitude": 35.670276,
+ "longitude": 139.8,
+ "polygon": [
+ [
+ 139.79989010989013,
+ 35.67036609009009
+ ],
+ [
+ 139.8001098901099,
+ 35.67036609009009
+ ],
+ [
+ 139.8001098901099,
+ 35.67018590990991
+ ],
+ [
+ 139.79989010989013,
+ 35.67018590990991
+ ],
+ [
+ 139.79989010989013,
+ 35.67036609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TomiokaItchome.1016.2",
+ "name": "富岡一丁目(とみおかいっちょうめ)",
+ "latitude": 35.670077,
+ "longitude": 139.799886,
+ "polygon": [
+ [
+ 139.7997761098901,
+ 35.67016709009009
+ ],
+ [
+ 139.79999589010987,
+ 35.67016709009009
+ ],
+ [
+ 139.79999589010987,
+ 35.66998690990991
+ ],
+ [
+ 139.7997761098901,
+ 35.66998690990991
+ ],
+ [
+ 139.7997761098901,
+ 35.67016709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tomigaya.1017.1",
+ "name": "富ヶ谷",
+ "latitude": 35.667782,
+ "longitude": 139.689547,
+ "polygon": [
+ [
+ 139.68943710989012,
+ 35.66787209009009
+ ],
+ [
+ 139.6896568901099,
+ 35.66787209009009
+ ],
+ [
+ 139.6896568901099,
+ 35.66769190990991
+ ],
+ [
+ 139.68943710989012,
+ 35.66769190990991
+ ],
+ [
+ 139.68943710989012,
+ 35.66787209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Tomigaya.1017.2",
+ "name": "富ヶ谷",
+ "latitude": 35.66756,
+ "longitude": 139.691353,
+ "polygon": [
+ [
+ 139.6912431098901,
+ 35.66765009009009
+ ],
+ [
+ 139.69146289010988,
+ 35.66765009009009
+ ],
+ [
+ 139.69146289010988,
+ 35.66746990990991
+ ],
+ [
+ 139.6912431098901,
+ 35.66746990990991
+ ],
+ [
+ 139.6912431098901,
+ 35.66765009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TomisakaUe.1018.1",
+ "name": "富坂上",
+ "latitude": 35.709163,
+ "longitude": 139.748601,
+ "polygon": [
+ [
+ 139.74849110989013,
+ 35.70925309009009
+ ],
+ [
+ 139.7487108901099,
+ 35.70925309009009
+ ],
+ [
+ 139.7487108901099,
+ 35.70907290990991
+ ],
+ [
+ 139.74849110989013,
+ 35.70907290990991
+ ],
+ [
+ 139.74849110989013,
+ 35.70925309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TomisakaUe.1018.2",
+ "name": "富坂上",
+ "latitude": 35.709197,
+ "longitude": 139.748912,
+ "polygon": [
+ [
+ 139.7488021098901,
+ 35.70928709009009
+ ],
+ [
+ 139.74902189010987,
+ 35.70928709009009
+ ],
+ [
+ 139.74902189010987,
+ 35.70910690990991
+ ],
+ [
+ 139.7488021098901,
+ 35.70910690990991
+ ],
+ [
+ 139.7488021098901,
+ 35.70928709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokuritsuKokusaiIryoKenkyuCenter.1019.1",
+ "name": "国立国際医療センター前",
+ "latitude": 35.701257,
+ "longitude": 139.715769,
+ "polygon": [
+ [
+ 139.7156591098901,
+ 35.70134709009009
+ ],
+ [
+ 139.71587889010988,
+ 35.70134709009009
+ ],
+ [
+ 139.71587889010988,
+ 35.70116690990991
+ ],
+ [
+ 139.7156591098901,
+ 35.70116690990991
+ ],
+ [
+ 139.7156591098901,
+ 35.70134709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokuritsuKokusaiIryoKenkyuCenter.1019.2",
+ "name": "国立国際医療センター前",
+ "latitude": 35.701201,
+ "longitude": 139.715482,
+ "polygon": [
+ [
+ 139.71537210989013,
+ 35.70129109009009
+ ],
+ [
+ 139.7155918901099,
+ 35.70129109009009
+ ],
+ [
+ 139.7155918901099,
+ 35.70111090990991
+ ],
+ [
+ 139.71537210989013,
+ 35.70111090990991
+ ],
+ [
+ 139.71537210989013,
+ 35.70129109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuYonchome.1021.1",
+ "name": "豊洲四丁目",
+ "latitude": 35.656019,
+ "longitude": 139.798442,
+ "polygon": [
+ [
+ 139.7983321098901,
+ 35.65610909009009
+ ],
+ [
+ 139.79855189010988,
+ 35.65610909009009
+ ],
+ [
+ 139.79855189010988,
+ 35.65592890990991
+ ],
+ [
+ 139.7983321098901,
+ 35.65592890990991
+ ],
+ [
+ 139.7983321098901,
+ 35.65610909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuYonchome.1021.2",
+ "name": "豊洲四丁目",
+ "latitude": 35.655633,
+ "longitude": 139.798407,
+ "polygon": [
+ [
+ 139.79829710989011,
+ 35.65572309009009
+ ],
+ [
+ 139.79851689010988,
+ 35.65572309009009
+ ],
+ [
+ 139.79851689010988,
+ 35.65554290990991
+ ],
+ [
+ 139.79829710989011,
+ 35.65554290990991
+ ],
+ [
+ 139.79829710989011,
+ 35.65572309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuNichome.1024.1",
+ "name": "豊洲二丁目",
+ "latitude": 35.656371,
+ "longitude": 139.794463,
+ "polygon": [
+ [
+ 139.79435310989012,
+ 35.65646109009009
+ ],
+ [
+ 139.7945728901099,
+ 35.65646109009009
+ ],
+ [
+ 139.7945728901099,
+ 35.65628090990991
+ ],
+ [
+ 139.79435310989012,
+ 35.65628090990991
+ ],
+ [
+ 139.79435310989012,
+ 35.65646109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuNichome.1024.2",
+ "name": "豊洲二丁目",
+ "latitude": 35.65688,
+ "longitude": 139.794522,
+ "polygon": [
+ [
+ 139.79441210989012,
+ 35.65697009009009
+ ],
+ [
+ 139.79463189010988,
+ 35.65697009009009
+ ],
+ [
+ 139.79463189010988,
+ 35.65678990990991
+ ],
+ [
+ 139.79441210989012,
+ 35.65678990990991
+ ],
+ [
+ 139.79441210989012,
+ 35.65697009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.1",
+ "name": "豊洲駅前",
+ "latitude": 35.654982,
+ "longitude": 139.795068,
+ "polygon": [
+ [
+ 139.7949581098901,
+ 35.65507209009009
+ ],
+ [
+ 139.79517789010987,
+ 35.65507209009009
+ ],
+ [
+ 139.79517789010987,
+ 35.65489190990991
+ ],
+ [
+ 139.7949581098901,
+ 35.65489190990991
+ ],
+ [
+ 139.7949581098901,
+ 35.65507209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.2",
+ "name": "豊洲駅前",
+ "latitude": 35.65489,
+ "longitude": 139.795161,
+ "polygon": [
+ [
+ 139.79505110989012,
+ 35.65498009009009
+ ],
+ [
+ 139.7952708901099,
+ 35.65498009009009
+ ],
+ [
+ 139.7952708901099,
+ 35.65479990990991
+ ],
+ [
+ 139.79505110989012,
+ 35.65479990990991
+ ],
+ [
+ 139.79505110989012,
+ 35.65498009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.3",
+ "name": "豊洲駅前",
+ "latitude": 35.654799,
+ "longitude": 139.795263,
+ "polygon": [
+ [
+ 139.79515310989012,
+ 35.65488909009009
+ ],
+ [
+ 139.7953728901099,
+ 35.65488909009009
+ ],
+ [
+ 139.7953728901099,
+ 35.65470890990991
+ ],
+ [
+ 139.79515310989012,
+ 35.65470890990991
+ ],
+ [
+ 139.79515310989012,
+ 35.65488909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.4",
+ "name": "豊洲駅前",
+ "latitude": 35.654993,
+ "longitude": 139.795563,
+ "polygon": [
+ [
+ 139.7954531098901,
+ 35.65508309009009
+ ],
+ [
+ 139.79567289010987,
+ 35.65508309009009
+ ],
+ [
+ 139.79567289010987,
+ 35.65490290990991
+ ],
+ [
+ 139.7954531098901,
+ 35.65490290990991
+ ],
+ [
+ 139.7954531098901,
+ 35.65508309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.5",
+ "name": "豊洲駅前",
+ "latitude": 35.655154,
+ "longitude": 139.795679,
+ "polygon": [
+ [
+ 139.79556910989012,
+ 35.65524409009009
+ ],
+ [
+ 139.7957888901099,
+ 35.65524409009009
+ ],
+ [
+ 139.7957888901099,
+ 35.65506390990991
+ ],
+ [
+ 139.79556910989012,
+ 35.65506390990991
+ ],
+ [
+ 139.79556910989012,
+ 35.65524409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.6",
+ "name": "豊洲駅前",
+ "latitude": 35.653771,
+ "longitude": 139.797051,
+ "polygon": [
+ [
+ 139.79694110989013,
+ 35.65386109009009
+ ],
+ [
+ 139.7971608901099,
+ 35.65386109009009
+ ],
+ [
+ 139.7971608901099,
+ 35.65368090990991
+ ],
+ [
+ 139.79694110989013,
+ 35.65368090990991
+ ],
+ [
+ 139.79694110989013,
+ 35.65386109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.7",
+ "name": "豊洲駅前",
+ "latitude": 35.655265,
+ "longitude": 139.797318,
+ "polygon": [
+ [
+ 139.7972081098901,
+ 35.65535509009009
+ ],
+ [
+ 139.79742789010987,
+ 35.65535509009009
+ ],
+ [
+ 139.79742789010987,
+ 35.65517490990991
+ ],
+ [
+ 139.7972081098901,
+ 35.65517490990991
+ ],
+ [
+ 139.7972081098901,
+ 35.65535509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.8",
+ "name": "豊洲駅前",
+ "latitude": 35.65505,
+ "longitude": 139.796979,
+ "polygon": [
+ [
+ 139.7968691098901,
+ 35.65514009009009
+ ],
+ [
+ 139.79708889010988,
+ 35.65514009009009
+ ],
+ [
+ 139.79708889010988,
+ 35.65495990990991
+ ],
+ [
+ 139.7968691098901,
+ 35.65495990990991
+ ],
+ [
+ 139.7968691098901,
+ 35.65514009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.9",
+ "name": "豊洲駅前",
+ "latitude": 35.65515,
+ "longitude": 139.797123,
+ "polygon": [
+ [
+ 139.79701310989012,
+ 35.65524009009009
+ ],
+ [
+ 139.79723289010988,
+ 35.65524009009009
+ ],
+ [
+ 139.79723289010988,
+ 35.65505990990991
+ ],
+ [
+ 139.79701310989012,
+ 35.65505990990991
+ ],
+ [
+ 139.79701310989012,
+ 35.65524009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.10",
+ "name": "豊洲駅前",
+ "latitude": 35.654318,
+ "longitude": 139.797086,
+ "polygon": [
+ [
+ 139.79697610989012,
+ 35.654408090090094
+ ],
+ [
+ 139.7971958901099,
+ 35.654408090090094
+ ],
+ [
+ 139.7971958901099,
+ 35.65422790990991
+ ],
+ [
+ 139.79697610989012,
+ 35.65422790990991
+ ],
+ [
+ 139.79697610989012,
+ 35.654408090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.11",
+ "name": "豊洲駅前",
+ "latitude": 35.654154,
+ "longitude": 139.797249,
+ "polygon": [
+ [
+ 139.7971391098901,
+ 35.65424409009009
+ ],
+ [
+ 139.79735889010988,
+ 35.65424409009009
+ ],
+ [
+ 139.79735889010988,
+ 35.65406390990991
+ ],
+ [
+ 139.7971391098901,
+ 35.65406390990991
+ ],
+ [
+ 139.7971391098901,
+ 35.65424409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.12",
+ "name": "豊洲駅前",
+ "latitude": 35.653926,
+ "longitude": 139.795894,
+ "polygon": [
+ [
+ 139.79578410989012,
+ 35.65401609009009
+ ],
+ [
+ 139.7960038901099,
+ 35.65401609009009
+ ],
+ [
+ 139.7960038901099,
+ 35.65383590990991
+ ],
+ [
+ 139.79578410989012,
+ 35.65383590990991
+ ],
+ [
+ 139.79578410989012,
+ 35.65401609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuStation.1025.13",
+ "name": "豊洲駅前",
+ "latitude": 35.654002,
+ "longitude": 139.795975,
+ "polygon": [
+ [
+ 139.79586510989012,
+ 35.65409209009009
+ ],
+ [
+ 139.79608489010988,
+ 35.65409209009009
+ ],
+ [
+ 139.79608489010988,
+ 35.65391190990991
+ ],
+ [
+ 139.79586510989012,
+ 35.65391190990991
+ ],
+ [
+ 139.79586510989012,
+ 35.65409209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IHI.1026.1",
+ "name": "IHI前",
+ "latitude": 35.657604,
+ "longitude": 139.793225,
+ "polygon": [
+ [
+ 139.79311510989012,
+ 35.65769409009009
+ ],
+ [
+ 139.7933348901099,
+ 35.65769409009009
+ ],
+ [
+ 139.7933348901099,
+ 35.65751390990991
+ ],
+ [
+ 139.79311510989012,
+ 35.65751390990991
+ ],
+ [
+ 139.79311510989012,
+ 35.65769409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IHI.1026.2",
+ "name": "IHI前",
+ "latitude": 35.658676,
+ "longitude": 139.79277,
+ "polygon": [
+ [
+ 139.7926601098901,
+ 35.65876609009009
+ ],
+ [
+ 139.79287989010987,
+ 35.65876609009009
+ ],
+ [
+ 139.79287989010987,
+ 35.65858590990991
+ ],
+ [
+ 139.7926601098901,
+ 35.65858590990991
+ ],
+ [
+ 139.7926601098901,
+ 35.65876609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaKasaiNanachome.1070.2",
+ "name": "中葛西七丁目",
+ "latitude": 35.656226,
+ "longitude": 139.863842,
+ "polygon": [
+ [
+ 139.86373210989012,
+ 35.65631609009009
+ ],
+ [
+ 139.8639518901099,
+ 35.65631609009009
+ ],
+ [
+ 139.8639518901099,
+ 35.656135909909906
+ ],
+ [
+ 139.86373210989012,
+ 35.656135909909906
+ ],
+ [
+ 139.86373210989012,
+ 35.65631609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toyozumibashi.1027.1",
+ "name": "豊住橋",
+ "latitude": 35.675891,
+ "longitude": 139.817039,
+ "polygon": [
+ [
+ 139.8169291098901,
+ 35.67598109009009
+ ],
+ [
+ 139.81714889010988,
+ 35.67598109009009
+ ],
+ [
+ 139.81714889010988,
+ 35.67580090990991
+ ],
+ [
+ 139.8169291098901,
+ 35.67580090990991
+ ],
+ [
+ 139.8169291098901,
+ 35.67598109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toyozumibashi.1027.2",
+ "name": "豊住橋",
+ "latitude": 35.675179,
+ "longitude": 139.81594,
+ "polygon": [
+ [
+ 139.81583010989013,
+ 35.67526909009009
+ ],
+ [
+ 139.8160498901099,
+ 35.67526909009009
+ ],
+ [
+ 139.8160498901099,
+ 35.67508890990991
+ ],
+ [
+ 139.81583010989013,
+ 35.67508890990991
+ ],
+ [
+ 139.81583010989013,
+ 35.67526909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuItchome.1028.1",
+ "name": "豊洲一丁目",
+ "latitude": 35.660591,
+ "longitude": 139.793523,
+ "polygon": [
+ [
+ 139.7934131098901,
+ 35.66068109009009
+ ],
+ [
+ 139.79363289010988,
+ 35.66068109009009
+ ],
+ [
+ 139.79363289010988,
+ 35.660500909909906
+ ],
+ [
+ 139.7934131098901,
+ 35.660500909909906
+ ],
+ [
+ 139.7934131098901,
+ 35.66068109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuItchome.1028.3",
+ "name": "豊洲一丁目",
+ "latitude": 35.659894,
+ "longitude": 139.793222,
+ "polygon": [
+ [
+ 139.7931121098901,
+ 35.65998409009009
+ ],
+ [
+ 139.79333189010987,
+ 35.65998409009009
+ ],
+ [
+ 139.79333189010987,
+ 35.65980390990991
+ ],
+ [
+ 139.7931121098901,
+ 35.65980390990991
+ ],
+ [
+ 139.7931121098901,
+ 35.65998409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaKita.1029.1",
+ "name": "豊玉北",
+ "latitude": 35.736508,
+ "longitude": 139.664204,
+ "polygon": [
+ [
+ 139.66409410989013,
+ 35.73659809009009
+ ],
+ [
+ 139.6643138901099,
+ 35.73659809009009
+ ],
+ [
+ 139.6643138901099,
+ 35.73641790990991
+ ],
+ [
+ 139.66409410989013,
+ 35.73641790990991
+ ],
+ [
+ 139.66409410989013,
+ 35.73659809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaKita.1029.2",
+ "name": "豊玉北",
+ "latitude": 35.736277,
+ "longitude": 139.664471,
+ "polygon": [
+ [
+ 139.6643611098901,
+ 35.73636709009009
+ ],
+ [
+ 139.66458089010987,
+ 35.73636709009009
+ ],
+ [
+ 139.66458089010987,
+ 35.73618690990991
+ ],
+ [
+ 139.6643611098901,
+ 35.73618690990991
+ ],
+ [
+ 139.6643611098901,
+ 35.73636709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaKitaYonchome.1031.1",
+ "name": "豊玉北四丁目",
+ "latitude": 35.735315,
+ "longitude": 139.659548,
+ "polygon": [
+ [
+ 139.65943810989012,
+ 35.73540509009009
+ ],
+ [
+ 139.65965789010988,
+ 35.73540509009009
+ ],
+ [
+ 139.65965789010988,
+ 35.73522490990991
+ ],
+ [
+ 139.65943810989012,
+ 35.73522490990991
+ ],
+ [
+ 139.65943810989012,
+ 35.73540509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaKitaYonchome.1031.2",
+ "name": "豊玉北四丁目",
+ "latitude": 35.734544,
+ "longitude": 139.659325,
+ "polygon": [
+ [
+ 139.6592151098901,
+ 35.73463409009009
+ ],
+ [
+ 139.65943489010988,
+ 35.73463409009009
+ ],
+ [
+ 139.65943489010988,
+ 35.73445390990991
+ ],
+ [
+ 139.6592151098901,
+ 35.73445390990991
+ ],
+ [
+ 139.6592151098901,
+ 35.73463409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaNaka.1032.1",
+ "name": "豊玉中",
+ "latitude": 35.729431,
+ "longitude": 139.656589,
+ "polygon": [
+ [
+ 139.6564791098901,
+ 35.72952109009009
+ ],
+ [
+ 139.65669889010988,
+ 35.72952109009009
+ ],
+ [
+ 139.65669889010988,
+ 35.72934090990991
+ ],
+ [
+ 139.6564791098901,
+ 35.72934090990991
+ ],
+ [
+ 139.6564791098901,
+ 35.72952109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaNaka.1032.2",
+ "name": "豊玉中",
+ "latitude": 35.729689,
+ "longitude": 139.656586,
+ "polygon": [
+ [
+ 139.65647610989012,
+ 35.72977909009009
+ ],
+ [
+ 139.6566958901099,
+ 35.72977909009009
+ ],
+ [
+ 139.6566958901099,
+ 35.72959890990991
+ ],
+ [
+ 139.65647610989012,
+ 35.72959890990991
+ ],
+ [
+ 139.65647610989012,
+ 35.72977909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagashimachoKosaten.1106.2",
+ "name": "長島町交差点",
+ "latitude": 35.666866,
+ "longitude": 139.873145,
+ "polygon": [
+ [
+ 139.8730351098901,
+ 35.66695609009009
+ ],
+ [
+ 139.87325489010988,
+ 35.66695609009009
+ ],
+ [
+ 139.87325489010988,
+ 35.66677590990991
+ ],
+ [
+ 139.8730351098901,
+ 35.66677590990991
+ ],
+ [
+ 139.8730351098901,
+ 35.66695609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaNakaItchome.1033.1",
+ "name": "豊玉中一丁目",
+ "latitude": 35.728598,
+ "longitude": 139.661569,
+ "polygon": [
+ [
+ 139.6614591098901,
+ 35.72868809009009
+ ],
+ [
+ 139.66167889010987,
+ 35.72868809009009
+ ],
+ [
+ 139.66167889010987,
+ 35.72850790990991
+ ],
+ [
+ 139.6614591098901,
+ 35.72850790990991
+ ],
+ [
+ 139.6614591098901,
+ 35.72868809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaNakaItchome.1033.2",
+ "name": "豊玉中一丁目",
+ "latitude": 35.728573,
+ "longitude": 139.661519,
+ "polygon": [
+ [
+ 139.66140910989012,
+ 35.72866309009009
+ ],
+ [
+ 139.66162889010988,
+ 35.72866309009009
+ ],
+ [
+ 139.66162889010988,
+ 35.72848290990991
+ ],
+ [
+ 139.66140910989012,
+ 35.72848290990991
+ ],
+ [
+ 139.66140910989012,
+ 35.72866309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaNakaNichome.1034.1",
+ "name": "豊玉中二丁目",
+ "latitude": 35.731164,
+ "longitude": 139.659491,
+ "polygon": [
+ [
+ 139.65938110989012,
+ 35.73125409009009
+ ],
+ [
+ 139.65960089010989,
+ 35.73125409009009
+ ],
+ [
+ 139.65960089010989,
+ 35.73107390990991
+ ],
+ [
+ 139.65938110989012,
+ 35.73107390990991
+ ],
+ [
+ 139.65938110989012,
+ 35.73125409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaNakaNichome.1034.2",
+ "name": "豊玉中二丁目",
+ "latitude": 35.731019,
+ "longitude": 139.658438,
+ "polygon": [
+ [
+ 139.6583281098901,
+ 35.731109090090094
+ ],
+ [
+ 139.65854789010987,
+ 35.731109090090094
+ ],
+ [
+ 139.65854789010987,
+ 35.73092890990991
+ ],
+ [
+ 139.6583281098901,
+ 35.73092890990991
+ ],
+ [
+ 139.6583281098901,
+ 35.731109090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaNakaNichome.1034.3",
+ "name": "豊玉中二丁目",
+ "latitude": 35.731269,
+ "longitude": 139.658411,
+ "polygon": [
+ [
+ 139.65830110989012,
+ 35.73135909009009
+ ],
+ [
+ 139.65852089010988,
+ 35.73135909009009
+ ],
+ [
+ 139.65852089010988,
+ 35.73117890990991
+ ],
+ [
+ 139.65830110989012,
+ 35.73117890990991
+ ],
+ [
+ 139.65830110989012,
+ 35.73135909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyotamaNakaNichome.1034.4",
+ "name": "豊玉中二丁目",
+ "latitude": 35.730608,
+ "longitude": 139.659629,
+ "polygon": [
+ [
+ 139.6595191098901,
+ 35.73069809009009
+ ],
+ [
+ 139.65973889010988,
+ 35.73069809009009
+ ],
+ [
+ 139.65973889010988,
+ 35.730517909909906
+ ],
+ [
+ 139.6595191098901,
+ 35.730517909909906
+ ],
+ [
+ 139.6595191098901,
+ 35.73069809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyomiSuisanFuto.1035.1",
+ "name": "豊海水産埠頭",
+ "latitude": 35.653659,
+ "longitude": 139.769529,
+ "polygon": [
+ [
+ 139.76941910989012,
+ 35.65374909009009
+ ],
+ [
+ 139.7696388901099,
+ 35.65374909009009
+ ],
+ [
+ 139.7696388901099,
+ 35.65356890990991
+ ],
+ [
+ 139.76941910989012,
+ 35.65356890990991
+ ],
+ [
+ 139.76941910989012,
+ 35.65374909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuAdachiKoko.1045.1",
+ "name": "都立足立高校前",
+ "latitude": 35.770179,
+ "longitude": 139.803366,
+ "polygon": [
+ [
+ 139.80325610989013,
+ 35.77026909009009
+ ],
+ [
+ 139.8034758901099,
+ 35.77026909009009
+ ],
+ [
+ 139.8034758901099,
+ 35.77008890990991
+ ],
+ [
+ 139.80325610989013,
+ 35.77008890990991
+ ],
+ [
+ 139.80325610989013,
+ 35.77026909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyomiSuisanFuto.1035.2",
+ "name": "豊海水産埠頭",
+ "latitude": 35.653795,
+ "longitude": 139.769399,
+ "polygon": [
+ [
+ 139.7692891098901,
+ 35.65388509009009
+ ],
+ [
+ 139.76950889010988,
+ 35.65388509009009
+ ],
+ [
+ 139.76950889010988,
+ 35.65370490990991
+ ],
+ [
+ 139.7692891098901,
+ 35.65370490990991
+ ],
+ [
+ 139.7692891098901,
+ 35.65388509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toranomon.1036.1",
+ "name": "虎ノ門",
+ "latitude": 35.670194,
+ "longitude": 139.750266,
+ "polygon": [
+ [
+ 139.75015610989013,
+ 35.67028409009009
+ ],
+ [
+ 139.7503758901099,
+ 35.67028409009009
+ ],
+ [
+ 139.7503758901099,
+ 35.67010390990991
+ ],
+ [
+ 139.75015610989013,
+ 35.67010390990991
+ ],
+ [
+ 139.75015610989013,
+ 35.67028409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Toranomon.1036.2",
+ "name": "虎ノ門",
+ "latitude": 35.669866,
+ "longitude": 139.750473,
+ "polygon": [
+ [
+ 139.75036310989012,
+ 35.66995609009009
+ ],
+ [
+ 139.75058289010988,
+ 35.66995609009009
+ ],
+ [
+ 139.75058289010988,
+ 35.66977590990991
+ ],
+ [
+ 139.75036310989012,
+ 35.66977590990991
+ ],
+ [
+ 139.75036310989012,
+ 35.66995609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToranomonSanchome.1039.3",
+ "name": "虎ノ門三丁目",
+ "latitude": 35.66613,
+ "longitude": 139.747037,
+ "polygon": [
+ [
+ 139.74692710989012,
+ 35.66622009009009
+ ],
+ [
+ 139.7471468901099,
+ 35.66622009009009
+ ],
+ [
+ 139.7471468901099,
+ 35.66603990990991
+ ],
+ [
+ 139.74692710989012,
+ 35.66603990990991
+ ],
+ [
+ 139.74692710989012,
+ 35.66622009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToranomonSanchome.1039.4",
+ "name": "虎ノ門三丁目",
+ "latitude": 35.664168,
+ "longitude": 139.746387,
+ "polygon": [
+ [
+ 139.74627710989012,
+ 35.66425809009009
+ ],
+ [
+ 139.74649689010988,
+ 35.66425809009009
+ ],
+ [
+ 139.74649689010988,
+ 35.664077909909906
+ ],
+ [
+ 139.74627710989012,
+ 35.664077909909906
+ ],
+ [
+ 139.74627710989012,
+ 35.66425809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakazatobashi.1076.1",
+ "name": "中里橋",
+ "latitude": 35.835578,
+ "longitude": 139.27433,
+ "polygon": [
+ [
+ 139.2742201098901,
+ 35.83566809009009
+ ],
+ [
+ 139.27443989010987,
+ 35.83566809009009
+ ],
+ [
+ 139.27443989010987,
+ 35.83548790990991
+ ],
+ [
+ 139.2742201098901,
+ 35.83548790990991
+ ],
+ [
+ 139.2742201098901,
+ 35.83566809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToranomonGochome.1040.1",
+ "name": "虎ノ門五丁目",
+ "latitude": 35.661258,
+ "longitude": 139.743382,
+ "polygon": [
+ [
+ 139.7432721098901,
+ 35.66134809009009
+ ],
+ [
+ 139.74349189010988,
+ 35.66134809009009
+ ],
+ [
+ 139.74349189010988,
+ 35.661167909909906
+ ],
+ [
+ 139.7432721098901,
+ 35.661167909909906
+ ],
+ [
+ 139.7432721098901,
+ 35.66134809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToranomonGochome.1040.2",
+ "name": "虎ノ門五丁目",
+ "latitude": 35.661172,
+ "longitude": 139.743701,
+ "polygon": [
+ [
+ 139.7435911098901,
+ 35.66126209009009
+ ],
+ [
+ 139.74381089010987,
+ 35.66126209009009
+ ],
+ [
+ 139.74381089010987,
+ 35.66108190990991
+ ],
+ [
+ 139.7435911098901,
+ 35.66108190990991
+ ],
+ [
+ 139.7435911098901,
+ 35.66126209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuShinjukuYamabukiKoko.1044.1",
+ "name": "都立新宿山吹高校前",
+ "latitude": 35.70742,
+ "longitude": 139.728631,
+ "polygon": [
+ [
+ 139.72852110989012,
+ 35.70751009009009
+ ],
+ [
+ 139.7287408901099,
+ 35.70751009009009
+ ],
+ [
+ 139.7287408901099,
+ 35.70732990990991
+ ],
+ [
+ 139.72852110989012,
+ 35.70732990990991
+ ],
+ [
+ 139.72852110989012,
+ 35.70751009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DokanYamashita.1055.1",
+ "name": "道灌山下",
+ "latitude": 35.729521,
+ "longitude": 139.76258,
+ "polygon": [
+ [
+ 139.76247010989013,
+ 35.72961109009009
+ ],
+ [
+ 139.7626898901099,
+ 35.72961109009009
+ ],
+ [
+ 139.7626898901099,
+ 35.72943090990991
+ ],
+ [
+ 139.76247010989013,
+ 35.72943090990991
+ ],
+ [
+ 139.76247010989013,
+ 35.72961109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuShinjukuYamabukiKoko.1044.2",
+ "name": "都立新宿山吹高校前",
+ "latitude": 35.707243,
+ "longitude": 139.728197,
+ "polygon": [
+ [
+ 139.7280871098901,
+ 35.70733309009009
+ ],
+ [
+ 139.72830689010988,
+ 35.70733309009009
+ ],
+ [
+ 139.72830689010988,
+ 35.70715290990991
+ ],
+ [
+ 139.7280871098901,
+ 35.70715290990991
+ ],
+ [
+ 139.7280871098901,
+ 35.70733309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuAdachiKoko.1045.2",
+ "name": "都立足立高校前",
+ "latitude": 35.769926,
+ "longitude": 139.803572,
+ "polygon": [
+ [
+ 139.80346210989012,
+ 35.77001609009009
+ ],
+ [
+ 139.80368189010989,
+ 35.77001609009009
+ ],
+ [
+ 139.80368189010989,
+ 35.76983590990991
+ ],
+ [
+ 139.80346210989012,
+ 35.76983590990991
+ ],
+ [
+ 139.80346210989012,
+ 35.77001609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaYonchome.1046.1",
+ "name": "大塚四丁目",
+ "latitude": 35.724178,
+ "longitude": 139.730814,
+ "polygon": [
+ [
+ 139.73070410989013,
+ 35.72426809009009
+ ],
+ [
+ 139.7309238901099,
+ 35.72426809009009
+ ],
+ [
+ 139.7309238901099,
+ 35.72408790990991
+ ],
+ [
+ 139.73070410989013,
+ 35.72408790990991
+ ],
+ [
+ 139.73070410989013,
+ 35.72426809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtsukaYonchome.1046.2",
+ "name": "大塚四丁目",
+ "latitude": 35.723551,
+ "longitude": 139.730883,
+ "polygon": [
+ [
+ 139.73077310989012,
+ 35.72364109009009
+ ],
+ [
+ 139.7309928901099,
+ 35.72364109009009
+ ],
+ [
+ 139.7309928901099,
+ 35.72346090990991
+ ],
+ [
+ 139.73077310989012,
+ 35.72346090990991
+ ],
+ [
+ 139.73077310989012,
+ 35.72364109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DokanYamashita.1055.3",
+ "name": "道灌山下",
+ "latitude": 35.730263,
+ "longitude": 139.76193,
+ "polygon": [
+ [
+ 139.76182010989012,
+ 35.73035309009009
+ ],
+ [
+ 139.7620398901099,
+ 35.73035309009009
+ ],
+ [
+ 139.7620398901099,
+ 35.73017290990991
+ ],
+ [
+ 139.76182010989012,
+ 35.73017290990991
+ ],
+ [
+ 139.76182010989012,
+ 35.73035309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuSangyoGijutsuKosenShinagawaCampus.1048.1",
+ "name": "都立産業技術高専品川キャンパス前",
+ "latitude": 35.607016,
+ "longitude": 139.747628,
+ "polygon": [
+ [
+ 139.7475181098901,
+ 35.60710609009009
+ ],
+ [
+ 139.74773789010987,
+ 35.60710609009009
+ ],
+ [
+ 139.74773789010987,
+ 35.60692590990991
+ ],
+ [
+ 139.7475181098901,
+ 35.60692590990991
+ ],
+ [
+ 139.7475181098901,
+ 35.60710609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuSangyoGijutsuKosenShinagawaCampus.1048.2",
+ "name": "都立産業技術高専品川キャンパス前",
+ "latitude": 35.607604,
+ "longitude": 139.746988,
+ "polygon": [
+ [
+ 139.7468781098901,
+ 35.60769409009009
+ ],
+ [
+ 139.74709789010987,
+ 35.60769409009009
+ ],
+ [
+ 139.74709789010987,
+ 35.60751390990991
+ ],
+ [
+ 139.7468781098901,
+ 35.60751390990991
+ ],
+ [
+ 139.7468781098901,
+ 35.60769409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuSangyoGijutsuKosenShinagawaCampus.1048.3",
+ "name": "都立産業技術高専品川キャンパス前",
+ "latitude": 35.607411,
+ "longitude": 139.747222,
+ "polygon": [
+ [
+ 139.7471121098901,
+ 35.60750109009009
+ ],
+ [
+ 139.74733189010988,
+ 35.60750109009009
+ ],
+ [
+ 139.74733189010988,
+ 35.60732090990991
+ ],
+ [
+ 139.7471121098901,
+ 35.60732090990991
+ ],
+ [
+ 139.7471121098901,
+ 35.60750109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiAsakusa.1049.1",
+ "name": "東浅草",
+ "latitude": 35.723182,
+ "longitude": 139.801596,
+ "polygon": [
+ [
+ 139.8014861098901,
+ 35.72327209009009
+ ],
+ [
+ 139.80170589010987,
+ 35.72327209009009
+ ],
+ [
+ 139.80170589010987,
+ 35.72309190990991
+ ],
+ [
+ 139.8014861098901,
+ 35.72309190990991
+ ],
+ [
+ 139.8014861098901,
+ 35.72327209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiAsakusa.1049.2",
+ "name": "東浅草",
+ "latitude": 35.722495,
+ "longitude": 139.801483,
+ "polygon": [
+ [
+ 139.8013731098901,
+ 35.72258509009009
+ ],
+ [
+ 139.80159289010987,
+ 35.72258509009009
+ ],
+ [
+ 139.80159289010987,
+ 35.72240490990991
+ ],
+ [
+ 139.8013731098901,
+ 35.72240490990991
+ ],
+ [
+ 139.8013731098901,
+ 35.72258509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DokanYamashita.1055.2",
+ "name": "道灌山下",
+ "latitude": 35.730068,
+ "longitude": 139.762899,
+ "polygon": [
+ [
+ 139.76278910989012,
+ 35.73015809009009
+ ],
+ [
+ 139.7630088901099,
+ 35.73015809009009
+ ],
+ [
+ 139.7630088901099,
+ 35.72997790990991
+ ],
+ [
+ 139.76278910989012,
+ 35.72997790990991
+ ],
+ [
+ 139.76278910989012,
+ 35.73015809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuSansho.1050.1",
+ "name": "都立三商前",
+ "latitude": 35.664312,
+ "longitude": 139.796821,
+ "polygon": [
+ [
+ 139.7967111098901,
+ 35.66440209009009
+ ],
+ [
+ 139.79693089010988,
+ 35.66440209009009
+ ],
+ [
+ 139.79693089010988,
+ 35.66422190990991
+ ],
+ [
+ 139.7967111098901,
+ 35.66422190990991
+ ],
+ [
+ 139.7967111098901,
+ 35.66440209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuSansho.1050.2",
+ "name": "都立三商前",
+ "latitude": 35.665047,
+ "longitude": 139.796309,
+ "polygon": [
+ [
+ 139.79619910989013,
+ 35.66513709009009
+ ],
+ [
+ 139.7964188901099,
+ 35.66513709009009
+ ],
+ [
+ 139.7964188901099,
+ 35.66495690990991
+ ],
+ [
+ 139.79619910989013,
+ 35.66495690990991
+ ],
+ [
+ 139.79619910989013,
+ 35.66513709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SodaiRiko.1051.1",
+ "name": "早大理工前",
+ "latitude": 35.7064,
+ "longitude": 139.708728,
+ "polygon": [
+ [
+ 139.70861810989012,
+ 35.70649009009009
+ ],
+ [
+ 139.7088378901099,
+ 35.70649009009009
+ ],
+ [
+ 139.7088378901099,
+ 35.70630990990991
+ ],
+ [
+ 139.70861810989012,
+ 35.70630990990991
+ ],
+ [
+ 139.70861810989012,
+ 35.70649009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SodaiRiko.1051.2",
+ "name": "早大理工前",
+ "latitude": 35.705626,
+ "longitude": 139.708853,
+ "polygon": [
+ [
+ 139.70874310989012,
+ 35.70571609009009
+ ],
+ [
+ 139.7089628901099,
+ 35.70571609009009
+ ],
+ [
+ 139.7089628901099,
+ 35.70553590990991
+ ],
+ [
+ 139.70874310989012,
+ 35.70553590990991
+ ],
+ [
+ 139.70874310989012,
+ 35.70571609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroSanchome.1052.1",
+ "name": "八広三丁目",
+ "latitude": 35.718212,
+ "longitude": 139.829091,
+ "polygon": [
+ [
+ 139.82898110989012,
+ 35.71830209009009
+ ],
+ [
+ 139.8292008901099,
+ 35.71830209009009
+ ],
+ [
+ 139.8292008901099,
+ 35.71812190990991
+ ],
+ [
+ 139.82898110989012,
+ 35.71812190990991
+ ],
+ [
+ 139.82898110989012,
+ 35.71830209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroSanchome.1052.2",
+ "name": "八広三丁目",
+ "latitude": 35.718179,
+ "longitude": 139.829184,
+ "polygon": [
+ [
+ 139.82907410989012,
+ 35.71826909009009
+ ],
+ [
+ 139.82929389010988,
+ 35.71826909009009
+ ],
+ [
+ 139.82929389010988,
+ 35.71808890990991
+ ],
+ [
+ 139.82907410989012,
+ 35.71808890990991
+ ],
+ [
+ 139.82907410989012,
+ 35.71826909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DokanYamashita.1055.4",
+ "name": "道灌山下",
+ "latitude": 35.730271,
+ "longitude": 139.762879,
+ "polygon": [
+ [
+ 139.76276910989012,
+ 35.73036109009009
+ ],
+ [
+ 139.76298889010988,
+ 35.73036109009009
+ ],
+ [
+ 139.76298889010988,
+ 35.73018090990991
+ ],
+ [
+ 139.76276910989012,
+ 35.73018090990991
+ ],
+ [
+ 139.76276910989012,
+ 35.73036109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DozakaShita.1057.1",
+ "name": "動坂下",
+ "latitude": 35.731863,
+ "longitude": 139.758422,
+ "polygon": [
+ [
+ 139.7583121098901,
+ 35.73195309009009
+ ],
+ [
+ 139.75853189010988,
+ 35.73195309009009
+ ],
+ [
+ 139.75853189010988,
+ 35.73177290990991
+ ],
+ [
+ 139.7583121098901,
+ 35.73177290990991
+ ],
+ [
+ 139.7583121098901,
+ 35.73195309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DozakaShita.1057.2",
+ "name": "動坂下",
+ "latitude": 35.731927,
+ "longitude": 139.758753,
+ "polygon": [
+ [
+ 139.75864310989013,
+ 35.73201709009009
+ ],
+ [
+ 139.7588628901099,
+ 35.73201709009009
+ ],
+ [
+ 139.7588628901099,
+ 35.73183690990991
+ ],
+ [
+ 139.75864310989013,
+ 35.73183690990991
+ ],
+ [
+ 139.75864310989013,
+ 35.73201709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DozakaShita.1057.3",
+ "name": "動坂下",
+ "latitude": 35.731771,
+ "longitude": 139.759428,
+ "polygon": [
+ [
+ 139.75931810989013,
+ 35.73186109009009
+ ],
+ [
+ 139.7595378901099,
+ 35.73186109009009
+ ],
+ [
+ 139.7595378901099,
+ 35.73168090990991
+ ],
+ [
+ 139.75931810989013,
+ 35.73168090990991
+ ],
+ [
+ 139.75931810989013,
+ 35.73186109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DozakaShita.1057.4",
+ "name": "動坂下",
+ "latitude": 35.731743,
+ "longitude": 139.758149,
+ "polygon": [
+ [
+ 139.75803910989012,
+ 35.73183309009009
+ ],
+ [
+ 139.7582588901099,
+ 35.73183309009009
+ ],
+ [
+ 139.7582588901099,
+ 35.73165290990991
+ ],
+ [
+ 139.75803910989012,
+ 35.73165290990991
+ ],
+ [
+ 139.75803910989012,
+ 35.73183309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Dojunkai.1058.1",
+ "name": "同潤会",
+ "latitude": 35.703712,
+ "longitude": 139.873602,
+ "polygon": [
+ [
+ 139.87349210989012,
+ 35.70380209009009
+ ],
+ [
+ 139.8737118901099,
+ 35.70380209009009
+ ],
+ [
+ 139.8737118901099,
+ 35.70362190990991
+ ],
+ [
+ 139.87349210989012,
+ 35.70362190990991
+ ],
+ [
+ 139.87349210989012,
+ 35.70380209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Dojunkai.1058.2",
+ "name": "同潤会",
+ "latitude": 35.702709,
+ "longitude": 139.873458,
+ "polygon": [
+ [
+ 139.87334810989012,
+ 35.70279909009009
+ ],
+ [
+ 139.87356789010988,
+ 35.70279909009009
+ ],
+ [
+ 139.87356789010988,
+ 35.70261890990991
+ ],
+ [
+ 139.87334810989012,
+ 35.70261890990991
+ ],
+ [
+ 139.87334810989012,
+ 35.70279909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NaitomachiDaikyocho.1060.1",
+ "name": "内藤町大京町",
+ "latitude": 35.684751,
+ "longitude": 139.716031,
+ "polygon": [
+ [
+ 139.7159211098901,
+ 35.68484109009009
+ ],
+ [
+ 139.71614089010987,
+ 35.68484109009009
+ ],
+ [
+ 139.71614089010987,
+ 35.68466090990991
+ ],
+ [
+ 139.7159211098901,
+ 35.68466090990991
+ ],
+ [
+ 139.7159211098901,
+ 35.68484109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiIkebukuroSanchome.1470.1",
+ "name": "南池袋三丁目",
+ "latitude": 35.725907,
+ "longitude": 139.711443,
+ "polygon": [
+ [
+ 139.71133310989012,
+ 35.72599709009009
+ ],
+ [
+ 139.71155289010989,
+ 35.72599709009009
+ ],
+ [
+ 139.71155289010989,
+ 35.72581690990991
+ ],
+ [
+ 139.71133310989012,
+ 35.72581690990991
+ ],
+ [
+ 139.71133310989012,
+ 35.72599709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NaitomachiDaikyocho.1060.2",
+ "name": "内藤町大京町",
+ "latitude": 35.684142,
+ "longitude": 139.715817,
+ "polygon": [
+ [
+ 139.7157071098901,
+ 35.68423209009009
+ ],
+ [
+ 139.71592689010987,
+ 35.68423209009009
+ ],
+ [
+ 139.71592689010987,
+ 35.68405190990991
+ ],
+ [
+ 139.7157071098901,
+ 35.68405190990991
+ ],
+ [
+ 139.7157071098901,
+ 35.68423209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaItabashiStationIriguchi.1062.1",
+ "name": "中板橋駅入口",
+ "latitude": 35.758331,
+ "longitude": 139.694281,
+ "polygon": [
+ [
+ 139.6941711098901,
+ 35.75842109009009
+ ],
+ [
+ 139.69439089010987,
+ 35.75842109009009
+ ],
+ [
+ 139.69439089010987,
+ 35.75824090990991
+ ],
+ [
+ 139.6941711098901,
+ 35.75824090990991
+ ],
+ [
+ 139.6941711098901,
+ 35.75842109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaItabashiStationIriguchi.1062.2",
+ "name": "中板橋駅入口",
+ "latitude": 35.758836,
+ "longitude": 139.695556,
+ "polygon": [
+ [
+ 139.69544610989013,
+ 35.75892609009009
+ ],
+ [
+ 139.6956658901099,
+ 35.75892609009009
+ ],
+ [
+ 139.6956658901099,
+ 35.75874590990991
+ ],
+ [
+ 139.69544610989013,
+ 35.75874590990991
+ ],
+ [
+ 139.69544610989013,
+ 35.75892609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakaibashi.1063.1",
+ "name": "中井橋",
+ "latitude": 35.822235,
+ "longitude": 139.27681,
+ "polygon": [
+ [
+ 139.27670010989013,
+ 35.82232509009009
+ ],
+ [
+ 139.2769198901099,
+ 35.82232509009009
+ ],
+ [
+ 139.2769198901099,
+ 35.82214490990991
+ ],
+ [
+ 139.27670010989013,
+ 35.82214490990991
+ ],
+ [
+ 139.27670010989013,
+ 35.82232509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakaibori.1064.1",
+ "name": "中居堀",
+ "latitude": 35.713037,
+ "longitude": 139.826692,
+ "polygon": [
+ [
+ 139.82658210989013,
+ 35.71312709009009
+ ],
+ [
+ 139.8268018901099,
+ 35.71312709009009
+ ],
+ [
+ 139.8268018901099,
+ 35.71294690990991
+ ],
+ [
+ 139.82658210989013,
+ 35.71294690990991
+ ],
+ [
+ 139.82658210989013,
+ 35.71312709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaKasaiNanachome.1070.4",
+ "name": "中葛西七丁目",
+ "latitude": 35.655913,
+ "longitude": 139.86356,
+ "polygon": [
+ [
+ 139.86345010989012,
+ 35.65600309009009
+ ],
+ [
+ 139.8636698901099,
+ 35.65600309009009
+ ],
+ [
+ 139.8636698901099,
+ 35.65582290990991
+ ],
+ [
+ 139.86345010989012,
+ 35.65582290990991
+ ],
+ [
+ 139.86345010989012,
+ 35.65600309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakaibori.1064.2",
+ "name": "中居堀",
+ "latitude": 35.713705,
+ "longitude": 139.826644,
+ "polygon": [
+ [
+ 139.8265341098901,
+ 35.71379509009009
+ ],
+ [
+ 139.82675389010987,
+ 35.71379509009009
+ ],
+ [
+ 139.82675389010987,
+ 35.71361490990991
+ ],
+ [
+ 139.8265341098901,
+ 35.71361490990991
+ ],
+ [
+ 139.8265341098901,
+ 35.71379509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakaibori.1064.3",
+ "name": "中居堀",
+ "latitude": 35.713798,
+ "longitude": 139.826784,
+ "polygon": [
+ [
+ 139.82667410989012,
+ 35.71388809009009
+ ],
+ [
+ 139.8268938901099,
+ 35.71388809009009
+ ],
+ [
+ 139.8268938901099,
+ 35.71370790990991
+ ],
+ [
+ 139.82667410989012,
+ 35.71370790990991
+ ],
+ [
+ 139.82667410989012,
+ 35.71388809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakaibori.1064.4",
+ "name": "中居堀",
+ "latitude": 35.713601,
+ "longitude": 139.827539,
+ "polygon": [
+ [
+ 139.82742910989012,
+ 35.71369109009009
+ ],
+ [
+ 139.82764889010988,
+ 35.71369109009009
+ ],
+ [
+ 139.82764889010988,
+ 35.71351090990991
+ ],
+ [
+ 139.82742910989012,
+ 35.71351090990991
+ ],
+ [
+ 139.82742910989012,
+ 35.71369109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaIriya.1065.1",
+ "name": "中入谷(なかいりや(あだちく))",
+ "latitude": 35.801783,
+ "longitude": 139.768768,
+ "polygon": [
+ [
+ 139.7686581098901,
+ 35.80187309009009
+ ],
+ [
+ 139.76887789010988,
+ 35.80187309009009
+ ],
+ [
+ 139.76887789010988,
+ 35.80169290990991
+ ],
+ [
+ 139.7686581098901,
+ 35.80169290990991
+ ],
+ [
+ 139.7686581098901,
+ 35.80187309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaIriya.1065.2",
+ "name": "中入谷(なかいりや(あだちく))",
+ "latitude": 35.801963,
+ "longitude": 139.768978,
+ "polygon": [
+ [
+ 139.76886810989012,
+ 35.80205309009009
+ ],
+ [
+ 139.7690878901099,
+ 35.80205309009009
+ ],
+ [
+ 139.7690878901099,
+ 35.80187290990991
+ ],
+ [
+ 139.76886810989012,
+ 35.80187290990991
+ ],
+ [
+ 139.76886810989012,
+ 35.80205309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaIriya.1066.1",
+ "name": "中入谷(なかいりや(たいとうく))",
+ "latitude": 35.71912,
+ "longitude": 139.786509,
+ "polygon": [
+ [
+ 139.7863991098901,
+ 35.71921009009009
+ ],
+ [
+ 139.78661889010988,
+ 35.71921009009009
+ ],
+ [
+ 139.78661889010988,
+ 35.71902990990991
+ ],
+ [
+ 139.7863991098901,
+ 35.71902990990991
+ ],
+ [
+ 139.7863991098901,
+ 35.71921009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaIriya.1066.2",
+ "name": "中入谷(なかいりや(たいとうく))",
+ "latitude": 35.719053,
+ "longitude": 139.786115,
+ "polygon": [
+ [
+ 139.7860051098901,
+ 35.71914309009009
+ ],
+ [
+ 139.78622489010988,
+ 35.71914309009009
+ ],
+ [
+ 139.78622489010988,
+ 35.71896290990991
+ ],
+ [
+ 139.7860051098901,
+ 35.71896290990991
+ ],
+ [
+ 139.7860051098901,
+ 35.71914309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaKasaiGochome.1069.1",
+ "name": "中葛西五丁目",
+ "latitude": 35.661394,
+ "longitude": 139.866554,
+ "polygon": [
+ [
+ 139.86644410989012,
+ 35.66148409009009
+ ],
+ [
+ 139.8666638901099,
+ 35.66148409009009
+ ],
+ [
+ 139.8666638901099,
+ 35.66130390990991
+ ],
+ [
+ 139.86644410989012,
+ 35.66130390990991
+ ],
+ [
+ 139.86644410989012,
+ 35.66148409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaKasaiGochome.1069.2",
+ "name": "中葛西五丁目",
+ "latitude": 35.661136,
+ "longitude": 139.866191,
+ "polygon": [
+ [
+ 139.8660811098901,
+ 35.66122609009009
+ ],
+ [
+ 139.86630089010987,
+ 35.66122609009009
+ ],
+ [
+ 139.86630089010987,
+ 35.66104590990991
+ ],
+ [
+ 139.8660811098901,
+ 35.66104590990991
+ ],
+ [
+ 139.8660811098901,
+ 35.66122609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaKasaiNanachome.1070.1",
+ "name": "中葛西七丁目",
+ "latitude": 35.656497,
+ "longitude": 139.864222,
+ "polygon": [
+ [
+ 139.86411210989013,
+ 35.65658709009009
+ ],
+ [
+ 139.8643318901099,
+ 35.65658709009009
+ ],
+ [
+ 139.8643318901099,
+ 35.65640690990991
+ ],
+ [
+ 139.86411210989013,
+ 35.65640690990991
+ ],
+ [
+ 139.86411210989013,
+ 35.65658709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaKasaiNanachome.1070.3",
+ "name": "中葛西七丁目",
+ "latitude": 35.656592,
+ "longitude": 139.864389,
+ "polygon": [
+ [
+ 139.8642791098901,
+ 35.656682090090094
+ ],
+ [
+ 139.86449889010987,
+ 35.656682090090094
+ ],
+ [
+ 139.86449889010987,
+ 35.65650190990991
+ ],
+ [
+ 139.8642791098901,
+ 35.65650190990991
+ ],
+ [
+ 139.8642791098901,
+ 35.656682090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakagawaOhashi.1071.1",
+ "name": "中川大橋",
+ "latitude": 35.756534,
+ "longitude": 139.853924,
+ "polygon": [
+ [
+ 139.85381410989012,
+ 35.75662409009009
+ ],
+ [
+ 139.8540338901099,
+ 35.75662409009009
+ ],
+ [
+ 139.8540338901099,
+ 35.75644390990991
+ ],
+ [
+ 139.85381410989012,
+ 35.75644390990991
+ ],
+ [
+ 139.85381410989012,
+ 35.75662409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakagawaOhashi.1071.2",
+ "name": "中川大橋",
+ "latitude": 35.756901,
+ "longitude": 139.85396,
+ "polygon": [
+ [
+ 139.85385010989012,
+ 35.75699109009009
+ ],
+ [
+ 139.85406989010988,
+ 35.75699109009009
+ ],
+ [
+ 139.85406989010988,
+ 35.75681090990991
+ ],
+ [
+ 139.85385010989012,
+ 35.75681090990991
+ ],
+ [
+ 139.85385010989012,
+ 35.75699109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakagawaShimbashi.1072.1",
+ "name": "中川新橋",
+ "latitude": 35.698555,
+ "longitude": 139.847876,
+ "polygon": [
+ [
+ 139.84776610989013,
+ 35.69864509009009
+ ],
+ [
+ 139.8479858901099,
+ 35.69864509009009
+ ],
+ [
+ 139.8479858901099,
+ 35.69846490990991
+ ],
+ [
+ 139.84776610989013,
+ 35.69846490990991
+ ],
+ [
+ 139.84776610989013,
+ 35.69864509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakagawaShimbashi.1072.2",
+ "name": "中川新橋",
+ "latitude": 35.69851,
+ "longitude": 139.846558,
+ "polygon": [
+ [
+ 139.8464481098901,
+ 35.69860009009009
+ ],
+ [
+ 139.84666789010987,
+ 35.69860009009009
+ ],
+ [
+ 139.84666789010987,
+ 35.69841990990991
+ ],
+ [
+ 139.8464481098901,
+ 35.69841990990991
+ ],
+ [
+ 139.8464481098901,
+ 35.69860009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakagawaShimbashi.1072.3",
+ "name": "中川新橋",
+ "latitude": 35.698976,
+ "longitude": 139.846255,
+ "polygon": [
+ [
+ 139.84614510989013,
+ 35.69906609009009
+ ],
+ [
+ 139.8463648901099,
+ 35.69906609009009
+ ],
+ [
+ 139.8463648901099,
+ 35.69888590990991
+ ],
+ [
+ 139.84614510989013,
+ 35.69888590990991
+ ],
+ [
+ 139.84614510989013,
+ 35.69906609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiNichomeJichiKaikan.1075.1",
+ "name": "成木二丁目自治会館前",
+ "latitude": 35.833039,
+ "longitude": 139.271075,
+ "polygon": [
+ [
+ 139.2709651098901,
+ 35.83312909009009
+ ],
+ [
+ 139.27118489010988,
+ 35.83312909009009
+ ],
+ [
+ 139.27118489010988,
+ 35.83294890990991
+ ],
+ [
+ 139.2709651098901,
+ 35.83294890990991
+ ],
+ [
+ 139.2709651098901,
+ 35.83312909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiNichomeJichiKaikan.1075.2",
+ "name": "成木二丁目自治会館前",
+ "latitude": 35.833285,
+ "longitude": 139.271638,
+ "polygon": [
+ [
+ 139.2715281098901,
+ 35.83337509009009
+ ],
+ [
+ 139.27174789010988,
+ 35.83337509009009
+ ],
+ [
+ 139.27174789010988,
+ 35.833194909909906
+ ],
+ [
+ 139.2715281098901,
+ 35.833194909909906
+ ],
+ [
+ 139.2715281098901,
+ 35.83337509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakazatobashi.1076.2",
+ "name": "中里橋",
+ "latitude": 35.835709,
+ "longitude": 139.274609,
+ "polygon": [
+ [
+ 139.27449910989012,
+ 35.83579909009009
+ ],
+ [
+ 139.27471889010988,
+ 35.83579909009009
+ ],
+ [
+ 139.27471889010988,
+ 35.83561890990991
+ ],
+ [
+ 139.27449910989012,
+ 35.83561890990991
+ ],
+ [
+ 139.27449910989012,
+ 35.83579909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaJujoYonchome.1077.1",
+ "name": "中十条四丁目",
+ "latitude": 35.766425,
+ "longitude": 139.723515,
+ "polygon": [
+ [
+ 139.7234051098901,
+ 35.76651509009009
+ ],
+ [
+ 139.72362489010987,
+ 35.76651509009009
+ ],
+ [
+ 139.72362489010987,
+ 35.76633490990991
+ ],
+ [
+ 139.7234051098901,
+ 35.76633490990991
+ ],
+ [
+ 139.7234051098901,
+ 35.76651509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaJujoYonchome.1077.2",
+ "name": "中十条四丁目",
+ "latitude": 35.766566,
+ "longitude": 139.722803,
+ "polygon": [
+ [
+ 139.72269310989012,
+ 35.76665609009009
+ ],
+ [
+ 139.72291289010988,
+ 35.76665609009009
+ ],
+ [
+ 139.72291289010988,
+ 35.76647590990991
+ ],
+ [
+ 139.72269310989012,
+ 35.76647590990991
+ ],
+ [
+ 139.72269310989012,
+ 35.76665609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakajuku.1078.1",
+ "name": "中宿",
+ "latitude": 35.730888,
+ "longitude": 139.456327,
+ "polygon": [
+ [
+ 139.4562171098901,
+ 35.73097809009009
+ ],
+ [
+ 139.45643689010987,
+ 35.73097809009009
+ ],
+ [
+ 139.45643689010987,
+ 35.73079790990991
+ ],
+ [
+ 139.4562171098901,
+ 35.73079790990991
+ ],
+ [
+ 139.4562171098901,
+ 35.73097809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakajuku.1078.2",
+ "name": "中宿",
+ "latitude": 35.730793,
+ "longitude": 139.456871,
+ "polygon": [
+ [
+ 139.45676110989012,
+ 35.73088309009009
+ ],
+ [
+ 139.4569808901099,
+ 35.73088309009009
+ ],
+ [
+ 139.4569808901099,
+ 35.73070290990991
+ ],
+ [
+ 139.45676110989012,
+ 35.73070290990991
+ ],
+ [
+ 139.45676110989012,
+ 35.73088309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakacho.1080.1",
+ "name": "仲町",
+ "latitude": 35.789953,
+ "longitude": 139.255373,
+ "polygon": [
+ [
+ 139.2552631098901,
+ 35.79004309009009
+ ],
+ [
+ 139.25548289010987,
+ 35.79004309009009
+ ],
+ [
+ 139.25548289010987,
+ 35.78986290990991
+ ],
+ [
+ 139.2552631098901,
+ 35.78986290990991
+ ],
+ [
+ 139.2552631098901,
+ 35.79004309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakacho.1080.2",
+ "name": "仲町",
+ "latitude": 35.78983,
+ "longitude": 139.255514,
+ "polygon": [
+ [
+ 139.25540410989012,
+ 35.78992009009009
+ ],
+ [
+ 139.2556238901099,
+ 35.78992009009009
+ ],
+ [
+ 139.2556238901099,
+ 35.78973990990991
+ ],
+ [
+ 139.25540410989012,
+ 35.78973990990991
+ ],
+ [
+ 139.25540410989012,
+ 35.78992009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakachoHigashigumi.1082.1",
+ "name": "仲町東組",
+ "latitude": 35.656925,
+ "longitude": 139.879994,
+ "polygon": [
+ [
+ 139.87988410989013,
+ 35.65701509009009
+ ],
+ [
+ 139.8801038901099,
+ 35.65701509009009
+ ],
+ [
+ 139.8801038901099,
+ 35.65683490990991
+ ],
+ [
+ 139.87988410989013,
+ 35.65683490990991
+ ],
+ [
+ 139.87988410989013,
+ 35.65701509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakachoHigashigumi.1082.2",
+ "name": "仲町東組",
+ "latitude": 35.657082,
+ "longitude": 139.879155,
+ "polygon": [
+ [
+ 139.87904510989011,
+ 35.65717209009009
+ ],
+ [
+ 139.87926489010988,
+ 35.65717209009009
+ ],
+ [
+ 139.87926489010988,
+ 35.65699190990991
+ ],
+ [
+ 139.87904510989011,
+ 35.65699190990991
+ ],
+ [
+ 139.87904510989011,
+ 35.65717209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakato.1083.1",
+ "name": "中藤",
+ "latitude": 35.757956,
+ "longitude": 139.402377,
+ "polygon": [
+ [
+ 139.40226710989012,
+ 35.75804609009009
+ ],
+ [
+ 139.40248689010988,
+ 35.75804609009009
+ ],
+ [
+ 139.40248689010988,
+ 35.75786590990991
+ ],
+ [
+ 139.40226710989012,
+ 35.75786590990991
+ ],
+ [
+ 139.40226710989012,
+ 35.75804609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakato.1083.2",
+ "name": "中藤",
+ "latitude": 35.75783,
+ "longitude": 139.403921,
+ "polygon": [
+ [
+ 139.4038111098901,
+ 35.75792009009009
+ ],
+ [
+ 139.40403089010988,
+ 35.75792009009009
+ ],
+ [
+ 139.40403089010988,
+ 35.75773990990991
+ ],
+ [
+ 139.4038111098901,
+ 35.75773990990991
+ ],
+ [
+ 139.4038111098901,
+ 35.75792009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakanoKitaYubinkyoku.1086.1",
+ "name": "中野北郵便局前",
+ "latitude": 35.725731,
+ "longitude": 139.65397,
+ "polygon": [
+ [
+ 139.6538601098901,
+ 35.72582109009009
+ ],
+ [
+ 139.65407989010987,
+ 35.72582109009009
+ ],
+ [
+ 139.65407989010987,
+ 35.72564090990991
+ ],
+ [
+ 139.6538601098901,
+ 35.72564090990991
+ ],
+ [
+ 139.6538601098901,
+ 35.72582109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakanoKitaYubinkyoku.1086.2",
+ "name": "中野北郵便局前",
+ "latitude": 35.725797,
+ "longitude": 139.653736,
+ "polygon": [
+ [
+ 139.65362610989013,
+ 35.72588709009009
+ ],
+ [
+ 139.6538458901099,
+ 35.72588709009009
+ ],
+ [
+ 139.6538458901099,
+ 35.72570690990991
+ ],
+ [
+ 139.65362610989013,
+ 35.72570690990991
+ ],
+ [
+ 139.65362610989013,
+ 35.72588709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagashimachoKosaten.1106.3",
+ "name": "長島町交差点",
+ "latitude": 35.668631,
+ "longitude": 139.873755,
+ "polygon": [
+ [
+ 139.8736451098901,
+ 35.66872109009009
+ ],
+ [
+ 139.87386489010987,
+ 35.66872109009009
+ ],
+ [
+ 139.87386489010987,
+ 35.66854090990991
+ ],
+ [
+ 139.8736451098901,
+ 35.66854090990991
+ ],
+ [
+ 139.8736451098901,
+ 35.66872109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakanoSakaue.1089.2",
+ "name": "中野坂上",
+ "latitude": 35.697214,
+ "longitude": 139.681719,
+ "polygon": [
+ [
+ 139.6816091098901,
+ 35.69730409009009
+ ],
+ [
+ 139.68182889010987,
+ 35.69730409009009
+ ],
+ [
+ 139.68182889010987,
+ 35.69712390990991
+ ],
+ [
+ 139.6816091098901,
+ 35.69712390990991
+ ],
+ [
+ 139.6816091098901,
+ 35.69730409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakanoSakaue.1089.3",
+ "name": "中野坂上",
+ "latitude": 35.697042,
+ "longitude": 139.68172,
+ "polygon": [
+ [
+ 139.68161010989013,
+ 35.69713209009009
+ ],
+ [
+ 139.6818298901099,
+ 35.69713209009009
+ ],
+ [
+ 139.6818298901099,
+ 35.69695190990991
+ ],
+ [
+ 139.68161010989013,
+ 35.69695190990991
+ ],
+ [
+ 139.68161010989013,
+ 35.69713209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nagatacho.1108.1",
+ "name": "永田町",
+ "latitude": 35.677956,
+ "longitude": 139.741553,
+ "polygon": [
+ [
+ 139.74144310989013,
+ 35.67804609009009
+ ],
+ [
+ 139.7416628901099,
+ 35.67804609009009
+ ],
+ [
+ 139.7416628901099,
+ 35.67786590990991
+ ],
+ [
+ 139.74144310989013,
+ 35.67786590990991
+ ],
+ [
+ 139.74144310989013,
+ 35.67804609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakanoTenjin.1091.1",
+ "name": "中野天神前",
+ "latitude": 35.697521,
+ "longitude": 139.66206,
+ "polygon": [
+ [
+ 139.6619501098901,
+ 35.69761109009009
+ ],
+ [
+ 139.66216989010988,
+ 35.69761109009009
+ ],
+ [
+ 139.66216989010988,
+ 35.69743090990991
+ ],
+ [
+ 139.6619501098901,
+ 35.69743090990991
+ ],
+ [
+ 139.6619501098901,
+ 35.69761109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakanoTenjin.1091.2",
+ "name": "中野天神前",
+ "latitude": 35.697326,
+ "longitude": 139.663219,
+ "polygon": [
+ [
+ 139.66310910989012,
+ 35.69741609009009
+ ],
+ [
+ 139.66332889010988,
+ 35.69741609009009
+ ],
+ [
+ 139.66332889010988,
+ 35.69723590990991
+ ],
+ [
+ 139.66310910989012,
+ 35.69723590990991
+ ],
+ [
+ 139.66310910989012,
+ 35.69741609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonchoSanchome.1092.1",
+ "name": "本町三丁目(ほんちょうさんちょうめ(なかのく))",
+ "latitude": 35.697739,
+ "longitude": 139.67475,
+ "polygon": [
+ [
+ 139.6746401098901,
+ 35.69782909009009
+ ],
+ [
+ 139.67485989010987,
+ 35.69782909009009
+ ],
+ [
+ 139.67485989010987,
+ 35.69764890990991
+ ],
+ [
+ 139.6746401098901,
+ 35.69764890990991
+ ],
+ [
+ 139.6746401098901,
+ 35.69782909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonchoSanchome.1092.2",
+ "name": "本町三丁目(ほんちょうさんちょうめ(なかのく))",
+ "latitude": 35.697565,
+ "longitude": 139.67501,
+ "polygon": [
+ [
+ 139.6749001098901,
+ 35.69765509009009
+ ],
+ [
+ 139.67511989010987,
+ 35.69765509009009
+ ],
+ [
+ 139.67511989010987,
+ 35.69747490990991
+ ],
+ [
+ 139.6749001098901,
+ 35.69747490990991
+ ],
+ [
+ 139.6749001098901,
+ 35.69765509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakanohashi.1093.1",
+ "name": "中の橋",
+ "latitude": 35.730467,
+ "longitude": 139.881365,
+ "polygon": [
+ [
+ 139.8812551098901,
+ 35.73055709009009
+ ],
+ [
+ 139.88147489010987,
+ 35.73055709009009
+ ],
+ [
+ 139.88147489010987,
+ 35.73037690990991
+ ],
+ [
+ 139.8812551098901,
+ 35.73037690990991
+ ],
+ [
+ 139.8812551098901,
+ 35.73055709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NabeyaYokocho.1112.2",
+ "name": "鍋屋横丁",
+ "latitude": 35.697453,
+ "longitude": 139.671725,
+ "polygon": [
+ [
+ 139.67161510989013,
+ 35.69754309009009
+ ],
+ [
+ 139.6718348901099,
+ 35.69754309009009
+ ],
+ [
+ 139.6718348901099,
+ 35.69736290990991
+ ],
+ [
+ 139.67161510989013,
+ 35.69736290990991
+ ],
+ [
+ 139.67161510989013,
+ 35.69754309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakanohashi.1093.2",
+ "name": "中の橋",
+ "latitude": 35.72992,
+ "longitude": 139.88157,
+ "polygon": [
+ [
+ 139.88146010989013,
+ 35.73001009009009
+ ],
+ [
+ 139.8816798901099,
+ 35.73001009009009
+ ],
+ [
+ 139.8816798901099,
+ 35.72982990990991
+ ],
+ [
+ 139.88146010989013,
+ 35.72982990990991
+ ],
+ [
+ 139.88146010989013,
+ 35.73001009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakanohashi.1094.2",
+ "name": "中ノ橋",
+ "latitude": 35.654448,
+ "longitude": 139.741828,
+ "polygon": [
+ [
+ 139.74171810989012,
+ 35.65453809009009
+ ],
+ [
+ 139.74193789010988,
+ 35.65453809009009
+ ],
+ [
+ 139.74193789010988,
+ 35.65435790990991
+ ],
+ [
+ 139.74171810989012,
+ 35.65435790990991
+ ],
+ [
+ 139.74171810989012,
+ 35.65453809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakanohashi.1094.3",
+ "name": "中ノ橋",
+ "latitude": 35.654572,
+ "longitude": 139.741972,
+ "polygon": [
+ [
+ 139.74186210989012,
+ 35.65466209009009
+ ],
+ [
+ 139.7420818901099,
+ 35.65466209009009
+ ],
+ [
+ 139.7420818901099,
+ 35.65448190990991
+ ],
+ [
+ 139.74186210989012,
+ 35.65448190990991
+ ],
+ [
+ 139.74186210989012,
+ 35.65466209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakanohashi.1094.4",
+ "name": "中ノ橋",
+ "latitude": 35.654401,
+ "longitude": 139.742293,
+ "polygon": [
+ [
+ 139.7421831098901,
+ 35.65449109009009
+ ],
+ [
+ 139.74240289010987,
+ 35.65449109009009
+ ],
+ [
+ 139.74240289010987,
+ 35.65431090990991
+ ],
+ [
+ 139.7421831098901,
+ 35.65431090990991
+ ],
+ [
+ 139.7421831098901,
+ 35.65449109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TOKYOSKYTREEStationIriguchi.1120.2",
+ "name": "とうきょうスカイツリー駅入口",
+ "latitude": 35.708725,
+ "longitude": 139.8091,
+ "polygon": [
+ [
+ 139.80899010989012,
+ 35.70881509009009
+ ],
+ [
+ 139.80920989010988,
+ 35.70881509009009
+ ],
+ [
+ 139.80920989010988,
+ 35.70863490990991
+ ],
+ [
+ 139.80899010989012,
+ 35.70863490990991
+ ],
+ [
+ 139.80899010989012,
+ 35.70881509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakanohashi.1094.5",
+ "name": "中ノ橋",
+ "latitude": 35.655495,
+ "longitude": 139.741143,
+ "polygon": [
+ [
+ 139.7410331098901,
+ 35.65558509009009
+ ],
+ [
+ 139.74125289010988,
+ 35.65558509009009
+ ],
+ [
+ 139.74125289010988,
+ 35.65540490990991
+ ],
+ [
+ 139.7410331098901,
+ 35.65540490990991
+ ],
+ [
+ 139.7410331098901,
+ 35.65558509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakanohashiDori.1095.1",
+ "name": "中の橋通り",
+ "latitude": 35.690046,
+ "longitude": 139.837294,
+ "polygon": [
+ [
+ 139.83718410989013,
+ 35.69013609009009
+ ],
+ [
+ 139.8374038901099,
+ 35.69013609009009
+ ],
+ [
+ 139.8374038901099,
+ 35.68995590990991
+ ],
+ [
+ 139.83718410989013,
+ 35.68995590990991
+ ],
+ [
+ 139.83718410989013,
+ 35.69013609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakanohashiDori.1095.2",
+ "name": "中の橋通り",
+ "latitude": 35.689998,
+ "longitude": 139.838489,
+ "polygon": [
+ [
+ 139.83837910989013,
+ 35.69008809009009
+ ],
+ [
+ 139.8385988901099,
+ 35.69008809009009
+ ],
+ [
+ 139.8385988901099,
+ 35.68990790990991
+ ],
+ [
+ 139.83837910989013,
+ 35.68990790990991
+ ],
+ [
+ 139.83837910989013,
+ 35.69008809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakahara.1099.1",
+ "name": "中原",
+ "latitude": 35.783065,
+ "longitude": 139.318113,
+ "polygon": [
+ [
+ 139.31800310989013,
+ 35.78315509009009
+ ],
+ [
+ 139.3182228901099,
+ 35.78315509009009
+ ],
+ [
+ 139.3182228901099,
+ 35.78297490990991
+ ],
+ [
+ 139.31800310989013,
+ 35.78297490990991
+ ],
+ [
+ 139.31800310989013,
+ 35.78315509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakahara.1099.2",
+ "name": "中原",
+ "latitude": 35.78295,
+ "longitude": 139.31785,
+ "polygon": [
+ [
+ 139.3177401098901,
+ 35.78304009009009
+ ],
+ [
+ 139.31795989010988,
+ 35.78304009009009
+ ],
+ [
+ 139.31795989010988,
+ 35.78285990990991
+ ],
+ [
+ 139.3177401098901,
+ 35.78285990990991
+ ],
+ [
+ 139.3177401098901,
+ 35.78304009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakaHirai.1101.1",
+ "name": "中平井",
+ "latitude": 35.716227,
+ "longitude": 139.8358,
+ "polygon": [
+ [
+ 139.83569010989012,
+ 35.716317090090094
+ ],
+ [
+ 139.8359098901099,
+ 35.716317090090094
+ ],
+ [
+ 139.8359098901099,
+ 35.71613690990991
+ ],
+ [
+ 139.83569010989012,
+ 35.71613690990991
+ ],
+ [
+ 139.83569010989012,
+ 35.716317090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nagaoka.1103.1",
+ "name": "長岡",
+ "latitude": 35.779576,
+ "longitude": 139.329201,
+ "polygon": [
+ [
+ 139.32909110989013,
+ 35.77966609009009
+ ],
+ [
+ 139.3293108901099,
+ 35.77966609009009
+ ],
+ [
+ 139.3293108901099,
+ 35.77948590990991
+ ],
+ [
+ 139.32909110989013,
+ 35.77948590990991
+ ],
+ [
+ 139.32909110989013,
+ 35.77966609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nagaoka.1103.2",
+ "name": "長岡",
+ "latitude": 35.779316,
+ "longitude": 139.329456,
+ "polygon": [
+ [
+ 139.3293461098901,
+ 35.77940609009009
+ ],
+ [
+ 139.32956589010988,
+ 35.77940609009009
+ ],
+ [
+ 139.32956589010988,
+ 35.77922590990991
+ ],
+ [
+ 139.3293461098901,
+ 35.77922590990991
+ ],
+ [
+ 139.3293461098901,
+ 35.77940609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiSanchome.1104.1",
+ "name": "東葛西三丁目",
+ "latitude": 35.668699,
+ "longitude": 139.88357,
+ "polygon": [
+ [
+ 139.8834601098901,
+ 35.66878909009009
+ ],
+ [
+ 139.88367989010987,
+ 35.66878909009009
+ ],
+ [
+ 139.88367989010987,
+ 35.668608909909906
+ ],
+ [
+ 139.8834601098901,
+ 35.668608909909906
+ ],
+ [
+ 139.8834601098901,
+ 35.66878909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiSanchome.1104.2",
+ "name": "東葛西三丁目",
+ "latitude": 35.668807,
+ "longitude": 139.883669,
+ "polygon": [
+ [
+ 139.88355910989011,
+ 35.66889709009009
+ ],
+ [
+ 139.88377889010988,
+ 35.66889709009009
+ ],
+ [
+ 139.88377889010988,
+ 35.66871690990991
+ ],
+ [
+ 139.88355910989011,
+ 35.66871690990991
+ ],
+ [
+ 139.88355910989011,
+ 35.66889709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagashimachoKosaten.1106.1",
+ "name": "長島町交差点",
+ "latitude": 35.667915,
+ "longitude": 139.871042,
+ "polygon": [
+ [
+ 139.8709321098901,
+ 35.66800509009009
+ ],
+ [
+ 139.87115189010987,
+ 35.66800509009009
+ ],
+ [
+ 139.87115189010987,
+ 35.66782490990991
+ ],
+ [
+ 139.8709321098901,
+ 35.66782490990991
+ ],
+ [
+ 139.8709321098901,
+ 35.66800509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagashimachoKosaten.1106.4",
+ "name": "長島町交差点",
+ "latitude": 35.666699,
+ "longitude": 139.873508,
+ "polygon": [
+ [
+ 139.8733981098901,
+ 35.66678909009009
+ ],
+ [
+ 139.87361789010987,
+ 35.66678909009009
+ ],
+ [
+ 139.87361789010987,
+ 35.66660890990991
+ ],
+ [
+ 139.8733981098901,
+ 35.66660890990991
+ ],
+ [
+ 139.8733981098901,
+ 35.66678909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nagatacho.1108.2",
+ "name": "永田町",
+ "latitude": 35.678184,
+ "longitude": 139.740812,
+ "polygon": [
+ [
+ 139.74070210989012,
+ 35.67827409009009
+ ],
+ [
+ 139.7409218901099,
+ 35.67827409009009
+ ],
+ [
+ 139.7409218901099,
+ 35.67809390990991
+ ],
+ [
+ 139.74070210989012,
+ 35.67809390990991
+ ],
+ [
+ 139.74070210989012,
+ 35.67827409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagabuchiNanachome.1110.1",
+ "name": "長渕七丁目",
+ "latitude": 35.782632,
+ "longitude": 139.262861,
+ "polygon": [
+ [
+ 139.2627511098901,
+ 35.78272209009009
+ ],
+ [
+ 139.26297089010987,
+ 35.78272209009009
+ ],
+ [
+ 139.26297089010987,
+ 35.78254190990991
+ ],
+ [
+ 139.2627511098901,
+ 35.78254190990991
+ ],
+ [
+ 139.2627511098901,
+ 35.78272209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagabuchiNanachome.1110.2",
+ "name": "長渕七丁目",
+ "latitude": 35.78253,
+ "longitude": 139.262776,
+ "polygon": [
+ [
+ 139.26266610989012,
+ 35.78262009009009
+ ],
+ [
+ 139.26288589010989,
+ 35.78262009009009
+ ],
+ [
+ 139.26288589010989,
+ 35.78243990990991
+ ],
+ [
+ 139.26266610989012,
+ 35.78243990990991
+ ],
+ [
+ 139.26266610989012,
+ 35.78262009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagisaNewTown.1111.1",
+ "name": "なぎさニュータウン",
+ "latitude": 35.646996,
+ "longitude": 139.879412,
+ "polygon": [
+ [
+ 139.87930210989012,
+ 35.64708609009009
+ ],
+ [
+ 139.87952189010988,
+ 35.64708609009009
+ ],
+ [
+ 139.87952189010988,
+ 35.64690590990991
+ ],
+ [
+ 139.87930210989012,
+ 35.64690590990991
+ ],
+ [
+ 139.87930210989012,
+ 35.64708609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagisaNewTown.1111.2",
+ "name": "なぎさニュータウン",
+ "latitude": 35.647187,
+ "longitude": 139.879687,
+ "polygon": [
+ [
+ 139.8795771098901,
+ 35.64727709009009
+ ],
+ [
+ 139.87979689010987,
+ 35.64727709009009
+ ],
+ [
+ 139.87979689010987,
+ 35.64709690990991
+ ],
+ [
+ 139.8795771098901,
+ 35.64709690990991
+ ],
+ [
+ 139.8795771098901,
+ 35.64727709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Namikibashi.1114.1",
+ "name": "並木橋",
+ "latitude": 35.655683,
+ "longitude": 139.70625,
+ "polygon": [
+ [
+ 139.70614010989013,
+ 35.65577309009009
+ ],
+ [
+ 139.7063598901099,
+ 35.65577309009009
+ ],
+ [
+ 139.7063598901099,
+ 35.65559290990991
+ ],
+ [
+ 139.70614010989013,
+ 35.65559290990991
+ ],
+ [
+ 139.70614010989013,
+ 35.65577309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagisaNewTown.1111.3",
+ "name": "なぎさニュータウン",
+ "latitude": 35.647342,
+ "longitude": 139.879711,
+ "polygon": [
+ [
+ 139.8796011098901,
+ 35.64743209009009
+ ],
+ [
+ 139.87982089010987,
+ 35.64743209009009
+ ],
+ [
+ 139.87982089010987,
+ 35.64725190990991
+ ],
+ [
+ 139.8796011098901,
+ 35.64725190990991
+ ],
+ [
+ 139.8796011098901,
+ 35.64743209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagisaNewTown.1111.4",
+ "name": "なぎさニュータウン",
+ "latitude": 35.647065,
+ "longitude": 139.879678,
+ "polygon": [
+ [
+ 139.87956810989013,
+ 35.64715509009009
+ ],
+ [
+ 139.8797878901099,
+ 35.64715509009009
+ ],
+ [
+ 139.8797878901099,
+ 35.64697490990991
+ ],
+ [
+ 139.87956810989013,
+ 35.64697490990991
+ ],
+ [
+ 139.87956810989013,
+ 35.64715509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NagisaNewTown.1111.5",
+ "name": "なぎさニュータウン",
+ "latitude": 35.646235,
+ "longitude": 139.879571,
+ "polygon": [
+ [
+ 139.87946110989012,
+ 35.64632509009009
+ ],
+ [
+ 139.87968089010988,
+ 35.64632509009009
+ ],
+ [
+ 139.87968089010988,
+ 35.64614490990991
+ ],
+ [
+ 139.87946110989012,
+ 35.64614490990991
+ ],
+ [
+ 139.87946110989012,
+ 35.64632509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarihiraYonchome.1121.1",
+ "name": "業平四丁目",
+ "latitude": 35.7064,
+ "longitude": 139.814109,
+ "polygon": [
+ [
+ 139.81399910989012,
+ 35.70649009009009
+ ],
+ [
+ 139.81421889010988,
+ 35.70649009009009
+ ],
+ [
+ 139.81421889010988,
+ 35.70630990990991
+ ],
+ [
+ 139.81399910989012,
+ 35.70630990990991
+ ],
+ [
+ 139.81399910989012,
+ 35.70649009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NabeyaYokocho.1112.1",
+ "name": "鍋屋横丁",
+ "latitude": 35.697638,
+ "longitude": 139.671813,
+ "polygon": [
+ [
+ 139.6717031098901,
+ 35.69772809009009
+ ],
+ [
+ 139.67192289010987,
+ 35.69772809009009
+ ],
+ [
+ 139.67192289010987,
+ 35.69754790990991
+ ],
+ [
+ 139.6717031098901,
+ 35.69754790990991
+ ],
+ [
+ 139.6717031098901,
+ 35.69772809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Namikibashi.1114.2",
+ "name": "並木橋",
+ "latitude": 35.655674,
+ "longitude": 139.705981,
+ "polygon": [
+ [
+ 139.70587110989013,
+ 35.65576409009009
+ ],
+ [
+ 139.7060908901099,
+ 35.65576409009009
+ ],
+ [
+ 139.7060908901099,
+ 35.65558390990991
+ ],
+ [
+ 139.70587110989013,
+ 35.65558390990991
+ ],
+ [
+ 139.70587110989013,
+ 35.65576409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Namidabashi.1115.1",
+ "name": "泪橋",
+ "latitude": 35.729305,
+ "longitude": 139.799229,
+ "polygon": [
+ [
+ 139.7991191098901,
+ 35.72939509009009
+ ],
+ [
+ 139.79933889010988,
+ 35.72939509009009
+ ],
+ [
+ 139.79933889010988,
+ 35.729214909909906
+ ],
+ [
+ 139.7991191098901,
+ 35.729214909909906
+ ],
+ [
+ 139.7991191098901,
+ 35.72939509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Namidabashi.1115.2",
+ "name": "泪橋",
+ "latitude": 35.72915,
+ "longitude": 139.800631,
+ "polygon": [
+ [
+ 139.80052110989013,
+ 35.72924009009009
+ ],
+ [
+ 139.8007408901099,
+ 35.72924009009009
+ ],
+ [
+ 139.8007408901099,
+ 35.72905990990991
+ ],
+ [
+ 139.80052110989013,
+ 35.72905990990991
+ ],
+ [
+ 139.80052110989013,
+ 35.72924009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Namidabashi.1115.3",
+ "name": "泪橋",
+ "latitude": 35.729346,
+ "longitude": 139.799427,
+ "polygon": [
+ [
+ 139.79931710989013,
+ 35.72943609009009
+ ],
+ [
+ 139.7995368901099,
+ 35.72943609009009
+ ],
+ [
+ 139.7995368901099,
+ 35.72925590990991
+ ],
+ [
+ 139.79931710989013,
+ 35.72925590990991
+ ],
+ [
+ 139.79931710989013,
+ 35.72943609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Namidabashi.1115.4",
+ "name": "泪橋",
+ "latitude": 35.728855,
+ "longitude": 139.798888,
+ "polygon": [
+ [
+ 139.79877810989012,
+ 35.72894509009009
+ ],
+ [
+ 139.7989978901099,
+ 35.72894509009009
+ ],
+ [
+ 139.7989978901099,
+ 35.72876490990991
+ ],
+ [
+ 139.79877810989012,
+ 35.72876490990991
+ ],
+ [
+ 139.79877810989012,
+ 35.72894509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiYonchome.1118.2",
+ "name": "成木四丁目",
+ "latitude": 35.823415,
+ "longitude": 139.253464,
+ "polygon": [
+ [
+ 139.25335410989013,
+ 35.82350509009009
+ ],
+ [
+ 139.2535738901099,
+ 35.82350509009009
+ ],
+ [
+ 139.2535738901099,
+ 35.82332490990991
+ ],
+ [
+ 139.25335410989013,
+ 35.82332490990991
+ ],
+ [
+ 139.25335410989013,
+ 35.82350509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Narahashi.1116.1",
+ "name": "奈良橋",
+ "latitude": 35.752056,
+ "longitude": 139.426967,
+ "polygon": [
+ [
+ 139.4268571098901,
+ 35.75214609009009
+ ],
+ [
+ 139.42707689010987,
+ 35.75214609009009
+ ],
+ [
+ 139.42707689010987,
+ 35.75196590990991
+ ],
+ [
+ 139.4268571098901,
+ 35.75196590990991
+ ],
+ [
+ 139.4268571098901,
+ 35.75214609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Narahashi.1116.2",
+ "name": "奈良橋",
+ "latitude": 35.752116,
+ "longitude": 139.426873,
+ "polygon": [
+ [
+ 139.42676310989012,
+ 35.75220609009009
+ ],
+ [
+ 139.42698289010988,
+ 35.75220609009009
+ ],
+ [
+ 139.42698289010988,
+ 35.75202590990991
+ ],
+ [
+ 139.42676310989012,
+ 35.75202590990991
+ ],
+ [
+ 139.42676310989012,
+ 35.75220609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiShiminCenter.1117.1",
+ "name": "成木市民センター前",
+ "latitude": 35.823152,
+ "longitude": 139.248322,
+ "polygon": [
+ [
+ 139.24821210989012,
+ 35.82324209009009
+ ],
+ [
+ 139.24843189010988,
+ 35.82324209009009
+ ],
+ [
+ 139.24843189010988,
+ 35.82306190990991
+ ],
+ [
+ 139.24821210989012,
+ 35.82306190990991
+ ],
+ [
+ 139.24821210989012,
+ 35.82324209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiShiminCenter.1117.2",
+ "name": "成木市民センター前",
+ "latitude": 35.823055,
+ "longitude": 139.249773,
+ "polygon": [
+ [
+ 139.24966310989012,
+ 35.82314509009009
+ ],
+ [
+ 139.2498828901099,
+ 35.82314509009009
+ ],
+ [
+ 139.2498828901099,
+ 35.822964909909906
+ ],
+ [
+ 139.24966310989012,
+ 35.822964909909906
+ ],
+ [
+ 139.24966310989012,
+ 35.82314509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiShiminCenter.1117.3",
+ "name": "成木市民センター前",
+ "latitude": 35.82378,
+ "longitude": 139.248209,
+ "polygon": [
+ [
+ 139.24809910989012,
+ 35.82387009009009
+ ],
+ [
+ 139.24831889010989,
+ 35.82387009009009
+ ],
+ [
+ 139.24831889010989,
+ 35.82368990990991
+ ],
+ [
+ 139.24809910989012,
+ 35.82368990990991
+ ],
+ [
+ 139.24809910989012,
+ 35.82387009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiYonchome.1118.1",
+ "name": "成木四丁目",
+ "latitude": 35.823527,
+ "longitude": 139.253521,
+ "polygon": [
+ [
+ 139.25341110989012,
+ 35.82361709009009
+ ],
+ [
+ 139.2536308901099,
+ 35.82361709009009
+ ],
+ [
+ 139.2536308901099,
+ 35.82343690990991
+ ],
+ [
+ 139.25341110989012,
+ 35.82343690990991
+ ],
+ [
+ 139.25341110989012,
+ 35.82361709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kashiwagi.1119.1",
+ "name": "柏木",
+ "latitude": 35.825436,
+ "longitude": 139.245429,
+ "polygon": [
+ [
+ 139.24531910989012,
+ 35.825526090090094
+ ],
+ [
+ 139.24553889010988,
+ 35.825526090090094
+ ],
+ [
+ 139.24553889010988,
+ 35.82534590990991
+ ],
+ [
+ 139.24531910989012,
+ 35.82534590990991
+ ],
+ [
+ 139.24531910989012,
+ 35.825526090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kashiwagi.1119.2",
+ "name": "柏木",
+ "latitude": 35.825442,
+ "longitude": 139.245555,
+ "polygon": [
+ [
+ 139.2454451098901,
+ 35.82553209009009
+ ],
+ [
+ 139.24566489010988,
+ 35.82553209009009
+ ],
+ [
+ 139.24566489010988,
+ 35.82535190990991
+ ],
+ [
+ 139.2454451098901,
+ 35.82535190990991
+ ],
+ [
+ 139.2454451098901,
+ 35.82553209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TOKYOSKYTREEStationIriguchi.1120.1",
+ "name": "とうきょうスカイツリー駅入口",
+ "latitude": 35.708942,
+ "longitude": 139.809198,
+ "polygon": [
+ [
+ 139.80908810989013,
+ 35.70903209009009
+ ],
+ [
+ 139.8093078901099,
+ 35.70903209009009
+ ],
+ [
+ 139.8093078901099,
+ 35.70885190990991
+ ],
+ [
+ 139.80908810989013,
+ 35.70885190990991
+ ],
+ [
+ 139.80908810989013,
+ 35.70903209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarihiraYonchome.1121.2",
+ "name": "業平四丁目",
+ "latitude": 35.706241,
+ "longitude": 139.814338,
+ "polygon": [
+ [
+ 139.8142281098901,
+ 35.70633109009009
+ ],
+ [
+ 139.81444789010988,
+ 35.70633109009009
+ ],
+ [
+ 139.81444789010988,
+ 35.70615090990991
+ ],
+ [
+ 139.8142281098901,
+ 35.70615090990991
+ ],
+ [
+ 139.8142281098901,
+ 35.70633109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarukosakaShita.1122.1",
+ "name": "成子坂下",
+ "latitude": 35.695664,
+ "longitude": 139.689228,
+ "polygon": [
+ [
+ 139.68911810989013,
+ 35.69575409009009
+ ],
+ [
+ 139.6893378901099,
+ 35.69575409009009
+ ],
+ [
+ 139.6893378901099,
+ 35.69557390990991
+ ],
+ [
+ 139.68911810989013,
+ 35.69557390990991
+ ],
+ [
+ 139.68911810989013,
+ 35.69575409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarukosakaShita.1122.2",
+ "name": "成子坂下",
+ "latitude": 35.695394,
+ "longitude": 139.689338,
+ "polygon": [
+ [
+ 139.6892281098901,
+ 35.69548409009009
+ ],
+ [
+ 139.68944789010988,
+ 35.69548409009009
+ ],
+ [
+ 139.68944789010988,
+ 35.69530390990991
+ ],
+ [
+ 139.6892281098901,
+ 35.69530390990991
+ ],
+ [
+ 139.6892281098901,
+ 35.69548409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NangaiIriguchi.1123.1",
+ "name": "南街入口",
+ "latitude": 35.738242,
+ "longitude": 139.432854,
+ "polygon": [
+ [
+ 139.4327441098901,
+ 35.73833209009009
+ ],
+ [
+ 139.43296389010987,
+ 35.73833209009009
+ ],
+ [
+ 139.43296389010987,
+ 35.73815190990991
+ ],
+ [
+ 139.4327441098901,
+ 35.73815190990991
+ ],
+ [
+ 139.4327441098901,
+ 35.73833209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NangaiIriguchi.1123.2",
+ "name": "南街入口",
+ "latitude": 35.739025,
+ "longitude": 139.432353,
+ "polygon": [
+ [
+ 139.43224310989012,
+ 35.73911509009009
+ ],
+ [
+ 139.4324628901099,
+ 35.73911509009009
+ ],
+ [
+ 139.4324628901099,
+ 35.73893490990991
+ ],
+ [
+ 139.43224310989012,
+ 35.73893490990991
+ ],
+ [
+ 139.43224310989012,
+ 35.73911509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAsakusaSanchome.1129.1",
+ "name": "西浅草三丁目",
+ "latitude": 35.717751,
+ "longitude": 139.792842,
+ "polygon": [
+ [
+ 139.79273210989012,
+ 35.71784109009009
+ ],
+ [
+ 139.7929518901099,
+ 35.71784109009009
+ ],
+ [
+ 139.7929518901099,
+ 35.71766090990991
+ ],
+ [
+ 139.79273210989012,
+ 35.71766090990991
+ ],
+ [
+ 139.79273210989012,
+ 35.71784109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NangaiDori.1124.1",
+ "name": "南街通り",
+ "latitude": 35.736947,
+ "longitude": 139.433697,
+ "polygon": [
+ [
+ 139.4335871098901,
+ 35.73703709009009
+ ],
+ [
+ 139.43380689010988,
+ 35.73703709009009
+ ],
+ [
+ 139.43380689010988,
+ 35.73685690990991
+ ],
+ [
+ 139.4335871098901,
+ 35.73685690990991
+ ],
+ [
+ 139.4335871098901,
+ 35.73703709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NangaiDori.1124.2",
+ "name": "南街通り",
+ "latitude": 35.736666,
+ "longitude": 139.433736,
+ "polygon": [
+ [
+ 139.43362610989013,
+ 35.73675609009009
+ ],
+ [
+ 139.4338458901099,
+ 35.73675609009009
+ ],
+ [
+ 139.4338458901099,
+ 35.73657590990991
+ ],
+ [
+ 139.43362610989013,
+ 35.73657590990991
+ ],
+ [
+ 139.43362610989013,
+ 35.73675609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nandomachi.1125.1",
+ "name": "納戸町",
+ "latitude": 35.697961,
+ "longitude": 139.734042,
+ "polygon": [
+ [
+ 139.7339321098901,
+ 35.69805109009009
+ ],
+ [
+ 139.73415189010987,
+ 35.69805109009009
+ ],
+ [
+ 139.73415189010987,
+ 35.69787090990991
+ ],
+ [
+ 139.7339321098901,
+ 35.69787090990991
+ ],
+ [
+ 139.7339321098901,
+ 35.69805109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nandomachi.1125.2",
+ "name": "納戸町",
+ "latitude": 35.697555,
+ "longitude": 139.734147,
+ "polygon": [
+ [
+ 139.73403710989012,
+ 35.69764509009009
+ ],
+ [
+ 139.7342568901099,
+ 35.69764509009009
+ ],
+ [
+ 139.7342568901099,
+ 35.69746490990991
+ ],
+ [
+ 139.73403710989012,
+ 35.69746490990991
+ ],
+ [
+ 139.73403710989012,
+ 35.69764509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NiijukuItchome.1126.1",
+ "name": "新宿一丁目(にいじゅくいっちょうめ)",
+ "latitude": 35.759753,
+ "longitude": 139.858732,
+ "polygon": [
+ [
+ 139.85862210989012,
+ 35.759843090090094
+ ],
+ [
+ 139.8588418901099,
+ 35.759843090090094
+ ],
+ [
+ 139.8588418901099,
+ 35.75966290990991
+ ],
+ [
+ 139.85862210989012,
+ 35.75966290990991
+ ],
+ [
+ 139.85862210989012,
+ 35.759843090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NiijukuItchome.1126.2",
+ "name": "新宿一丁目(にいじゅくいっちょうめ)",
+ "latitude": 35.759994,
+ "longitude": 139.85879,
+ "polygon": [
+ [
+ 139.85868010989012,
+ 35.76008409009009
+ ],
+ [
+ 139.85889989010988,
+ 35.76008409009009
+ ],
+ [
+ 139.85889989010988,
+ 35.75990390990991
+ ],
+ [
+ 139.85868010989012,
+ 35.75990390990991
+ ],
+ [
+ 139.85868010989012,
+ 35.76008409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Niijimabashi.1127.1",
+ "name": "新島橋",
+ "latitude": 35.656155,
+ "longitude": 139.773291,
+ "polygon": [
+ [
+ 139.77318110989012,
+ 35.65624509009009
+ ],
+ [
+ 139.77340089010988,
+ 35.65624509009009
+ ],
+ [
+ 139.77340089010988,
+ 35.65606490990991
+ ],
+ [
+ 139.77318110989012,
+ 35.65606490990991
+ ],
+ [
+ 139.77318110989012,
+ 35.65624509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAsakusaSanchome.1129.4",
+ "name": "西浅草三丁目",
+ "latitude": 35.716373,
+ "longitude": 139.792478,
+ "polygon": [
+ [
+ 139.7923681098901,
+ 35.71646309009009
+ ],
+ [
+ 139.79258789010987,
+ 35.71646309009009
+ ],
+ [
+ 139.79258789010987,
+ 35.71628290990991
+ ],
+ [
+ 139.7923681098901,
+ 35.71628290990991
+ ],
+ [
+ 139.7923681098901,
+ 35.71646309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Niijimabashi.1127.4",
+ "name": "新島橋",
+ "latitude": 35.656117,
+ "longitude": 139.772743,
+ "polygon": [
+ [
+ 139.7726331098901,
+ 35.65620709009009
+ ],
+ [
+ 139.77285289010987,
+ 35.65620709009009
+ ],
+ [
+ 139.77285289010987,
+ 35.65602690990991
+ ],
+ [
+ 139.7726331098901,
+ 35.65602690990991
+ ],
+ [
+ 139.7726331098901,
+ 35.65620709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NiijukuYubinkyoku.1128.1",
+ "name": "新宿郵便局前",
+ "latitude": 35.763559,
+ "longitude": 139.865489,
+ "polygon": [
+ [
+ 139.8653791098901,
+ 35.76364909009009
+ ],
+ [
+ 139.86559889010988,
+ 35.76364909009009
+ ],
+ [
+ 139.86559889010988,
+ 35.76346890990991
+ ],
+ [
+ 139.8653791098901,
+ 35.76346890990991
+ ],
+ [
+ 139.8653791098901,
+ 35.76364909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NiijukuYubinkyoku.1128.2",
+ "name": "新宿郵便局前",
+ "latitude": 35.764253,
+ "longitude": 139.866214,
+ "polygon": [
+ [
+ 139.86610410989013,
+ 35.76434309009009
+ ],
+ [
+ 139.8663238901099,
+ 35.76434309009009
+ ],
+ [
+ 139.8663238901099,
+ 35.764162909909906
+ ],
+ [
+ 139.86610410989013,
+ 35.764162909909906
+ ],
+ [
+ 139.86610410989013,
+ 35.76434309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAsakusaSanchome.1129.2",
+ "name": "西浅草三丁目",
+ "latitude": 35.71757,
+ "longitude": 139.791839,
+ "polygon": [
+ [
+ 139.79172910989013,
+ 35.71766009009009
+ ],
+ [
+ 139.7919488901099,
+ 35.71766009009009
+ ],
+ [
+ 139.7919488901099,
+ 35.71747990990991
+ ],
+ [
+ 139.79172910989013,
+ 35.71747990990991
+ ],
+ [
+ 139.79172910989013,
+ 35.71766009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAsakusaSanchome.1129.3",
+ "name": "西浅草三丁目",
+ "latitude": 35.71793,
+ "longitude": 139.792552,
+ "polygon": [
+ [
+ 139.79244210989012,
+ 35.71802009009009
+ ],
+ [
+ 139.79266189010988,
+ 35.71802009009009
+ ],
+ [
+ 139.79266189010988,
+ 35.71783990990991
+ ],
+ [
+ 139.79244210989012,
+ 35.71783990990991
+ ],
+ [
+ 139.79244210989012,
+ 35.71802009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAsakusaSanchome.1129.5",
+ "name": "西浅草三丁目",
+ "latitude": 35.717364,
+ "longitude": 139.791917,
+ "polygon": [
+ [
+ 139.79180710989013,
+ 35.717454090090094
+ ],
+ [
+ 139.7920268901099,
+ 35.717454090090094
+ ],
+ [
+ 139.7920268901099,
+ 35.71727390990991
+ ],
+ [
+ 139.79180710989013,
+ 35.71727390990991
+ ],
+ [
+ 139.79180710989013,
+ 35.717454090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAzabu.1130.1",
+ "name": "西麻布",
+ "latitude": 35.659759,
+ "longitude": 139.722393,
+ "polygon": [
+ [
+ 139.72228310989013,
+ 35.65984909009009
+ ],
+ [
+ 139.7225028901099,
+ 35.65984909009009
+ ],
+ [
+ 139.7225028901099,
+ 35.65966890990991
+ ],
+ [
+ 139.72228310989013,
+ 35.65966890990991
+ ],
+ [
+ 139.72228310989013,
+ 35.65984909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAzabu.1130.2",
+ "name": "西麻布",
+ "latitude": 35.658126,
+ "longitude": 139.72387,
+ "polygon": [
+ [
+ 139.72376010989012,
+ 35.65821609009009
+ ],
+ [
+ 139.7239798901099,
+ 35.65821609009009
+ ],
+ [
+ 139.7239798901099,
+ 35.65803590990991
+ ],
+ [
+ 139.72376010989012,
+ 35.65803590990991
+ ],
+ [
+ 139.72376010989012,
+ 35.65821609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToneriKoen.1136.2",
+ "name": "舎人公園前",
+ "latitude": 35.795223,
+ "longitude": 139.770251,
+ "polygon": [
+ [
+ 139.77014110989012,
+ 35.79531309009009
+ ],
+ [
+ 139.77036089010988,
+ 35.79531309009009
+ ],
+ [
+ 139.77036089010988,
+ 35.79513290990991
+ ],
+ [
+ 139.77014110989012,
+ 35.79513290990991
+ ],
+ [
+ 139.77014110989012,
+ 35.79531309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAzabu.1130.3",
+ "name": "西麻布",
+ "latitude": 35.659856,
+ "longitude": 139.724627,
+ "polygon": [
+ [
+ 139.72451710989012,
+ 35.65994609009009
+ ],
+ [
+ 139.72473689010988,
+ 35.65994609009009
+ ],
+ [
+ 139.72473689010988,
+ 35.65976590990991
+ ],
+ [
+ 139.72451710989012,
+ 35.65976590990991
+ ],
+ [
+ 139.72451710989012,
+ 35.65994609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAzabu.1130.4",
+ "name": "西麻布",
+ "latitude": 35.658948,
+ "longitude": 139.723531,
+ "polygon": [
+ [
+ 139.72342110989013,
+ 35.65903809009009
+ ],
+ [
+ 139.7236408901099,
+ 35.65903809009009
+ ],
+ [
+ 139.7236408901099,
+ 35.65885790990991
+ ],
+ [
+ 139.72342110989013,
+ 35.65885790990991
+ ],
+ [
+ 139.72342110989013,
+ 35.65903809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiIchinoeYonchome.1138.2",
+ "name": "西一之江四丁目",
+ "latitude": 35.695008,
+ "longitude": 139.872556,
+ "polygon": [
+ [
+ 139.87244610989012,
+ 35.69509809009009
+ ],
+ [
+ 139.8726658901099,
+ 35.69509809009009
+ ],
+ [
+ 139.8726658901099,
+ 35.69491790990991
+ ],
+ [
+ 139.87244610989012,
+ 35.69491790990991
+ ],
+ [
+ 139.87244610989012,
+ 35.69509809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAzabuNichome.1131.1",
+ "name": "西麻布二丁目",
+ "latitude": 35.661825,
+ "longitude": 139.72187,
+ "polygon": [
+ [
+ 139.7217601098901,
+ 35.66191509009009
+ ],
+ [
+ 139.72197989010988,
+ 35.66191509009009
+ ],
+ [
+ 139.72197989010988,
+ 35.66173490990991
+ ],
+ [
+ 139.7217601098901,
+ 35.66173490990991
+ ],
+ [
+ 139.7217601098901,
+ 35.66191509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiAzabuNichome.1131.2",
+ "name": "西麻布二丁目",
+ "latitude": 35.661842,
+ "longitude": 139.7222,
+ "polygon": [
+ [
+ 139.7220901098901,
+ 35.66193209009009
+ ],
+ [
+ 139.72230989010987,
+ 35.66193209009009
+ ],
+ [
+ 139.72230989010987,
+ 35.66175190990991
+ ],
+ [
+ 139.7220901098901,
+ 35.66175190990991
+ ],
+ [
+ 139.7220901098901,
+ 35.66193209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiaraiStation.1132.3",
+ "name": "西新井駅前",
+ "latitude": 35.776245,
+ "longitude": 139.790148,
+ "polygon": [
+ [
+ 139.7900381098901,
+ 35.77633509009009
+ ],
+ [
+ 139.79025789010987,
+ 35.77633509009009
+ ],
+ [
+ 139.79025789010987,
+ 35.77615490990991
+ ],
+ [
+ 139.7900381098901,
+ 35.77615490990991
+ ],
+ [
+ 139.7900381098901,
+ 35.77633509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiaraiStation.1132.4",
+ "name": "西新井駅前",
+ "latitude": 35.776757,
+ "longitude": 139.790055,
+ "polygon": [
+ [
+ 139.7899451098901,
+ 35.776847090090094
+ ],
+ [
+ 139.79016489010988,
+ 35.776847090090094
+ ],
+ [
+ 139.79016489010988,
+ 35.77666690990991
+ ],
+ [
+ 139.7899451098901,
+ 35.77666690990991
+ ],
+ [
+ 139.7899451098901,
+ 35.776847090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiaraiRikkyo.1133.1",
+ "name": "西新井陸橋",
+ "latitude": 35.778422,
+ "longitude": 139.788537,
+ "polygon": [
+ [
+ 139.7884271098901,
+ 35.77851209009009
+ ],
+ [
+ 139.78864689010987,
+ 35.77851209009009
+ ],
+ [
+ 139.78864689010987,
+ 35.77833190990991
+ ],
+ [
+ 139.7884271098901,
+ 35.77833190990991
+ ],
+ [
+ 139.7884271098901,
+ 35.77851209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiaraiRikkyo.1133.2",
+ "name": "西新井陸橋",
+ "latitude": 35.778346,
+ "longitude": 139.786591,
+ "polygon": [
+ [
+ 139.7864811098901,
+ 35.77843609009009
+ ],
+ [
+ 139.78670089010987,
+ 35.77843609009009
+ ],
+ [
+ 139.78670089010987,
+ 35.77825590990991
+ ],
+ [
+ 139.7864811098901,
+ 35.77825590990991
+ ],
+ [
+ 139.7864811098901,
+ 35.77843609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiaraiRikkyo.1133.3",
+ "name": "西新井陸橋",
+ "latitude": 35.7781,
+ "longitude": 139.786885,
+ "polygon": [
+ [
+ 139.78677510989013,
+ 35.77819009009009
+ ],
+ [
+ 139.7869948901099,
+ 35.77819009009009
+ ],
+ [
+ 139.7869948901099,
+ 35.77800990990991
+ ],
+ [
+ 139.78677510989013,
+ 35.77800990990991
+ ],
+ [
+ 139.78677510989013,
+ 35.77819009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiaraiDaishi.1134.1",
+ "name": "西新井大師前",
+ "latitude": 35.778136,
+ "longitude": 139.780537,
+ "polygon": [
+ [
+ 139.78042710989013,
+ 35.778226090090094
+ ],
+ [
+ 139.7806468901099,
+ 35.778226090090094
+ ],
+ [
+ 139.7806468901099,
+ 35.77804590990991
+ ],
+ [
+ 139.78042710989013,
+ 35.77804590990991
+ ],
+ [
+ 139.78042710989013,
+ 35.778226090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiaraiDaishi.1134.2",
+ "name": "西新井大師前",
+ "latitude": 35.777902,
+ "longitude": 139.780578,
+ "polygon": [
+ [
+ 139.7804681098901,
+ 35.77799209009009
+ ],
+ [
+ 139.78068789010987,
+ 35.77799209009009
+ ],
+ [
+ 139.78068789010987,
+ 35.77781190990991
+ ],
+ [
+ 139.7804681098901,
+ 35.77781190990991
+ ],
+ [
+ 139.7804681098901,
+ 35.77799209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToneriKoen.1136.1",
+ "name": "舎人公園前",
+ "latitude": 35.795079,
+ "longitude": 139.769983,
+ "polygon": [
+ [
+ 139.7698731098901,
+ 35.79516909009009
+ ],
+ [
+ 139.77009289010988,
+ 35.79516909009009
+ ],
+ [
+ 139.77009289010988,
+ 35.79498890990991
+ ],
+ [
+ 139.7698731098901,
+ 35.79498890990991
+ ],
+ [
+ 139.7698731098901,
+ 35.79516909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiIchinoeSanchome.1137.1",
+ "name": "西一之江三丁目",
+ "latitude": 35.692304,
+ "longitude": 139.876165,
+ "polygon": [
+ [
+ 139.8760551098901,
+ 35.69239409009009
+ ],
+ [
+ 139.87627489010987,
+ 35.69239409009009
+ ],
+ [
+ 139.87627489010987,
+ 35.69221390990991
+ ],
+ [
+ 139.8760551098901,
+ 35.69221390990991
+ ],
+ [
+ 139.8760551098901,
+ 35.69239409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiIchinoeSanchome.1137.2",
+ "name": "西一之江三丁目",
+ "latitude": 35.691909,
+ "longitude": 139.876555,
+ "polygon": [
+ [
+ 139.8764451098901,
+ 35.69199909009009
+ ],
+ [
+ 139.87666489010988,
+ 35.69199909009009
+ ],
+ [
+ 139.87666489010988,
+ 35.69181890990991
+ ],
+ [
+ 139.8764451098901,
+ 35.69181890990991
+ ],
+ [
+ 139.8764451098901,
+ 35.69199909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiIchinoeYonchome.1138.1",
+ "name": "西一之江四丁目",
+ "latitude": 35.694138,
+ "longitude": 139.8737,
+ "polygon": [
+ [
+ 139.87359010989013,
+ 35.69422809009009
+ ],
+ [
+ 139.8738098901099,
+ 35.69422809009009
+ ],
+ [
+ 139.8738098901099,
+ 35.69404790990991
+ ],
+ [
+ 139.87359010989013,
+ 35.69404790990991
+ ],
+ [
+ 139.87359010989013,
+ 35.69422809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiIchinoeYonchome.1138.3",
+ "name": "西一之江四丁目",
+ "latitude": 35.694027,
+ "longitude": 139.873715,
+ "polygon": [
+ [
+ 139.87360510989012,
+ 35.69411709009009
+ ],
+ [
+ 139.8738248901099,
+ 35.69411709009009
+ ],
+ [
+ 139.8738248901099,
+ 35.69393690990991
+ ],
+ [
+ 139.87360510989012,
+ 35.69393690990991
+ ],
+ [
+ 139.87360510989012,
+ 35.69411709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiIchinoeNichome.1139.1",
+ "name": "西一之江二丁目",
+ "latitude": 35.702796,
+ "longitude": 139.879147,
+ "polygon": [
+ [
+ 139.8790371098901,
+ 35.70288609009009
+ ],
+ [
+ 139.87925689010987,
+ 35.70288609009009
+ ],
+ [
+ 139.87925689010987,
+ 35.70270590990991
+ ],
+ [
+ 139.8790371098901,
+ 35.70270590990991
+ ],
+ [
+ 139.8790371098901,
+ 35.70288609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiIchinoeNichome.1139.2",
+ "name": "西一之江二丁目",
+ "latitude": 35.702598,
+ "longitude": 139.878952,
+ "polygon": [
+ [
+ 139.87884210989012,
+ 35.70268809009009
+ ],
+ [
+ 139.87906189010988,
+ 35.70268809009009
+ ],
+ [
+ 139.87906189010988,
+ 35.70250790990991
+ ],
+ [
+ 139.87884210989012,
+ 35.70250790990991
+ ],
+ [
+ 139.87884210989012,
+ 35.70268809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOjimaStation.1140.1",
+ "name": "西大島駅前",
+ "latitude": 35.688918,
+ "longitude": 139.826474,
+ "polygon": [
+ [
+ 139.8263641098901,
+ 35.68900809009009
+ ],
+ [
+ 139.82658389010987,
+ 35.68900809009009
+ ],
+ [
+ 139.82658389010987,
+ 35.68882790990991
+ ],
+ [
+ 139.8263641098901,
+ 35.68882790990991
+ ],
+ [
+ 139.8263641098901,
+ 35.68900809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOjimaStation.1140.2",
+ "name": "西大島駅前",
+ "latitude": 35.689254,
+ "longitude": 139.825978,
+ "polygon": [
+ [
+ 139.8258681098901,
+ 35.68934409009009
+ ],
+ [
+ 139.82608789010987,
+ 35.68934409009009
+ ],
+ [
+ 139.82608789010987,
+ 35.68916390990991
+ ],
+ [
+ 139.8258681098901,
+ 35.68916390990991
+ ],
+ [
+ 139.8258681098901,
+ 35.68934409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOjimaStation.1140.3",
+ "name": "西大島駅前",
+ "latitude": 35.688674,
+ "longitude": 139.826491,
+ "polygon": [
+ [
+ 139.82638110989012,
+ 35.68876409009009
+ ],
+ [
+ 139.8266008901099,
+ 35.68876409009009
+ ],
+ [
+ 139.8266008901099,
+ 35.68858390990991
+ ],
+ [
+ 139.82638110989012,
+ 35.68858390990991
+ ],
+ [
+ 139.82638110989012,
+ 35.68876409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOjimaStation.1140.4",
+ "name": "西大島駅前",
+ "latitude": 35.690002,
+ "longitude": 139.826184,
+ "polygon": [
+ [
+ 139.82607410989013,
+ 35.69009209009009
+ ],
+ [
+ 139.8262938901099,
+ 35.69009209009009
+ ],
+ [
+ 139.8262938901099,
+ 35.68991190990991
+ ],
+ [
+ 139.82607410989013,
+ 35.68991190990991
+ ],
+ [
+ 139.82607410989013,
+ 35.69009209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOjimaStation.1140.5",
+ "name": "西大島駅前",
+ "latitude": 35.689432,
+ "longitude": 139.826915,
+ "polygon": [
+ [
+ 139.82680510989013,
+ 35.68952209009009
+ ],
+ [
+ 139.8270248901099,
+ 35.68952209009009
+ ],
+ [
+ 139.8270248901099,
+ 35.689341909909906
+ ],
+ [
+ 139.82680510989013,
+ 35.689341909909906
+ ],
+ [
+ 139.82680510989013,
+ 35.68952209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOguNichome.1141.1",
+ "name": "西尾久二丁目",
+ "latitude": 35.7467,
+ "longitude": 139.762773,
+ "polygon": [
+ [
+ 139.76266310989013,
+ 35.74679009009009
+ ],
+ [
+ 139.7628828901099,
+ 35.74679009009009
+ ],
+ [
+ 139.7628828901099,
+ 35.74660990990991
+ ],
+ [
+ 139.76266310989013,
+ 35.74660990990991
+ ],
+ [
+ 139.76266310989013,
+ 35.74679009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOguNichome.1141.2",
+ "name": "西尾久二丁目",
+ "latitude": 35.74705,
+ "longitude": 139.762824,
+ "polygon": [
+ [
+ 139.7627141098901,
+ 35.74714009009009
+ ],
+ [
+ 139.76293389010988,
+ 35.74714009009009
+ ],
+ [
+ 139.76293389010988,
+ 35.74695990990991
+ ],
+ [
+ 139.7627141098901,
+ 35.74695990990991
+ ],
+ [
+ 139.7627141098901,
+ 35.74714009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOguSanchome.1142.1",
+ "name": "西尾久三丁目",
+ "latitude": 35.75269,
+ "longitude": 139.762229,
+ "polygon": [
+ [
+ 139.7621191098901,
+ 35.75278009009009
+ ],
+ [
+ 139.76233889010987,
+ 35.75278009009009
+ ],
+ [
+ 139.76233889010987,
+ 35.75259990990991
+ ],
+ [
+ 139.7621191098901,
+ 35.75259990990991
+ ],
+ [
+ 139.7621191098901,
+ 35.75278009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKandaItchome.1152.1",
+ "name": "西神田一丁目",
+ "latitude": 35.699286,
+ "longitude": 139.756483,
+ "polygon": [
+ [
+ 139.75637310989012,
+ 35.69937609009009
+ ],
+ [
+ 139.75659289010989,
+ 35.69937609009009
+ ],
+ [
+ 139.75659289010989,
+ 35.69919590990991
+ ],
+ [
+ 139.75637310989012,
+ 35.69919590990991
+ ],
+ [
+ 139.75637310989012,
+ 35.69937609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOguSanchome.1142.2",
+ "name": "西尾久三丁目",
+ "latitude": 35.752191,
+ "longitude": 139.76197,
+ "polygon": [
+ [
+ 139.7618601098901,
+ 35.752281090090094
+ ],
+ [
+ 139.76207989010987,
+ 35.752281090090094
+ ],
+ [
+ 139.76207989010987,
+ 35.75210090990991
+ ],
+ [
+ 139.7618601098901,
+ 35.75210090990991
+ ],
+ [
+ 139.7618601098901,
+ 35.752281090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOguYonchome.1143.1",
+ "name": "西尾久四丁目",
+ "latitude": 35.744975,
+ "longitude": 139.758716,
+ "polygon": [
+ [
+ 139.7586061098901,
+ 35.74506509009009
+ ],
+ [
+ 139.75882589010988,
+ 35.74506509009009
+ ],
+ [
+ 139.75882589010988,
+ 35.744884909909906
+ ],
+ [
+ 139.7586061098901,
+ 35.744884909909906
+ ],
+ [
+ 139.7586061098901,
+ 35.74506509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OchiaiMinamiNagasakiStation.1145.4",
+ "name": "落合南長崎駅前",
+ "latitude": 35.723026,
+ "longitude": 139.683615,
+ "polygon": [
+ [
+ 139.68350510989012,
+ 35.72311609009009
+ ],
+ [
+ 139.6837248901099,
+ 35.72311609009009
+ ],
+ [
+ 139.6837248901099,
+ 35.72293590990991
+ ],
+ [
+ 139.68350510989012,
+ 35.72293590990991
+ ],
+ [
+ 139.68350510989012,
+ 35.72311609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOguYonchome.1143.2",
+ "name": "西尾久四丁目",
+ "latitude": 35.745425,
+ "longitude": 139.757585,
+ "polygon": [
+ [
+ 139.75747510989012,
+ 35.74551509009009
+ ],
+ [
+ 139.7576948901099,
+ 35.74551509009009
+ ],
+ [
+ 139.7576948901099,
+ 35.74533490990991
+ ],
+ [
+ 139.75747510989012,
+ 35.74533490990991
+ ],
+ [
+ 139.75747510989012,
+ 35.74551509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOchiaiItchome.1144.1",
+ "name": "西落合一丁目",
+ "latitude": 35.723034,
+ "longitude": 139.679787,
+ "polygon": [
+ [
+ 139.67967710989012,
+ 35.72312409009009
+ ],
+ [
+ 139.6798968901099,
+ 35.72312409009009
+ ],
+ [
+ 139.6798968901099,
+ 35.72294390990991
+ ],
+ [
+ 139.67967710989012,
+ 35.72294390990991
+ ],
+ [
+ 139.67967710989012,
+ 35.72312409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiOchiaiItchome.1144.2",
+ "name": "西落合一丁目",
+ "latitude": 35.723376,
+ "longitude": 139.679073,
+ "polygon": [
+ [
+ 139.6789631098901,
+ 35.72346609009009
+ ],
+ [
+ 139.67918289010987,
+ 35.72346609009009
+ ],
+ [
+ 139.67918289010987,
+ 35.72328590990991
+ ],
+ [
+ 139.6789631098901,
+ 35.72328590990991
+ ],
+ [
+ 139.6789631098901,
+ 35.72346609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OchiaiMinamiNagasakiStation.1145.1",
+ "name": "落合南長崎駅前",
+ "latitude": 35.722593,
+ "longitude": 139.683051,
+ "polygon": [
+ [
+ 139.68294110989012,
+ 35.722683090090094
+ ],
+ [
+ 139.6831608901099,
+ 35.722683090090094
+ ],
+ [
+ 139.6831608901099,
+ 35.72250290990991
+ ],
+ [
+ 139.68294110989012,
+ 35.72250290990991
+ ],
+ [
+ 139.68294110989012,
+ 35.722683090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OchiaiMinamiNagasakiStation.1145.3",
+ "name": "落合南長崎駅前",
+ "latitude": 35.722675,
+ "longitude": 139.684839,
+ "polygon": [
+ [
+ 139.68472910989013,
+ 35.72276509009009
+ ],
+ [
+ 139.6849488901099,
+ 35.72276509009009
+ ],
+ [
+ 139.6849488901099,
+ 35.72258490990991
+ ],
+ [
+ 139.68472910989013,
+ 35.72258490990991
+ ],
+ [
+ 139.68472910989013,
+ 35.72276509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiStation.1146.1",
+ "name": "西葛西駅前",
+ "latitude": 35.664117,
+ "longitude": 139.859181,
+ "polygon": [
+ [
+ 139.85907110989012,
+ 35.66420709009009
+ ],
+ [
+ 139.8592908901099,
+ 35.66420709009009
+ ],
+ [
+ 139.8592908901099,
+ 35.66402690990991
+ ],
+ [
+ 139.85907110989012,
+ 35.66402690990991
+ ],
+ [
+ 139.85907110989012,
+ 35.66420709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiStation.1146.2",
+ "name": "西葛西駅前",
+ "latitude": 35.664217,
+ "longitude": 139.859202,
+ "polygon": [
+ [
+ 139.85909210989013,
+ 35.66430709009009
+ ],
+ [
+ 139.8593118901099,
+ 35.66430709009009
+ ],
+ [
+ 139.8593118901099,
+ 35.66412690990991
+ ],
+ [
+ 139.85909210989013,
+ 35.66412690990991
+ ],
+ [
+ 139.85909210989013,
+ 35.66430709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKandaItchome.1152.2",
+ "name": "西神田一丁目",
+ "latitude": 35.698814,
+ "longitude": 139.756482,
+ "polygon": [
+ [
+ 139.75637210989012,
+ 35.69890409009009
+ ],
+ [
+ 139.7565918901099,
+ 35.69890409009009
+ ],
+ [
+ 139.7565918901099,
+ 35.69872390990991
+ ],
+ [
+ 139.75637210989012,
+ 35.69872390990991
+ ],
+ [
+ 139.75637210989012,
+ 35.69890409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiStation.1146.3",
+ "name": "西葛西駅前",
+ "latitude": 35.664136,
+ "longitude": 139.859059,
+ "polygon": [
+ [
+ 139.85894910989012,
+ 35.66422609009009
+ ],
+ [
+ 139.85916889010988,
+ 35.66422609009009
+ ],
+ [
+ 139.85916889010988,
+ 35.66404590990991
+ ],
+ [
+ 139.85894910989012,
+ 35.66404590990991
+ ],
+ [
+ 139.85894910989012,
+ 35.66422609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiStation.1146.4",
+ "name": "西葛西駅前",
+ "latitude": 35.664449,
+ "longitude": 139.859121,
+ "polygon": [
+ [
+ 139.8590111098901,
+ 35.66453909009009
+ ],
+ [
+ 139.85923089010987,
+ 35.66453909009009
+ ],
+ [
+ 139.85923089010987,
+ 35.66435890990991
+ ],
+ [
+ 139.8590111098901,
+ 35.66435890990991
+ ],
+ [
+ 139.8590111098901,
+ 35.66453909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiStation.1146.5",
+ "name": "西葛西駅前",
+ "latitude": 35.664177,
+ "longitude": 139.858937,
+ "polygon": [
+ [
+ 139.85882710989011,
+ 35.66426709009009
+ ],
+ [
+ 139.85904689010988,
+ 35.66426709009009
+ ],
+ [
+ 139.85904689010988,
+ 35.66408690990991
+ ],
+ [
+ 139.85882710989011,
+ 35.66408690990991
+ ],
+ [
+ 139.85882710989011,
+ 35.66426709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiStation.1146.6",
+ "name": "西葛西駅前",
+ "latitude": 35.664421,
+ "longitude": 139.858773,
+ "polygon": [
+ [
+ 139.85866310989013,
+ 35.66451109009009
+ ],
+ [
+ 139.8588828901099,
+ 35.66451109009009
+ ],
+ [
+ 139.8588828901099,
+ 35.66433090990991
+ ],
+ [
+ 139.85866310989013,
+ 35.66433090990991
+ ],
+ [
+ 139.85866310989013,
+ 35.66451109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiStation.1146.8",
+ "name": "西葛西駅前",
+ "latitude": 35.664812,
+ "longitude": 139.85901,
+ "polygon": [
+ [
+ 139.85890010989013,
+ 35.66490209009009
+ ],
+ [
+ 139.8591198901099,
+ 35.66490209009009
+ ],
+ [
+ 139.8591198901099,
+ 35.66472190990991
+ ],
+ [
+ 139.85890010989013,
+ 35.66472190990991
+ ],
+ [
+ 139.85890010989013,
+ 35.66490209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiSanchome.1147.1",
+ "name": "西葛西三丁目",
+ "latitude": 35.666064,
+ "longitude": 139.855958,
+ "polygon": [
+ [
+ 139.8558481098901,
+ 35.66615409009009
+ ],
+ [
+ 139.85606789010987,
+ 35.66615409009009
+ ],
+ [
+ 139.85606789010987,
+ 35.66597390990991
+ ],
+ [
+ 139.8558481098901,
+ 35.66597390990991
+ ],
+ [
+ 139.8558481098901,
+ 35.66615409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNagaoka.1163.2",
+ "name": "西長岡",
+ "latitude": 35.781375,
+ "longitude": 139.323621,
+ "polygon": [
+ [
+ 139.32351110989012,
+ 35.78146509009009
+ ],
+ [
+ 139.32373089010989,
+ 35.78146509009009
+ ],
+ [
+ 139.32373089010989,
+ 35.78128490990991
+ ],
+ [
+ 139.32351110989012,
+ 35.78128490990991
+ ],
+ [
+ 139.32351110989012,
+ 35.78146509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiSanchome.1147.2",
+ "name": "西葛西三丁目",
+ "latitude": 35.666008,
+ "longitude": 139.856169,
+ "polygon": [
+ [
+ 139.8560591098901,
+ 35.66609809009009
+ ],
+ [
+ 139.85627889010988,
+ 35.66609809009009
+ ],
+ [
+ 139.85627889010988,
+ 35.66591790990991
+ ],
+ [
+ 139.8560591098901,
+ 35.66591790990991
+ ],
+ [
+ 139.8560591098901,
+ 35.66609809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SportsCenter.1148.1",
+ "name": "スポーツセンター前",
+ "latitude": 35.667987,
+ "longitude": 139.860661,
+ "polygon": [
+ [
+ 139.8605511098901,
+ 35.66807709009009
+ ],
+ [
+ 139.86077089010988,
+ 35.66807709009009
+ ],
+ [
+ 139.86077089010988,
+ 35.667896909909906
+ ],
+ [
+ 139.8605511098901,
+ 35.667896909909906
+ ],
+ [
+ 139.8605511098901,
+ 35.66807709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SportsCenter.1148.2",
+ "name": "スポーツセンター前",
+ "latitude": 35.667325,
+ "longitude": 139.860042,
+ "polygon": [
+ [
+ 139.8599321098901,
+ 35.66741509009009
+ ],
+ [
+ 139.86015189010988,
+ 35.66741509009009
+ ],
+ [
+ 139.86015189010988,
+ 35.66723490990991
+ ],
+ [
+ 139.8599321098901,
+ 35.66723490990991
+ ],
+ [
+ 139.8599321098901,
+ 35.66741509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiRokuchome.1149.1",
+ "name": "西葛西六丁目",
+ "latitude": 35.661572,
+ "longitude": 139.863425,
+ "polygon": [
+ [
+ 139.86331510989012,
+ 35.66166209009009
+ ],
+ [
+ 139.8635348901099,
+ 35.66166209009009
+ ],
+ [
+ 139.8635348901099,
+ 35.66148190990991
+ ],
+ [
+ 139.86331510989012,
+ 35.66148190990991
+ ],
+ [
+ 139.86331510989012,
+ 35.66166209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiSugamo.1162.2",
+ "name": "西巣鴨",
+ "latitude": 35.744678,
+ "longitude": 139.728553,
+ "polygon": [
+ [
+ 139.72844310989012,
+ 35.74476809009009
+ ],
+ [
+ 139.7286628901099,
+ 35.74476809009009
+ ],
+ [
+ 139.7286628901099,
+ 35.74458790990991
+ ],
+ [
+ 139.72844310989012,
+ 35.74458790990991
+ ],
+ [
+ 139.72844310989012,
+ 35.74476809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiRokuchome.1149.2",
+ "name": "西葛西六丁目",
+ "latitude": 35.661878,
+ "longitude": 139.863292,
+ "polygon": [
+ [
+ 139.86318210989012,
+ 35.66196809009009
+ ],
+ [
+ 139.86340189010988,
+ 35.66196809009009
+ ],
+ [
+ 139.86340189010988,
+ 35.66178790990991
+ ],
+ [
+ 139.86318210989012,
+ 35.66178790990991
+ ],
+ [
+ 139.86318210989012,
+ 35.66196809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToagoseiHonsha.1159.4",
+ "name": "東亞合成本社前",
+ "latitude": 35.668894,
+ "longitude": 139.754187,
+ "polygon": [
+ [
+ 139.75407710989012,
+ 35.66898409009009
+ ],
+ [
+ 139.75429689010988,
+ 35.66898409009009
+ ],
+ [
+ 139.75429689010988,
+ 35.66880390990991
+ ],
+ [
+ 139.75407710989012,
+ 35.66880390990991
+ ],
+ [
+ 139.75407710989012,
+ 35.66898409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToagoseiHonsha.1159.5",
+ "name": "東亞合成本社前",
+ "latitude": 35.668653,
+ "longitude": 139.754176,
+ "polygon": [
+ [
+ 139.75406610989012,
+ 35.66874309009009
+ ],
+ [
+ 139.75428589010988,
+ 35.66874309009009
+ ],
+ [
+ 139.75428589010988,
+ 35.66856290990991
+ ],
+ [
+ 139.75406610989012,
+ 35.66856290990991
+ ],
+ [
+ 139.75406610989012,
+ 35.66874309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiSugamo.1162.1",
+ "name": "西巣鴨",
+ "latitude": 35.743763,
+ "longitude": 139.72765,
+ "polygon": [
+ [
+ 139.72754010989013,
+ 35.74385309009009
+ ],
+ [
+ 139.7277598901099,
+ 35.74385309009009
+ ],
+ [
+ 139.7277598901099,
+ 35.74367290990991
+ ],
+ [
+ 139.72754010989013,
+ 35.74367290990991
+ ],
+ [
+ 139.72754010989013,
+ 35.74385309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiSugamo.1162.3",
+ "name": "西巣鴨",
+ "latitude": 35.743872,
+ "longitude": 139.728639,
+ "polygon": [
+ [
+ 139.7285291098901,
+ 35.74396209009009
+ ],
+ [
+ 139.72874889010987,
+ 35.74396209009009
+ ],
+ [
+ 139.72874889010987,
+ 35.74378190990991
+ ],
+ [
+ 139.7285291098901,
+ 35.74378190990991
+ ],
+ [
+ 139.7285291098901,
+ 35.74396209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNagaoka.1163.1",
+ "name": "西長岡",
+ "latitude": 35.781541,
+ "longitude": 139.323786,
+ "polygon": [
+ [
+ 139.32367610989013,
+ 35.78163109009009
+ ],
+ [
+ 139.3238958901099,
+ 35.78163109009009
+ ],
+ [
+ 139.3238958901099,
+ 35.78145090990991
+ ],
+ [
+ 139.32367610989013,
+ 35.78145090990991
+ ],
+ [
+ 139.32367610989013,
+ 35.78163109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiStation.1164.1",
+ "name": "西日暮里駅前",
+ "latitude": 35.732083,
+ "longitude": 139.766089,
+ "polygon": [
+ [
+ 139.7659791098901,
+ 35.73217309009009
+ ],
+ [
+ 139.76619889010988,
+ 35.73217309009009
+ ],
+ [
+ 139.76619889010988,
+ 35.73199290990991
+ ],
+ [
+ 139.7659791098901,
+ 35.73199290990991
+ ],
+ [
+ 139.7659791098901,
+ 35.73217309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiStation.1164.2",
+ "name": "西日暮里駅前",
+ "latitude": 35.731953,
+ "longitude": 139.766264,
+ "polygon": [
+ [
+ 139.76615410989012,
+ 35.73204309009009
+ ],
+ [
+ 139.7663738901099,
+ 35.73204309009009
+ ],
+ [
+ 139.7663738901099,
+ 35.73186290990991
+ ],
+ [
+ 139.76615410989012,
+ 35.73186290990991
+ ],
+ [
+ 139.76615410989012,
+ 35.73204309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiStation.1164.3",
+ "name": "西日暮里駅前",
+ "latitude": 35.732277,
+ "longitude": 139.768551,
+ "polygon": [
+ [
+ 139.76844110989012,
+ 35.732367090090094
+ ],
+ [
+ 139.76866089010989,
+ 35.732367090090094
+ ],
+ [
+ 139.76866089010989,
+ 35.73218690990991
+ ],
+ [
+ 139.76844110989012,
+ 35.73218690990991
+ ],
+ [
+ 139.76844110989012,
+ 35.732367090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiStation.1164.4",
+ "name": "西日暮里駅前",
+ "latitude": 35.732542,
+ "longitude": 139.768567,
+ "polygon": [
+ [
+ 139.7684571098901,
+ 35.73263209009009
+ ],
+ [
+ 139.76867689010987,
+ 35.73263209009009
+ ],
+ [
+ 139.76867689010987,
+ 35.73245190990991
+ ],
+ [
+ 139.7684571098901,
+ 35.73245190990991
+ ],
+ [
+ 139.7684571098901,
+ 35.73263209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiGochome.1167.1",
+ "name": "西日暮里五丁目",
+ "latitude": 35.733419,
+ "longitude": 139.769129,
+ "polygon": [
+ [
+ 139.7690191098901,
+ 35.73350909009009
+ ],
+ [
+ 139.76923889010988,
+ 35.73350909009009
+ ],
+ [
+ 139.76923889010988,
+ 35.73332890990991
+ ],
+ [
+ 139.7690191098901,
+ 35.73332890990991
+ ],
+ [
+ 139.7690191098901,
+ 35.73350909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiItchome.1165.1",
+ "name": "西日暮里一丁目",
+ "latitude": 35.735157,
+ "longitude": 139.773573,
+ "polygon": [
+ [
+ 139.77346310989012,
+ 35.73524709009009
+ ],
+ [
+ 139.77368289010988,
+ 35.73524709009009
+ ],
+ [
+ 139.77368289010988,
+ 35.73506690990991
+ ],
+ [
+ 139.77346310989012,
+ 35.73506690990991
+ ],
+ [
+ 139.77346310989012,
+ 35.73524709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiItchome.1165.2",
+ "name": "西日暮里一丁目",
+ "latitude": 35.735059,
+ "longitude": 139.773084,
+ "polygon": [
+ [
+ 139.77297410989013,
+ 35.73514909009009
+ ],
+ [
+ 139.7731938901099,
+ 35.73514909009009
+ ],
+ [
+ 139.7731938901099,
+ 35.73496890990991
+ ],
+ [
+ 139.77297410989013,
+ 35.73496890990991
+ ],
+ [
+ 139.77297410989013,
+ 35.73514909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiMizueItchome.1170.2",
+ "name": "西瑞江一丁目",
+ "latitude": 35.701521,
+ "longitude": 139.896681,
+ "polygon": [
+ [
+ 139.89657110989012,
+ 35.70161109009009
+ ],
+ [
+ 139.89679089010988,
+ 35.70161109009009
+ ],
+ [
+ 139.89679089010988,
+ 35.70143090990991
+ ],
+ [
+ 139.89657110989012,
+ 35.70143090990991
+ ],
+ [
+ 139.89657110989012,
+ 35.70161109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiNichome.1166.1",
+ "name": "西日暮里二丁目",
+ "latitude": 35.730977,
+ "longitude": 139.770449,
+ "polygon": [
+ [
+ 139.77033910989013,
+ 35.73106709009009
+ ],
+ [
+ 139.7705588901099,
+ 35.73106709009009
+ ],
+ [
+ 139.7705588901099,
+ 35.73088690990991
+ ],
+ [
+ 139.77033910989013,
+ 35.73088690990991
+ ],
+ [
+ 139.77033910989013,
+ 35.73106709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiNichome.1166.2",
+ "name": "西日暮里二丁目",
+ "latitude": 35.731027,
+ "longitude": 139.770057,
+ "polygon": [
+ [
+ 139.76994710989013,
+ 35.73111709009009
+ ],
+ [
+ 139.7701668901099,
+ 35.73111709009009
+ ],
+ [
+ 139.7701668901099,
+ 35.73093690990991
+ ],
+ [
+ 139.76994710989013,
+ 35.73093690990991
+ ],
+ [
+ 139.76994710989013,
+ 35.73111709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiGochome.1167.2",
+ "name": "西日暮里五丁目",
+ "latitude": 35.73331,
+ "longitude": 139.769213,
+ "polygon": [
+ [
+ 139.76910310989012,
+ 35.73340009009009
+ ],
+ [
+ 139.7693228901099,
+ 35.73340009009009
+ ],
+ [
+ 139.7693228901099,
+ 35.73321990990991
+ ],
+ [
+ 139.76910310989012,
+ 35.73321990990991
+ ],
+ [
+ 139.76910310989012,
+ 35.73340009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiMizueGochome.1171.1",
+ "name": "西瑞江五丁目",
+ "latitude": 35.678289,
+ "longitude": 139.879173,
+ "polygon": [
+ [
+ 139.87906310989013,
+ 35.67837909009009
+ ],
+ [
+ 139.8792828901099,
+ 35.67837909009009
+ ],
+ [
+ 139.8792828901099,
+ 35.67819890990991
+ ],
+ [
+ 139.87906310989013,
+ 35.67819890990991
+ ],
+ [
+ 139.87906310989013,
+ 35.67837909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiRokuchome.1168.1",
+ "name": "西日暮里六丁目",
+ "latitude": 35.736809,
+ "longitude": 139.768544,
+ "polygon": [
+ [
+ 139.7684341098901,
+ 35.73689909009009
+ ],
+ [
+ 139.76865389010987,
+ 35.73689909009009
+ ],
+ [
+ 139.76865389010987,
+ 35.73671890990991
+ ],
+ [
+ 139.7684341098901,
+ 35.73671890990991
+ ],
+ [
+ 139.7684341098901,
+ 35.73689909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiNipporiRokuchome.1168.2",
+ "name": "西日暮里六丁目",
+ "latitude": 35.736671,
+ "longitude": 139.768301,
+ "polygon": [
+ [
+ 139.76819110989013,
+ 35.73676109009009
+ ],
+ [
+ 139.7684108901099,
+ 35.73676109009009
+ ],
+ [
+ 139.7684108901099,
+ 35.73658090990991
+ ],
+ [
+ 139.76819110989013,
+ 35.73658090990991
+ ],
+ [
+ 139.76819110989013,
+ 35.73676109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nishimabashi.1169.1",
+ "name": "西馬橋",
+ "latitude": 35.697798,
+ "longitude": 139.643424,
+ "polygon": [
+ [
+ 139.64331410989013,
+ 35.69788809009009
+ ],
+ [
+ 139.6435338901099,
+ 35.69788809009009
+ ],
+ [
+ 139.6435338901099,
+ 35.69770790990991
+ ],
+ [
+ 139.64331410989013,
+ 35.69770790990991
+ ],
+ [
+ 139.64331410989013,
+ 35.69788809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nishimabashi.1169.2",
+ "name": "西馬橋",
+ "latitude": 35.6976,
+ "longitude": 139.64333,
+ "polygon": [
+ [
+ 139.6432201098901,
+ 35.69769009009009
+ ],
+ [
+ 139.64343989010987,
+ 35.69769009009009
+ ],
+ [
+ 139.64343989010987,
+ 35.69750990990991
+ ],
+ [
+ 139.6432201098901,
+ 35.69750990990991
+ ],
+ [
+ 139.6432201098901,
+ 35.69769009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiMizueItchome.1170.1",
+ "name": "西瑞江一丁目",
+ "latitude": 35.701774,
+ "longitude": 139.895736,
+ "polygon": [
+ [
+ 139.89562610989012,
+ 35.70186409009009
+ ],
+ [
+ 139.89584589010988,
+ 35.70186409009009
+ ],
+ [
+ 139.89584589010988,
+ 35.70168390990991
+ ],
+ [
+ 139.89562610989012,
+ 35.70168390990991
+ ],
+ [
+ 139.89562610989012,
+ 35.70186409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiMizueGochome.1171.2",
+ "name": "西瑞江五丁目",
+ "latitude": 35.678371,
+ "longitude": 139.879478,
+ "polygon": [
+ [
+ 139.87936810989012,
+ 35.67846109009009
+ ],
+ [
+ 139.8795878901099,
+ 35.67846109009009
+ ],
+ [
+ 139.8795878901099,
+ 35.67828090990991
+ ],
+ [
+ 139.87936810989012,
+ 35.67828090990991
+ ],
+ [
+ 139.87936810989012,
+ 35.67846109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nishiwake.1172.1",
+ "name": "西分",
+ "latitude": 35.789773,
+ "longitude": 139.2655,
+ "polygon": [
+ [
+ 139.26539010989012,
+ 35.78986309009009
+ ],
+ [
+ 139.26560989010989,
+ 35.78986309009009
+ ],
+ [
+ 139.26560989010989,
+ 35.78968290990991
+ ],
+ [
+ 139.26539010989012,
+ 35.78968290990991
+ ],
+ [
+ 139.26539010989012,
+ 35.78986309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nishiwake.1172.2",
+ "name": "西分",
+ "latitude": 35.789637,
+ "longitude": 139.265339,
+ "polygon": [
+ [
+ 139.26522910989013,
+ 35.78972709009009
+ ],
+ [
+ 139.2654488901099,
+ 35.78972709009009
+ ],
+ [
+ 139.2654488901099,
+ 35.78954690990991
+ ],
+ [
+ 139.26522910989013,
+ 35.78954690990991
+ ],
+ [
+ 139.26522910989013,
+ 35.78972709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiwakeNichome.1173.1",
+ "name": "西分二丁目",
+ "latitude": 35.789265,
+ "longitude": 139.263437,
+ "polygon": [
+ [
+ 139.26332710989013,
+ 35.78935509009009
+ ],
+ [
+ 139.2635468901099,
+ 35.78935509009009
+ ],
+ [
+ 139.2635468901099,
+ 35.78917490990991
+ ],
+ [
+ 139.26332710989013,
+ 35.78917490990991
+ ],
+ [
+ 139.26332710989013,
+ 35.78935509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiwakeNichome.1173.2",
+ "name": "西分二丁目",
+ "latitude": 35.789104,
+ "longitude": 139.262788,
+ "polygon": [
+ [
+ 139.26267810989012,
+ 35.78919409009009
+ ],
+ [
+ 139.26289789010988,
+ 35.78919409009009
+ ],
+ [
+ 139.26289789010988,
+ 35.78901390990991
+ ],
+ [
+ 139.26267810989012,
+ 35.78901390990991
+ ],
+ [
+ 139.26267810989012,
+ 35.78919409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiWaseda.1174.1",
+ "name": "西早稲田",
+ "latitude": 35.708952,
+ "longitude": 139.716995,
+ "polygon": [
+ [
+ 139.71688510989011,
+ 35.70904209009009
+ ],
+ [
+ 139.71710489010988,
+ 35.70904209009009
+ ],
+ [
+ 139.71710489010988,
+ 35.708861909909906
+ ],
+ [
+ 139.71688510989011,
+ 35.708861909909906
+ ],
+ [
+ 139.71688510989011,
+ 35.70904209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NissekiIryoCenterShita.1176.2",
+ "name": "日赤医療センター下",
+ "latitude": 35.655109,
+ "longitude": 139.723234,
+ "polygon": [
+ [
+ 139.7231241098901,
+ 35.65519909009009
+ ],
+ [
+ 139.72334389010987,
+ 35.65519909009009
+ ],
+ [
+ 139.72334389010987,
+ 35.65501890990991
+ ],
+ [
+ 139.7231241098901,
+ 35.65501890990991
+ ],
+ [
+ 139.7231241098901,
+ 35.65519909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiWaseda.1174.2",
+ "name": "西早稲田",
+ "latitude": 35.708693,
+ "longitude": 139.716947,
+ "polygon": [
+ [
+ 139.71683710989012,
+ 35.70878309009009
+ ],
+ [
+ 139.7170568901099,
+ 35.70878309009009
+ ],
+ [
+ 139.7170568901099,
+ 35.70860290990991
+ ],
+ [
+ 139.71683710989012,
+ 35.70860290990991
+ ],
+ [
+ 139.71683710989012,
+ 35.70878309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiWaseda.1174.3",
+ "name": "西早稲田",
+ "latitude": 35.709395,
+ "longitude": 139.715999,
+ "polygon": [
+ [
+ 139.71588910989013,
+ 35.70948509009009
+ ],
+ [
+ 139.7161088901099,
+ 35.70948509009009
+ ],
+ [
+ 139.7161088901099,
+ 35.70930490990991
+ ],
+ [
+ 139.71588910989013,
+ 35.70930490990991
+ ],
+ [
+ 139.71588910989013,
+ 35.70948509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiWaseda.1174.4",
+ "name": "西早稲田",
+ "latitude": 35.709611,
+ "longitude": 139.715821,
+ "polygon": [
+ [
+ 139.71571110989012,
+ 35.70970109009009
+ ],
+ [
+ 139.7159308901099,
+ 35.70970109009009
+ ],
+ [
+ 139.7159308901099,
+ 35.70952090990991
+ ],
+ [
+ 139.71571110989012,
+ 35.70952090990991
+ ],
+ [
+ 139.71571110989012,
+ 35.70970109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NissekiIryoCenter.1175.1",
+ "name": "日赤医療センター前",
+ "latitude": 35.655175,
+ "longitude": 139.717661,
+ "polygon": [
+ [
+ 139.7175511098901,
+ 35.65526509009009
+ ],
+ [
+ 139.71777089010988,
+ 35.65526509009009
+ ],
+ [
+ 139.71777089010988,
+ 35.65508490990991
+ ],
+ [
+ 139.7175511098901,
+ 35.65508490990991
+ ],
+ [
+ 139.7175511098901,
+ 35.65526509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiSanchome.1253.1",
+ "name": "晴海三丁目",
+ "latitude": 35.655767,
+ "longitude": 139.782145,
+ "polygon": [
+ [
+ 139.78203510989013,
+ 35.65585709009009
+ ],
+ [
+ 139.7822548901099,
+ 35.65585709009009
+ ],
+ [
+ 139.7822548901099,
+ 35.65567690990991
+ ],
+ [
+ 139.78203510989013,
+ 35.65567690990991
+ ],
+ [
+ 139.78203510989013,
+ 35.65585709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NissekiIryoCenter.1175.2",
+ "name": "日赤医療センター前",
+ "latitude": 35.655449,
+ "longitude": 139.717658,
+ "polygon": [
+ [
+ 139.71754810989012,
+ 35.65553909009009
+ ],
+ [
+ 139.71776789010988,
+ 35.65553909009009
+ ],
+ [
+ 139.71776789010988,
+ 35.65535890990991
+ ],
+ [
+ 139.71754810989012,
+ 35.65535890990991
+ ],
+ [
+ 139.71754810989012,
+ 35.65553909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NissekiIryoCenterShita.1176.1",
+ "name": "日赤医療センター下",
+ "latitude": 35.655175,
+ "longitude": 139.723042,
+ "polygon": [
+ [
+ 139.7229321098901,
+ 35.65526509009009
+ ],
+ [
+ 139.72315189010988,
+ 35.65526509009009
+ ],
+ [
+ 139.72315189010988,
+ 35.65508490990991
+ ],
+ [
+ 139.7229321098901,
+ 35.65508490990991
+ ],
+ [
+ 139.7229321098901,
+ 35.65526509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ninohashi.1180.4",
+ "name": "二ノ橋",
+ "latitude": 35.651992,
+ "longitude": 139.73678,
+ "polygon": [
+ [
+ 139.73667010989013,
+ 35.65208209009009
+ ],
+ [
+ 139.7368898901099,
+ 35.65208209009009
+ ],
+ [
+ 139.7368898901099,
+ 35.65190190990991
+ ],
+ [
+ 139.73667010989013,
+ 35.65190190990991
+ ],
+ [
+ 139.73667010989013,
+ 35.65208209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nissobashi.1177.1",
+ "name": "日曹橋",
+ "latitude": 35.670773,
+ "longitude": 139.825836,
+ "polygon": [
+ [
+ 139.82572610989013,
+ 35.67086309009009
+ ],
+ [
+ 139.8259458901099,
+ 35.67086309009009
+ ],
+ [
+ 139.8259458901099,
+ 35.67068290990991
+ ],
+ [
+ 139.82572610989013,
+ 35.67068290990991
+ ],
+ [
+ 139.82572610989013,
+ 35.67086309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nissobashi.1177.2",
+ "name": "日曹橋",
+ "latitude": 35.671081,
+ "longitude": 139.826125,
+ "polygon": [
+ [
+ 139.8260151098901,
+ 35.67117109009009
+ ],
+ [
+ 139.82623489010987,
+ 35.67117109009009
+ ],
+ [
+ 139.82623489010987,
+ 35.67099090990991
+ ],
+ [
+ 139.8260151098901,
+ 35.67099090990991
+ ],
+ [
+ 139.8260151098901,
+ 35.67117109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NipporiStation.1178.1",
+ "name": "日暮里駅前",
+ "latitude": 35.728402,
+ "longitude": 139.7717,
+ "polygon": [
+ [
+ 139.77159010989013,
+ 35.72849209009009
+ ],
+ [
+ 139.7718098901099,
+ 35.72849209009009
+ ],
+ [
+ 139.7718098901099,
+ 35.72831190990991
+ ],
+ [
+ 139.77159010989013,
+ 35.72831190990991
+ ],
+ [
+ 139.77159010989013,
+ 35.72849209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NihonZutsumi.1184.1",
+ "name": "日本堤",
+ "latitude": 35.725897,
+ "longitude": 139.796241,
+ "polygon": [
+ [
+ 139.79613110989013,
+ 35.72598709009009
+ ],
+ [
+ 139.7963508901099,
+ 35.72598709009009
+ ],
+ [
+ 139.7963508901099,
+ 35.72580690990991
+ ],
+ [
+ 139.79613110989013,
+ 35.72580690990991
+ ],
+ [
+ 139.79613110989013,
+ 35.72598709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NipporiStation.1178.2",
+ "name": "日暮里駅前",
+ "latitude": 35.728649,
+ "longitude": 139.771493,
+ "polygon": [
+ [
+ 139.7713831098901,
+ 35.72873909009009
+ ],
+ [
+ 139.77160289010988,
+ 35.72873909009009
+ ],
+ [
+ 139.77160289010988,
+ 35.72855890990991
+ ],
+ [
+ 139.7713831098901,
+ 35.72855890990991
+ ],
+ [
+ 139.7713831098901,
+ 35.72873909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NipporiStation.1178.3",
+ "name": "日暮里駅前",
+ "latitude": 35.729028,
+ "longitude": 139.771154,
+ "polygon": [
+ [
+ 139.7710441098901,
+ 35.72911809009009
+ ],
+ [
+ 139.77126389010988,
+ 35.72911809009009
+ ],
+ [
+ 139.77126389010988,
+ 35.72893790990991
+ ],
+ [
+ 139.7710441098901,
+ 35.72893790990991
+ ],
+ [
+ 139.7710441098901,
+ 35.72911809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NipporiStation.1178.4",
+ "name": "日暮里駅前",
+ "latitude": 35.729179,
+ "longitude": 139.77186,
+ "polygon": [
+ [
+ 139.77175010989012,
+ 35.72926909009009
+ ],
+ [
+ 139.7719698901099,
+ 35.72926909009009
+ ],
+ [
+ 139.7719698901099,
+ 35.72908890990991
+ ],
+ [
+ 139.77175010989012,
+ 35.72908890990991
+ ],
+ [
+ 139.77175010989012,
+ 35.72926909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NipporiStation.1178.5",
+ "name": "日暮里駅前",
+ "latitude": 35.728375,
+ "longitude": 139.771495,
+ "polygon": [
+ [
+ 139.7713851098901,
+ 35.72846509009009
+ ],
+ [
+ 139.77160489010987,
+ 35.72846509009009
+ ],
+ [
+ 139.77160489010987,
+ 35.72828490990991
+ ],
+ [
+ 139.7713851098901,
+ 35.72828490990991
+ ],
+ [
+ 139.7713851098901,
+ 35.72846509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nitemmon.1179.1",
+ "name": "二天門",
+ "latitude": 35.714484,
+ "longitude": 139.798187,
+ "polygon": [
+ [
+ 139.79807710989013,
+ 35.71457409009009
+ ],
+ [
+ 139.7982968901099,
+ 35.71457409009009
+ ],
+ [
+ 139.7982968901099,
+ 35.71439390990991
+ ],
+ [
+ 139.79807710989013,
+ 35.71439390990991
+ ],
+ [
+ 139.79807710989013,
+ 35.71457409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeGochome.1272.2",
+ "name": "東青梅五丁目",
+ "latitude": 35.791093,
+ "longitude": 139.28068,
+ "polygon": [
+ [
+ 139.2805701098901,
+ 35.79118309009009
+ ],
+ [
+ 139.28078989010987,
+ 35.79118309009009
+ ],
+ [
+ 139.28078989010987,
+ 35.791002909909906
+ ],
+ [
+ 139.2805701098901,
+ 35.791002909909906
+ ],
+ [
+ 139.2805701098901,
+ 35.79118309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nitemmon.1179.2",
+ "name": "二天門",
+ "latitude": 35.714587,
+ "longitude": 139.798425,
+ "polygon": [
+ [
+ 139.79831510989013,
+ 35.71467709009009
+ ],
+ [
+ 139.7985348901099,
+ 35.71467709009009
+ ],
+ [
+ 139.7985348901099,
+ 35.71449690990991
+ ],
+ [
+ 139.79831510989013,
+ 35.71449690990991
+ ],
+ [
+ 139.79831510989013,
+ 35.71467709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ninohashi.1180.1",
+ "name": "二ノ橋",
+ "latitude": 35.652643,
+ "longitude": 139.736011,
+ "polygon": [
+ [
+ 139.7359011098901,
+ 35.65273309009009
+ ],
+ [
+ 139.73612089010987,
+ 35.65273309009009
+ ],
+ [
+ 139.73612089010987,
+ 35.65255290990991
+ ],
+ [
+ 139.7359011098901,
+ 35.65255290990991
+ ],
+ [
+ 139.7359011098901,
+ 35.65273309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ninohashi.1180.2",
+ "name": "二ノ橋",
+ "latitude": 35.652518,
+ "longitude": 139.736044,
+ "polygon": [
+ [
+ 139.7359341098901,
+ 35.65260809009009
+ ],
+ [
+ 139.73615389010988,
+ 35.65260809009009
+ ],
+ [
+ 139.73615389010988,
+ 35.65242790990991
+ ],
+ [
+ 139.7359341098901,
+ 35.65242790990991
+ ],
+ [
+ 139.7359341098901,
+ 35.65260809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ninohashi.1180.3",
+ "name": "二ノ橋",
+ "latitude": 35.652036,
+ "longitude": 139.736393,
+ "polygon": [
+ [
+ 139.7362831098901,
+ 35.65212609009009
+ ],
+ [
+ 139.73650289010988,
+ 35.65212609009009
+ ],
+ [
+ 139.73650289010988,
+ 35.65194590990991
+ ],
+ [
+ 139.7362831098901,
+ 35.65194590990991
+ ],
+ [
+ 139.7362831098901,
+ 35.65212609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NihonJoshiDai.1183.3",
+ "name": "日本女子大前",
+ "latitude": 35.716055,
+ "longitude": 139.719966,
+ "polygon": [
+ [
+ 139.71985610989012,
+ 35.71614509009009
+ ],
+ [
+ 139.72007589010988,
+ 35.71614509009009
+ ],
+ [
+ 139.72007589010988,
+ 35.71596490990991
+ ],
+ [
+ 139.71985610989012,
+ 35.71596490990991
+ ],
+ [
+ 139.71985610989012,
+ 35.71614509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NihonJoshiDai.1183.4",
+ "name": "日本女子大前",
+ "latitude": 35.716123,
+ "longitude": 139.720226,
+ "polygon": [
+ [
+ 139.7201161098901,
+ 35.71621309009009
+ ],
+ [
+ 139.72033589010988,
+ 35.71621309009009
+ ],
+ [
+ 139.72033589010988,
+ 35.71603290990991
+ ],
+ [
+ 139.7201161098901,
+ 35.71603290990991
+ ],
+ [
+ 139.7201161098901,
+ 35.71621309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeSogoKoko.1200.1",
+ "name": "青梅総合高校前",
+ "latitude": 35.789712,
+ "longitude": 139.2705,
+ "polygon": [
+ [
+ 139.27039010989012,
+ 35.78980209009009
+ ],
+ [
+ 139.27060989010988,
+ 35.78980209009009
+ ],
+ [
+ 139.27060989010988,
+ 35.78962190990991
+ ],
+ [
+ 139.27039010989012,
+ 35.78962190990991
+ ],
+ [
+ 139.27039010989012,
+ 35.78980209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NihonZutsumi.1184.2",
+ "name": "日本堤",
+ "latitude": 35.726272,
+ "longitude": 139.795658,
+ "polygon": [
+ [
+ 139.79554810989012,
+ 35.72636209009009
+ ],
+ [
+ 139.7957678901099,
+ 35.72636209009009
+ ],
+ [
+ 139.7957678901099,
+ 35.72618190990991
+ ],
+ [
+ 139.79554810989012,
+ 35.72618190990991
+ ],
+ [
+ 139.79554810989012,
+ 35.72636209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nihombashi.1185.1",
+ "name": "日本橋",
+ "latitude": 35.683308,
+ "longitude": 139.774064,
+ "polygon": [
+ [
+ 139.77395410989013,
+ 35.68339809009009
+ ],
+ [
+ 139.7741738901099,
+ 35.68339809009009
+ ],
+ [
+ 139.7741738901099,
+ 35.68321790990991
+ ],
+ [
+ 139.77395410989013,
+ 35.68321790990991
+ ],
+ [
+ 139.77395410989013,
+ 35.68339809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nihombashi.1185.2",
+ "name": "日本橋",
+ "latitude": 35.68276,
+ "longitude": 139.772796,
+ "polygon": [
+ [
+ 139.77268610989012,
+ 35.68285009009009
+ ],
+ [
+ 139.77290589010988,
+ 35.68285009009009
+ ],
+ [
+ 139.77290589010988,
+ 35.68266990990991
+ ],
+ [
+ 139.77268610989012,
+ 35.68266990990991
+ ],
+ [
+ 139.77268610989012,
+ 35.68285009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinKoiwaYonchome.1291.2",
+ "name": "東新小岩四丁目",
+ "latitude": 35.724899,
+ "longitude": 139.865192,
+ "polygon": [
+ [
+ 139.86508210989012,
+ 35.72498909009009
+ ],
+ [
+ 139.8653018901099,
+ 35.72498909009009
+ ],
+ [
+ 139.8653018901099,
+ 35.72480890990991
+ ],
+ [
+ 139.86508210989012,
+ 35.72480890990991
+ ],
+ [
+ 139.86508210989012,
+ 35.72498909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nihombashi.1185.3",
+ "name": "日本橋",
+ "latitude": 35.682095,
+ "longitude": 139.774473,
+ "polygon": [
+ [
+ 139.77436310989012,
+ 35.68218509009009
+ ],
+ [
+ 139.77458289010988,
+ 35.68218509009009
+ ],
+ [
+ 139.77458289010988,
+ 35.68200490990991
+ ],
+ [
+ 139.77436310989012,
+ 35.68200490990991
+ ],
+ [
+ 139.77436310989012,
+ 35.68218509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nihombashi.1185.4",
+ "name": "日本橋",
+ "latitude": 35.68233,
+ "longitude": 139.774471,
+ "polygon": [
+ [
+ 139.77436110989012,
+ 35.68242009009009
+ ],
+ [
+ 139.7745808901099,
+ 35.68242009009009
+ ],
+ [
+ 139.7745808901099,
+ 35.68223990990991
+ ],
+ [
+ 139.77436110989012,
+ 35.68223990990991
+ ],
+ [
+ 139.77436110989012,
+ 35.68242009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NihombashiMitsukoshi.1186.1",
+ "name": "日本橋三越",
+ "latitude": 35.685856,
+ "longitude": 139.77397,
+ "polygon": [
+ [
+ 139.7738601098901,
+ 35.68594609009009
+ ],
+ [
+ 139.77407989010987,
+ 35.68594609009009
+ ],
+ [
+ 139.77407989010987,
+ 35.68576590990991
+ ],
+ [
+ 139.7738601098901,
+ 35.68576590990991
+ ],
+ [
+ 139.7738601098901,
+ 35.68594609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NihombashiMitsukoshi.1186.2",
+ "name": "日本橋三越",
+ "latitude": 35.685177,
+ "longitude": 139.774504,
+ "polygon": [
+ [
+ 139.77439410989012,
+ 35.68526709009009
+ ],
+ [
+ 139.7746138901099,
+ 35.68526709009009
+ ],
+ [
+ 139.7746138901099,
+ 35.68508690990991
+ ],
+ [
+ 139.77439410989012,
+ 35.68508690990991
+ ],
+ [
+ 139.77439410989012,
+ 35.68526709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nimaibashi.1187.1",
+ "name": "二枚橋",
+ "latitude": 35.722813,
+ "longitude": 139.881439,
+ "polygon": [
+ [
+ 139.88132910989012,
+ 35.72290309009009
+ ],
+ [
+ 139.88154889010988,
+ 35.72290309009009
+ ],
+ [
+ 139.88154889010988,
+ 35.72272290990991
+ ],
+ [
+ 139.88132910989012,
+ 35.72272290990991
+ ],
+ [
+ 139.88132910989012,
+ 35.72290309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaSanchome.1294.2",
+ "name": "東砂三丁目",
+ "latitude": 35.681361,
+ "longitude": 139.844436,
+ "polygon": [
+ [
+ 139.84432610989012,
+ 35.68145109009009
+ ],
+ [
+ 139.84454589010988,
+ 35.68145109009009
+ ],
+ [
+ 139.84454589010988,
+ 35.68127090990991
+ ],
+ [
+ 139.84432610989012,
+ 35.68127090990991
+ ],
+ [
+ 139.84432610989012,
+ 35.68145109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nimaibashi.1187.2",
+ "name": "二枚橋",
+ "latitude": 35.722754,
+ "longitude": 139.881206,
+ "polygon": [
+ [
+ 139.8810961098901,
+ 35.72284409009009
+ ],
+ [
+ 139.88131589010987,
+ 35.72284409009009
+ ],
+ [
+ 139.88131589010987,
+ 35.72266390990991
+ ],
+ [
+ 139.8810961098901,
+ 35.72266390990991
+ ],
+ [
+ 139.8810961098901,
+ 35.72284409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NingyochoSanchome.1188.1",
+ "name": "人形町三丁目",
+ "latitude": 35.686731,
+ "longitude": 139.781746,
+ "polygon": [
+ [
+ 139.78163610989012,
+ 35.68682109009009
+ ],
+ [
+ 139.78185589010988,
+ 35.68682109009009
+ ],
+ [
+ 139.78185589010988,
+ 35.68664090990991
+ ],
+ [
+ 139.78163610989012,
+ 35.68664090990991
+ ],
+ [
+ 139.78163610989012,
+ 35.68682109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nukebenten.1189.1",
+ "name": "抜弁天",
+ "latitude": 35.697819,
+ "longitude": 139.712824,
+ "polygon": [
+ [
+ 139.71271410989013,
+ 35.69790909009009
+ ],
+ [
+ 139.7129338901099,
+ 35.69790909009009
+ ],
+ [
+ 139.7129338901099,
+ 35.69772890990991
+ ],
+ [
+ 139.71271410989013,
+ 35.69772890990991
+ ],
+ [
+ 139.71271410989013,
+ 35.69790909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nukebenten.1189.2",
+ "name": "抜弁天",
+ "latitude": 35.697643,
+ "longitude": 139.713468,
+ "polygon": [
+ [
+ 139.71335810989012,
+ 35.69773309009009
+ ],
+ [
+ 139.7135778901099,
+ 35.69773309009009
+ ],
+ [
+ 139.7135778901099,
+ 35.69755290990991
+ ],
+ [
+ 139.71335810989012,
+ 35.69755290990991
+ ],
+ [
+ 139.71335810989012,
+ 35.69773309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nekabu.1190.1",
+ "name": "根ヶ布",
+ "latitude": 35.797547,
+ "longitude": 139.267837,
+ "polygon": [
+ [
+ 139.2677271098901,
+ 35.79763709009009
+ ],
+ [
+ 139.26794689010987,
+ 35.79763709009009
+ ],
+ [
+ 139.26794689010987,
+ 35.79745690990991
+ ],
+ [
+ 139.2677271098901,
+ 35.79745690990991
+ ],
+ [
+ 139.2677271098901,
+ 35.79763709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nekabu.1190.2",
+ "name": "根ヶ布",
+ "latitude": 35.797555,
+ "longitude": 139.267941,
+ "polygon": [
+ [
+ 139.26783110989012,
+ 35.79764509009009
+ ],
+ [
+ 139.2680508901099,
+ 35.79764509009009
+ ],
+ [
+ 139.2680508901099,
+ 35.79746490990991
+ ],
+ [
+ 139.26783110989012,
+ 35.79746490990991
+ ],
+ [
+ 139.26783110989012,
+ 35.79764509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeSogoKoko.1200.2",
+ "name": "青梅総合高校前",
+ "latitude": 35.7896,
+ "longitude": 139.270606,
+ "polygon": [
+ [
+ 139.2704961098901,
+ 35.78969009009009
+ ],
+ [
+ 139.27071589010987,
+ 35.78969009009009
+ ],
+ [
+ 139.27071589010987,
+ 35.78950990990991
+ ],
+ [
+ 139.2704961098901,
+ 35.78950990990991
+ ],
+ [
+ 139.2704961098901,
+ 35.78969009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NezuStation.1191.1",
+ "name": "根津駅前",
+ "latitude": 35.717565,
+ "longitude": 139.765608,
+ "polygon": [
+ [
+ 139.7654981098901,
+ 35.71765509009009
+ ],
+ [
+ 139.76571789010987,
+ 35.71765509009009
+ ],
+ [
+ 139.76571789010987,
+ 35.71747490990991
+ ],
+ [
+ 139.7654981098901,
+ 35.71747490990991
+ ],
+ [
+ 139.7654981098901,
+ 35.71765509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NezuStation.1191.2",
+ "name": "根津駅前",
+ "latitude": 35.717369,
+ "longitude": 139.76558,
+ "polygon": [
+ [
+ 139.76547010989012,
+ 35.71745909009009
+ ],
+ [
+ 139.76568989010988,
+ 35.71745909009009
+ ],
+ [
+ 139.76568989010988,
+ 35.71727890990991
+ ],
+ [
+ 139.76547010989012,
+ 35.71727890990991
+ ],
+ [
+ 139.76547010989012,
+ 35.71745909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NezuStation.1191.3",
+ "name": "根津駅前",
+ "latitude": 35.718295,
+ "longitude": 139.765682,
+ "polygon": [
+ [
+ 139.76557210989012,
+ 35.71838509009009
+ ],
+ [
+ 139.76579189010988,
+ 35.71838509009009
+ ],
+ [
+ 139.76579189010988,
+ 35.71820490990991
+ ],
+ [
+ 139.76557210989012,
+ 35.71820490990991
+ ],
+ [
+ 139.76557210989012,
+ 35.71838509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NezuStation.1191.4",
+ "name": "根津駅前",
+ "latitude": 35.718131,
+ "longitude": 139.765055,
+ "polygon": [
+ [
+ 139.7649451098901,
+ 35.71822109009009
+ ],
+ [
+ 139.76516489010987,
+ 35.71822109009009
+ ],
+ [
+ 139.76516489010987,
+ 35.71804090990991
+ ],
+ [
+ 139.7649451098901,
+ 35.71804090990991
+ ],
+ [
+ 139.7649451098901,
+ 35.71822109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NezuJinjaIriguchi.1192.1",
+ "name": "根津神社入口",
+ "latitude": 35.719615,
+ "longitude": 139.763361,
+ "polygon": [
+ [
+ 139.76325110989012,
+ 35.71970509009009
+ ],
+ [
+ 139.7634708901099,
+ 35.71970509009009
+ ],
+ [
+ 139.7634708901099,
+ 35.71952490990991
+ ],
+ [
+ 139.76325110989012,
+ 35.71952490990991
+ ],
+ [
+ 139.76325110989012,
+ 35.71970509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NezuJinjaIriguchi.1192.2",
+ "name": "根津神社入口",
+ "latitude": 35.720314,
+ "longitude": 139.762861,
+ "polygon": [
+ [
+ 139.7627511098901,
+ 35.72040409009009
+ ],
+ [
+ 139.76297089010987,
+ 35.72040409009009
+ ],
+ [
+ 139.76297089010987,
+ 35.72022390990991
+ ],
+ [
+ 139.7627511098901,
+ 35.72022390990991
+ ],
+ [
+ 139.7627511098901,
+ 35.72040409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NerimaShako.1197.1",
+ "name": "練馬車庫前",
+ "latitude": 35.738478,
+ "longitude": 139.664866,
+ "polygon": [
+ [
+ 139.6647561098901,
+ 35.73856809009009
+ ],
+ [
+ 139.66497589010987,
+ 35.73856809009009
+ ],
+ [
+ 139.66497589010987,
+ 35.73838790990991
+ ],
+ [
+ 139.6647561098901,
+ 35.73838790990991
+ ],
+ [
+ 139.6647561098901,
+ 35.73856809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NerimaShako.1197.2",
+ "name": "練馬車庫前",
+ "latitude": 35.738333,
+ "longitude": 139.664694,
+ "polygon": [
+ [
+ 139.66458410989011,
+ 35.73842309009009
+ ],
+ [
+ 139.66480389010988,
+ 35.73842309009009
+ ],
+ [
+ 139.66480389010988,
+ 35.73824290990991
+ ],
+ [
+ 139.66458410989011,
+ 35.73824290990991
+ ],
+ [
+ 139.66458410989011,
+ 35.73842309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NerimaShako.1197.3",
+ "name": "練馬車庫前",
+ "latitude": 35.738301,
+ "longitude": 139.664019,
+ "polygon": [
+ [
+ 139.6639091098901,
+ 35.73839109009009
+ ],
+ [
+ 139.66412889010988,
+ 35.73839109009009
+ ],
+ [
+ 139.66412889010988,
+ 35.73821090990991
+ ],
+ [
+ 139.6639091098901,
+ 35.73821090990991
+ ],
+ [
+ 139.6639091098901,
+ 35.73839109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NerimaShako.1197.4",
+ "name": "練馬車庫前",
+ "latitude": 35.738366,
+ "longitude": 139.664658,
+ "polygon": [
+ [
+ 139.66454810989012,
+ 35.73845609009009
+ ],
+ [
+ 139.66476789010989,
+ 35.73845609009009
+ ],
+ [
+ 139.66476789010989,
+ 35.73827590990991
+ ],
+ [
+ 139.66454810989012,
+ 35.73827590990991
+ ],
+ [
+ 139.66454810989012,
+ 35.73845609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeSogoKokoIriguchi.1199.1",
+ "name": "青梅総合高校入口",
+ "latitude": 35.790597,
+ "longitude": 139.268276,
+ "polygon": [
+ [
+ 139.2681661098901,
+ 35.79068709009009
+ ],
+ [
+ 139.26838589010987,
+ 35.79068709009009
+ ],
+ [
+ 139.26838589010987,
+ 35.79050690990991
+ ],
+ [
+ 139.2681661098901,
+ 35.79050690990991
+ ],
+ [
+ 139.2681661098901,
+ 35.79068709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeSanchome.1271.1",
+ "name": "東青梅三丁目",
+ "latitude": 35.790615,
+ "longitude": 139.277679,
+ "polygon": [
+ [
+ 139.27756910989012,
+ 35.79070509009009
+ ],
+ [
+ 139.2777888901099,
+ 35.79070509009009
+ ],
+ [
+ 139.2777888901099,
+ 35.79052490990991
+ ],
+ [
+ 139.27756910989012,
+ 35.79052490990991
+ ],
+ [
+ 139.27756910989012,
+ 35.79070509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeSogoKokoIriguchi.1199.2",
+ "name": "青梅総合高校入口",
+ "latitude": 35.79045,
+ "longitude": 139.268179,
+ "polygon": [
+ [
+ 139.26806910989012,
+ 35.79054009009009
+ ],
+ [
+ 139.2682888901099,
+ 35.79054009009009
+ ],
+ [
+ 139.2682888901099,
+ 35.79035990990991
+ ],
+ [
+ 139.26806910989012,
+ 35.79035990990991
+ ],
+ [
+ 139.26806910989012,
+ 35.79054009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NogataStationKitaguchi.1201.1",
+ "name": "野方駅北口",
+ "latitude": 35.721165,
+ "longitude": 139.653911,
+ "polygon": [
+ [
+ 139.6538011098901,
+ 35.72125509009009
+ ],
+ [
+ 139.65402089010988,
+ 35.72125509009009
+ ],
+ [
+ 139.65402089010988,
+ 35.72107490990991
+ ],
+ [
+ 139.6538011098901,
+ 35.72107490990991
+ ],
+ [
+ 139.6538011098901,
+ 35.72125509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NogataStationKitaguchi.1201.2",
+ "name": "野方駅北口",
+ "latitude": 35.721418,
+ "longitude": 139.653598,
+ "polygon": [
+ [
+ 139.6534881098901,
+ 35.72150809009009
+ ],
+ [
+ 139.65370789010987,
+ 35.72150809009009
+ ],
+ [
+ 139.65370789010987,
+ 35.72132790990991
+ ],
+ [
+ 139.6534881098901,
+ 35.72132790990991
+ ],
+ [
+ 139.6534881098901,
+ 35.72150809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NogataStationMinamiguchi.1202.1",
+ "name": "野方駅南口",
+ "latitude": 35.71689,
+ "longitude": 139.653873,
+ "polygon": [
+ [
+ 139.65376310989012,
+ 35.71698009009009
+ ],
+ [
+ 139.6539828901099,
+ 35.71698009009009
+ ],
+ [
+ 139.6539828901099,
+ 35.71679990990991
+ ],
+ [
+ 139.65376310989012,
+ 35.71679990990991
+ ],
+ [
+ 139.65376310989012,
+ 35.71698009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NogataStationMinamiguchi.1202.2",
+ "name": "野方駅南口",
+ "latitude": 35.716101,
+ "longitude": 139.653628,
+ "polygon": [
+ [
+ 139.65351810989011,
+ 35.71619109009009
+ ],
+ [
+ 139.65373789010988,
+ 35.71619109009009
+ ],
+ [
+ 139.65373789010988,
+ 35.71601090990991
+ ],
+ [
+ 139.65351810989011,
+ 35.71601090990991
+ ],
+ [
+ 139.65351810989011,
+ 35.71619109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NogataNichome.1203.1",
+ "name": "野方二丁目",
+ "latitude": 35.712374,
+ "longitude": 139.654009,
+ "polygon": [
+ [
+ 139.65389910989012,
+ 35.71246409009009
+ ],
+ [
+ 139.65411889010988,
+ 35.71246409009009
+ ],
+ [
+ 139.65411889010988,
+ 35.71228390990991
+ ],
+ [
+ 139.65389910989012,
+ 35.71228390990991
+ ],
+ [
+ 139.65389910989012,
+ 35.71246409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NogataNichome.1203.2",
+ "name": "野方二丁目",
+ "latitude": 35.712543,
+ "longitude": 139.653729,
+ "polygon": [
+ [
+ 139.65361910989012,
+ 35.71263309009009
+ ],
+ [
+ 139.65383889010988,
+ 35.71263309009009
+ ],
+ [
+ 139.65383889010988,
+ 35.712452909909906
+ ],
+ [
+ 139.65361910989012,
+ 35.712452909909906
+ ],
+ [
+ 139.65361910989012,
+ 35.71263309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nogami.1204.1",
+ "name": "野上",
+ "latitude": 35.79258,
+ "longitude": 139.287173,
+ "polygon": [
+ [
+ 139.2870631098901,
+ 35.79267009009009
+ ],
+ [
+ 139.28728289010988,
+ 35.79267009009009
+ ],
+ [
+ 139.28728289010988,
+ 35.79248990990991
+ ],
+ [
+ 139.2870631098901,
+ 35.79248990990991
+ ],
+ [
+ 139.2870631098901,
+ 35.79267009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nogami.1204.2",
+ "name": "野上",
+ "latitude": 35.792609,
+ "longitude": 139.286889,
+ "polygon": [
+ [
+ 139.28677910989012,
+ 35.79269909009009
+ ],
+ [
+ 139.28699889010988,
+ 35.79269909009009
+ ],
+ [
+ 139.28699889010988,
+ 35.79251890990991
+ ],
+ [
+ 139.28677910989012,
+ 35.79251890990991
+ ],
+ [
+ 139.28677910989012,
+ 35.79269909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mitatebashi.1450.2",
+ "name": "御楯橋",
+ "latitude": 35.629418,
+ "longitude": 139.746915,
+ "polygon": [
+ [
+ 139.74680510989012,
+ 35.62950809009009
+ ],
+ [
+ 139.74702489010988,
+ 35.62950809009009
+ ],
+ [
+ 139.74702489010988,
+ 35.62932790990991
+ ],
+ [
+ 139.74680510989012,
+ 35.62932790990991
+ ],
+ [
+ 139.74680510989012,
+ 35.62950809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HaginooYakushido.1207.1",
+ "name": "萩の尾薬師堂前",
+ "latitude": 35.754728,
+ "longitude": 139.392103,
+ "polygon": [
+ [
+ 139.3919931098901,
+ 35.75481809009009
+ ],
+ [
+ 139.39221289010987,
+ 35.75481809009009
+ ],
+ [
+ 139.39221289010987,
+ 35.75463790990991
+ ],
+ [
+ 139.3919931098901,
+ 35.75463790990991
+ ],
+ [
+ 139.3919931098901,
+ 35.75481809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOjimaStation.1273.1",
+ "name": "東大島駅前",
+ "latitude": 35.690101,
+ "longitude": 139.845895,
+ "polygon": [
+ [
+ 139.84578510989013,
+ 35.69019109009009
+ ],
+ [
+ 139.8460048901099,
+ 35.69019109009009
+ ],
+ [
+ 139.8460048901099,
+ 35.69001090990991
+ ],
+ [
+ 139.84578510989013,
+ 35.69001090990991
+ ],
+ [
+ 139.84578510989013,
+ 35.69019109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HaginooYakushido.1207.2",
+ "name": "萩の尾薬師堂前",
+ "latitude": 35.754663,
+ "longitude": 139.391899,
+ "polygon": [
+ [
+ 139.3917891098901,
+ 35.75475309009009
+ ],
+ [
+ 139.39200889010988,
+ 35.75475309009009
+ ],
+ [
+ 139.39200889010988,
+ 35.75457290990991
+ ],
+ [
+ 139.3917891098901,
+ 35.75457290990991
+ ],
+ [
+ 139.3917891098901,
+ 35.75475309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakusanUe.1208.1",
+ "name": "白山上",
+ "latitude": 35.722922,
+ "longitude": 139.753486,
+ "polygon": [
+ [
+ 139.75337610989013,
+ 35.72301209009009
+ ],
+ [
+ 139.7535958901099,
+ 35.72301209009009
+ ],
+ [
+ 139.7535958901099,
+ 35.72283190990991
+ ],
+ [
+ 139.75337610989013,
+ 35.72283190990991
+ ],
+ [
+ 139.75337610989013,
+ 35.72301209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakusanUe.1208.2",
+ "name": "白山上",
+ "latitude": 35.722792,
+ "longitude": 139.753454,
+ "polygon": [
+ [
+ 139.75334410989012,
+ 35.72288209009009
+ ],
+ [
+ 139.7535638901099,
+ 35.72288209009009
+ ],
+ [
+ 139.7535638901099,
+ 35.72270190990991
+ ],
+ [
+ 139.75334410989012,
+ 35.72270190990991
+ ],
+ [
+ 139.75334410989012,
+ 35.72288209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakusanNichome.1211.1",
+ "name": "白山二丁目",
+ "latitude": 35.71702,
+ "longitude": 139.745029,
+ "polygon": [
+ [
+ 139.7449191098901,
+ 35.71711009009009
+ ],
+ [
+ 139.74513889010987,
+ 35.71711009009009
+ ],
+ [
+ 139.74513889010987,
+ 35.71692990990991
+ ],
+ [
+ 139.7449191098901,
+ 35.71692990990991
+ ],
+ [
+ 139.7449191098901,
+ 35.71711009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakusanNichome.1211.2",
+ "name": "白山二丁目",
+ "latitude": 35.71712,
+ "longitude": 139.745123,
+ "polygon": [
+ [
+ 139.74501310989012,
+ 35.71721009009009
+ ],
+ [
+ 139.7452328901099,
+ 35.71721009009009
+ ],
+ [
+ 139.7452328901099,
+ 35.71702990990991
+ ],
+ [
+ 139.74501310989012,
+ 35.71702990990991
+ ],
+ [
+ 139.74501310989012,
+ 35.71721009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hazawa.1216.1",
+ "name": "羽沢",
+ "latitude": 35.741535,
+ "longitude": 139.669412,
+ "polygon": [
+ [
+ 139.6693021098901,
+ 35.74162509009009
+ ],
+ [
+ 139.66952189010988,
+ 35.74162509009009
+ ],
+ [
+ 139.66952189010988,
+ 35.74144490990991
+ ],
+ [
+ 139.6693021098901,
+ 35.74144490990991
+ ],
+ [
+ 139.6693021098901,
+ 35.74162509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakusanGochome.1212.1",
+ "name": "白山五丁目",
+ "latitude": 35.725638,
+ "longitude": 139.748389,
+ "polygon": [
+ [
+ 139.74827910989012,
+ 35.72572809009009
+ ],
+ [
+ 139.7484988901099,
+ 35.72572809009009
+ ],
+ [
+ 139.7484988901099,
+ 35.725547909909906
+ ],
+ [
+ 139.74827910989012,
+ 35.725547909909906
+ ],
+ [
+ 139.74827910989012,
+ 35.72572809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakusanGochome.1212.2",
+ "name": "白山五丁目",
+ "latitude": 35.725883,
+ "longitude": 139.74822,
+ "polygon": [
+ [
+ 139.74811010989012,
+ 35.72597309009009
+ ],
+ [
+ 139.7483298901099,
+ 35.72597309009009
+ ],
+ [
+ 139.7483298901099,
+ 35.72579290990991
+ ],
+ [
+ 139.74811010989012,
+ 35.72579290990991
+ ],
+ [
+ 139.74811010989012,
+ 35.72597309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hakonegasaki.1214.3",
+ "name": "箱根ヶ崎",
+ "latitude": 35.772287,
+ "longitude": 139.342489,
+ "polygon": [
+ [
+ 139.34237910989012,
+ 35.77237709009009
+ ],
+ [
+ 139.34259889010988,
+ 35.77237709009009
+ ],
+ [
+ 139.34259889010988,
+ 35.77219690990991
+ ],
+ [
+ 139.34237910989012,
+ 35.77219690990991
+ ],
+ [
+ 139.34237910989012,
+ 35.77237709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hakonegasaki.1214.4",
+ "name": "箱根ヶ崎",
+ "latitude": 35.771976,
+ "longitude": 139.342559,
+ "polygon": [
+ [
+ 139.3424491098901,
+ 35.77206609009009
+ ],
+ [
+ 139.34266889010988,
+ 35.77206609009009
+ ],
+ [
+ 139.34266889010988,
+ 35.77188590990991
+ ],
+ [
+ 139.3424491098901,
+ 35.77188590990991
+ ],
+ [
+ 139.3424491098901,
+ 35.77206609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakonegasakiStation.1215.3",
+ "name": "箱根ヶ崎駅前",
+ "latitude": 35.771291,
+ "longitude": 139.346347,
+ "polygon": [
+ [
+ 139.34623710989013,
+ 35.77138109009009
+ ],
+ [
+ 139.3464568901099,
+ 35.77138109009009
+ ],
+ [
+ 139.3464568901099,
+ 35.77120090990991
+ ],
+ [
+ 139.34623710989013,
+ 35.77120090990991
+ ],
+ [
+ 139.34623710989013,
+ 35.77138109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakonegasakiStation.1215.4",
+ "name": "箱根ヶ崎駅前",
+ "latitude": 35.771285,
+ "longitude": 139.346406,
+ "polygon": [
+ [
+ 139.34629610989012,
+ 35.77137509009009
+ ],
+ [
+ 139.34651589010988,
+ 35.77137509009009
+ ],
+ [
+ 139.34651589010988,
+ 35.77119490990991
+ ],
+ [
+ 139.34629610989012,
+ 35.77119490990991
+ ],
+ [
+ 139.34629610989012,
+ 35.77137509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hazawa.1216.2",
+ "name": "羽沢",
+ "latitude": 35.741718,
+ "longitude": 139.669376,
+ "polygon": [
+ [
+ 139.66926610989012,
+ 35.74180809009009
+ ],
+ [
+ 139.66948589010988,
+ 35.74180809009009
+ ],
+ [
+ 139.66948589010988,
+ 35.74162790990991
+ ],
+ [
+ 139.66926610989012,
+ 35.74162790990991
+ ],
+ [
+ 139.66926610989012,
+ 35.74180809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HashibaNichome.1218.1",
+ "name": "橋場二丁目",
+ "latitude": 35.728497,
+ "longitude": 139.806207,
+ "polygon": [
+ [
+ 139.80609710989012,
+ 35.72858709009009
+ ],
+ [
+ 139.80631689010988,
+ 35.72858709009009
+ ],
+ [
+ 139.80631689010988,
+ 35.72840690990991
+ ],
+ [
+ 139.80609710989012,
+ 35.72840690990991
+ ],
+ [
+ 139.80609710989012,
+ 35.72858709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HashibaNichome.1218.2",
+ "name": "橋場二丁目",
+ "latitude": 35.728228,
+ "longitude": 139.807032,
+ "polygon": [
+ [
+ 139.8069221098901,
+ 35.72831809009009
+ ],
+ [
+ 139.80714189010988,
+ 35.72831809009009
+ ],
+ [
+ 139.80714189010988,
+ 35.72813790990991
+ ],
+ [
+ 139.8069221098901,
+ 35.72813790990991
+ ],
+ [
+ 139.8069221098901,
+ 35.72831809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaKokaido.1222.1",
+ "name": "畑中公会堂前",
+ "latitude": 35.781929,
+ "longitude": 139.240321,
+ "polygon": [
+ [
+ 139.2402111098901,
+ 35.78201909009009
+ ],
+ [
+ 139.24043089010988,
+ 35.78201909009009
+ ],
+ [
+ 139.24043089010988,
+ 35.78183890990991
+ ],
+ [
+ 139.2402111098901,
+ 35.78183890990991
+ ],
+ [
+ 139.2402111098901,
+ 35.78201909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatagayaStation.1219.1",
+ "name": "幡ヶ谷駅前",
+ "latitude": 35.676928,
+ "longitude": 139.676348,
+ "polygon": [
+ [
+ 139.6762381098901,
+ 35.67701809009009
+ ],
+ [
+ 139.67645789010987,
+ 35.67701809009009
+ ],
+ [
+ 139.67645789010987,
+ 35.676837909909906
+ ],
+ [
+ 139.6762381098901,
+ 35.676837909909906
+ ],
+ [
+ 139.6762381098901,
+ 35.67701809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKoenjiStation.1277.2",
+ "name": "東高円寺駅前",
+ "latitude": 35.697945,
+ "longitude": 139.657455,
+ "polygon": [
+ [
+ 139.65734510989012,
+ 35.69803509009009
+ ],
+ [
+ 139.65756489010988,
+ 35.69803509009009
+ ],
+ [
+ 139.65756489010988,
+ 35.69785490990991
+ ],
+ [
+ 139.65734510989012,
+ 35.69785490990991
+ ],
+ [
+ 139.65734510989012,
+ 35.69803509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatagayaStation.1219.2",
+ "name": "幡ヶ谷駅前",
+ "latitude": 35.677586,
+ "longitude": 139.677579,
+ "polygon": [
+ [
+ 139.67746910989013,
+ 35.67767609009009
+ ],
+ [
+ 139.6776888901099,
+ 35.67767609009009
+ ],
+ [
+ 139.6776888901099,
+ 35.67749590990991
+ ],
+ [
+ 139.67746910989013,
+ 35.67749590990991
+ ],
+ [
+ 139.67746910989013,
+ 35.67767609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatagayaHaramachi.1220.1",
+ "name": "幡ヶ谷原町",
+ "latitude": 35.676103,
+ "longitude": 139.673654,
+ "polygon": [
+ [
+ 139.67354410989012,
+ 35.67619309009009
+ ],
+ [
+ 139.67376389010988,
+ 35.67619309009009
+ ],
+ [
+ 139.67376389010988,
+ 35.67601290990991
+ ],
+ [
+ 139.67354410989012,
+ 35.67601290990991
+ ],
+ [
+ 139.67354410989012,
+ 35.67619309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatagayaHaramachi.1220.2",
+ "name": "幡ヶ谷原町",
+ "latitude": 35.67582,
+ "longitude": 139.671503,
+ "polygon": [
+ [
+ 139.67139310989012,
+ 35.67591009009009
+ ],
+ [
+ 139.67161289010988,
+ 35.67591009009009
+ ],
+ [
+ 139.67161289010988,
+ 35.67572990990991
+ ],
+ [
+ 139.67139310989012,
+ 35.67572990990991
+ ],
+ [
+ 139.67139310989012,
+ 35.67591009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaSanchome.1221.1",
+ "name": "畑中三丁目",
+ "latitude": 35.78007,
+ "longitude": 139.237389,
+ "polygon": [
+ [
+ 139.23727910989012,
+ 35.78016009009009
+ ],
+ [
+ 139.2374988901099,
+ 35.78016009009009
+ ],
+ [
+ 139.2374988901099,
+ 35.77997990990991
+ ],
+ [
+ 139.23727910989012,
+ 35.77997990990991
+ ],
+ [
+ 139.23727910989012,
+ 35.78016009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaSanchome.1221.2",
+ "name": "畑中三丁目",
+ "latitude": 35.780275,
+ "longitude": 139.2375,
+ "polygon": [
+ [
+ 139.23739010989013,
+ 35.78036509009009
+ ],
+ [
+ 139.2376098901099,
+ 35.78036509009009
+ ],
+ [
+ 139.2376098901099,
+ 35.78018490990991
+ ],
+ [
+ 139.23739010989013,
+ 35.78018490990991
+ ],
+ [
+ 139.23739010989013,
+ 35.78036509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatanakaKokaido.1222.2",
+ "name": "畑中公会堂前",
+ "latitude": 35.782084,
+ "longitude": 139.240378,
+ "polygon": [
+ [
+ 139.2402681098901,
+ 35.78217409009009
+ ],
+ [
+ 139.24048789010988,
+ 35.78217409009009
+ ],
+ [
+ 139.24048789010988,
+ 35.78199390990991
+ ],
+ [
+ 139.2402681098901,
+ 35.78199390990991
+ ],
+ [
+ 139.2402681098901,
+ 35.78217409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hatashiro.1223.1",
+ "name": "幡代",
+ "latitude": 35.678295,
+ "longitude": 139.680802,
+ "polygon": [
+ [
+ 139.68069210989012,
+ 35.67838509009009
+ ],
+ [
+ 139.68091189010988,
+ 35.67838509009009
+ ],
+ [
+ 139.68091189010988,
+ 35.67820490990991
+ ],
+ [
+ 139.68069210989012,
+ 35.67820490990991
+ ],
+ [
+ 139.68069210989012,
+ 35.67838509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hatashiro.1223.2",
+ "name": "幡代",
+ "latitude": 35.678991,
+ "longitude": 139.681516,
+ "polygon": [
+ [
+ 139.6814061098901,
+ 35.679081090090094
+ ],
+ [
+ 139.68162589010987,
+ 35.679081090090094
+ ],
+ [
+ 139.68162589010987,
+ 35.67890090990991
+ ],
+ [
+ 139.6814061098901,
+ 35.67890090990991
+ ],
+ [
+ 139.6814061098901,
+ 35.679081090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hachiedabashi.1224.1",
+ "name": "八枝橋",
+ "latitude": 35.658767,
+ "longitude": 139.807992,
+ "polygon": [
+ [
+ 139.80788210989013,
+ 35.65885709009009
+ ],
+ [
+ 139.8081018901099,
+ 35.65885709009009
+ ],
+ [
+ 139.8081018901099,
+ 35.65867690990991
+ ],
+ [
+ 139.80788210989013,
+ 35.65867690990991
+ ],
+ [
+ 139.80788210989013,
+ 35.65885709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hachiedabashi.1224.2",
+ "name": "八枝橋",
+ "latitude": 35.658844,
+ "longitude": 139.808293,
+ "polygon": [
+ [
+ 139.8081831098901,
+ 35.65893409009009
+ ],
+ [
+ 139.80840289010987,
+ 35.65893409009009
+ ],
+ [
+ 139.80840289010987,
+ 35.65875390990991
+ ],
+ [
+ 139.8081831098901,
+ 35.65875390990991
+ ],
+ [
+ 139.8081831098901,
+ 35.65893409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HachimanShita.1227.1",
+ "name": "八幡下",
+ "latitude": 35.672349,
+ "longitude": 139.687847,
+ "polygon": [
+ [
+ 139.68773710989012,
+ 35.67243909009009
+ ],
+ [
+ 139.6879568901099,
+ 35.67243909009009
+ ],
+ [
+ 139.6879568901099,
+ 35.67225890990991
+ ],
+ [
+ 139.68773710989012,
+ 35.67225890990991
+ ],
+ [
+ 139.68773710989012,
+ 35.67243909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HachimanShita.1227.2",
+ "name": "八幡下",
+ "latitude": 35.672365,
+ "longitude": 139.687467,
+ "polygon": [
+ [
+ 139.68735710989012,
+ 35.67245509009009
+ ],
+ [
+ 139.68757689010988,
+ 35.67245509009009
+ ],
+ [
+ 139.68757689010988,
+ 35.67227490990991
+ ],
+ [
+ 139.68735710989012,
+ 35.67227490990991
+ ],
+ [
+ 139.68735710989012,
+ 35.67245509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HachimanJinja.1228.1",
+ "name": "八幡神社前",
+ "latitude": 35.753101,
+ "longitude": 139.423738,
+ "polygon": [
+ [
+ 139.4236281098901,
+ 35.75319109009009
+ ],
+ [
+ 139.42384789010987,
+ 35.75319109009009
+ ],
+ [
+ 139.42384789010987,
+ 35.75301090990991
+ ],
+ [
+ 139.4236281098901,
+ 35.75301090990991
+ ],
+ [
+ 139.4236281098901,
+ 35.75319109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HachimanJinja.1228.2",
+ "name": "八幡神社前",
+ "latitude": 35.753219,
+ "longitude": 139.422552,
+ "polygon": [
+ [
+ 139.4224421098901,
+ 35.75330909009009
+ ],
+ [
+ 139.42266189010988,
+ 35.75330909009009
+ ],
+ [
+ 139.42266189010988,
+ 35.75312890990991
+ ],
+ [
+ 139.4224421098901,
+ 35.75312890990991
+ ],
+ [
+ 139.4224421098901,
+ 35.75330909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKokuritsuGekijo.1229.1",
+ "name": "新国立劇場前",
+ "latitude": 35.680788,
+ "longitude": 139.685944,
+ "polygon": [
+ [
+ 139.68583410989012,
+ 35.68087809009009
+ ],
+ [
+ 139.6860538901099,
+ 35.68087809009009
+ ],
+ [
+ 139.6860538901099,
+ 35.68069790990991
+ ],
+ [
+ 139.68583410989012,
+ 35.68069790990991
+ ],
+ [
+ 139.68583410989012,
+ 35.68087809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinKokuritsuGekijo.1229.2",
+ "name": "新国立劇場前",
+ "latitude": 35.681034,
+ "longitude": 139.685805,
+ "polygon": [
+ [
+ 139.6856951098901,
+ 35.68112409009009
+ ],
+ [
+ 139.68591489010987,
+ 35.68112409009009
+ ],
+ [
+ 139.68591489010987,
+ 35.68094390990991
+ ],
+ [
+ 139.6856951098901,
+ 35.68094390990991
+ ],
+ [
+ 139.6856951098901,
+ 35.68112409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarueDanchi.1243.2",
+ "name": "春江団地前",
+ "latitude": 35.701682,
+ "longitude": 139.893551,
+ "polygon": [
+ [
+ 139.89344110989012,
+ 35.70177209009009
+ ],
+ [
+ 139.89366089010989,
+ 35.70177209009009
+ ],
+ [
+ 139.89366089010989,
+ 35.70159190990991
+ ],
+ [
+ 139.89344110989012,
+ 35.70159190990991
+ ],
+ [
+ 139.89344110989012,
+ 35.70177209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiItchome.1252.4",
+ "name": "晴海一丁目",
+ "latitude": 35.657912,
+ "longitude": 139.786016,
+ "polygon": [
+ [
+ 139.7859061098901,
+ 35.65800209009009
+ ],
+ [
+ 139.78612589010987,
+ 35.65800209009009
+ ],
+ [
+ 139.78612589010987,
+ 35.65782190990991
+ ],
+ [
+ 139.7859061098901,
+ 35.65782190990991
+ ],
+ [
+ 139.7859061098901,
+ 35.65800209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatsudaiSakaUe.1230.1",
+ "name": "初台坂上",
+ "latitude": 35.679581,
+ "longitude": 139.688516,
+ "polygon": [
+ [
+ 139.6884061098901,
+ 35.67967109009009
+ ],
+ [
+ 139.68862589010988,
+ 35.67967109009009
+ ],
+ [
+ 139.68862589010988,
+ 35.67949090990991
+ ],
+ [
+ 139.6884061098901,
+ 35.67949090990991
+ ],
+ [
+ 139.6884061098901,
+ 35.67967109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatsudaiSakaUe.1230.2",
+ "name": "初台坂上",
+ "latitude": 35.679109,
+ "longitude": 139.688744,
+ "polygon": [
+ [
+ 139.68863410989013,
+ 35.67919909009009
+ ],
+ [
+ 139.6888538901099,
+ 35.67919909009009
+ ],
+ [
+ 139.6888538901099,
+ 35.67901890990991
+ ],
+ [
+ 139.68863410989013,
+ 35.67901890990991
+ ],
+ [
+ 139.68863410989013,
+ 35.67919909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatsudaiSakaShita.1231.1",
+ "name": "初台坂下",
+ "latitude": 35.674276,
+ "longitude": 139.687905,
+ "polygon": [
+ [
+ 139.68779510989012,
+ 35.67436609009009
+ ],
+ [
+ 139.68801489010988,
+ 35.67436609009009
+ ],
+ [
+ 139.68801489010988,
+ 35.67418590990991
+ ],
+ [
+ 139.68779510989012,
+ 35.67418590990991
+ ],
+ [
+ 139.68779510989012,
+ 35.67436609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatsudaiSakaShita.1231.2",
+ "name": "初台坂下",
+ "latitude": 35.674492,
+ "longitude": 139.687572,
+ "polygon": [
+ [
+ 139.6874621098901,
+ 35.67458209009009
+ ],
+ [
+ 139.68768189010987,
+ 35.67458209009009
+ ],
+ [
+ 139.68768189010987,
+ 35.67440190990991
+ ],
+ [
+ 139.6874621098901,
+ 35.67440190990991
+ ],
+ [
+ 139.6874621098901,
+ 35.67458209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatchoboriNichome.1232.1",
+ "name": "八丁堀二丁目",
+ "latitude": 35.677904,
+ "longitude": 139.776531,
+ "polygon": [
+ [
+ 139.77642110989012,
+ 35.67799409009009
+ ],
+ [
+ 139.7766408901099,
+ 35.67799409009009
+ ],
+ [
+ 139.7766408901099,
+ 35.67781390990991
+ ],
+ [
+ 139.77642110989012,
+ 35.67781390990991
+ ],
+ [
+ 139.77642110989012,
+ 35.67799409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatchoboriNichome.1232.2",
+ "name": "八丁堀二丁目",
+ "latitude": 35.67745,
+ "longitude": 139.77574,
+ "polygon": [
+ [
+ 139.77563010989013,
+ 35.67754009009009
+ ],
+ [
+ 139.7758498901099,
+ 35.67754009009009
+ ],
+ [
+ 139.7758498901099,
+ 35.67735990990991
+ ],
+ [
+ 139.77563010989013,
+ 35.67735990990991
+ ],
+ [
+ 139.77563010989013,
+ 35.67754009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatchoboriNichome.1232.3",
+ "name": "八丁堀二丁目",
+ "latitude": 35.676982,
+ "longitude": 139.775773,
+ "polygon": [
+ [
+ 139.7756631098901,
+ 35.67707209009009
+ ],
+ [
+ 139.77588289010987,
+ 35.67707209009009
+ ],
+ [
+ 139.77588289010987,
+ 35.67689190990991
+ ],
+ [
+ 139.7756631098901,
+ 35.67689190990991
+ ],
+ [
+ 139.7756631098901,
+ 35.67707209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HatchoboriNichome.1232.4",
+ "name": "八丁堀二丁目",
+ "latitude": 35.677646,
+ "longitude": 139.775934,
+ "polygon": [
+ [
+ 139.77582410989012,
+ 35.67773609009009
+ ],
+ [
+ 139.7760438901099,
+ 35.67773609009009
+ ],
+ [
+ 139.7760438901099,
+ 35.67755590990991
+ ],
+ [
+ 139.77582410989012,
+ 35.67755590990991
+ ],
+ [
+ 139.77582410989012,
+ 35.67773609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hanakawado.1233.1",
+ "name": "花川戸",
+ "latitude": 35.71368,
+ "longitude": 139.800406,
+ "polygon": [
+ [
+ 139.80029610989013,
+ 35.71377009009009
+ ],
+ [
+ 139.8005158901099,
+ 35.71377009009009
+ ],
+ [
+ 139.8005158901099,
+ 35.713589909909906
+ ],
+ [
+ 139.80029610989013,
+ 35.713589909909906
+ ],
+ [
+ 139.80029610989013,
+ 35.71377009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hanakawado.1233.2",
+ "name": "花川戸",
+ "latitude": 35.713887,
+ "longitude": 139.800874,
+ "polygon": [
+ [
+ 139.8007641098901,
+ 35.71397709009009
+ ],
+ [
+ 139.80098389010988,
+ 35.71397709009009
+ ],
+ [
+ 139.80098389010988,
+ 35.71379690990991
+ ],
+ [
+ 139.8007641098901,
+ 35.71379690990991
+ ],
+ [
+ 139.8007641098901,
+ 35.71397709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HanaKoganeiRokuchome.1234.1",
+ "name": "花小金井六丁目",
+ "latitude": 35.730563,
+ "longitude": 139.508809,
+ "polygon": [
+ [
+ 139.50869910989013,
+ 35.73065309009009
+ ],
+ [
+ 139.5089188901099,
+ 35.73065309009009
+ ],
+ [
+ 139.5089188901099,
+ 35.730472909909906
+ ],
+ [
+ 139.50869910989013,
+ 35.730472909909906
+ ],
+ [
+ 139.50869910989013,
+ 35.73065309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiItchome.1252.3",
+ "name": "晴海一丁目",
+ "latitude": 35.658038,
+ "longitude": 139.785519,
+ "polygon": [
+ [
+ 139.7854091098901,
+ 35.65812809009009
+ ],
+ [
+ 139.78562889010988,
+ 35.65812809009009
+ ],
+ [
+ 139.78562889010988,
+ 35.65794790990991
+ ],
+ [
+ 139.7854091098901,
+ 35.65794790990991
+ ],
+ [
+ 139.7854091098901,
+ 35.65812809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HanaKoganeiRokuchome.1234.2",
+ "name": "花小金井六丁目",
+ "latitude": 35.730496,
+ "longitude": 139.508383,
+ "polygon": [
+ [
+ 139.50827310989013,
+ 35.73058609009009
+ ],
+ [
+ 139.5084928901099,
+ 35.73058609009009
+ ],
+ [
+ 139.5084928901099,
+ 35.73040590990991
+ ],
+ [
+ 139.50827310989013,
+ 35.73040590990991
+ ],
+ [
+ 139.50827310989013,
+ 35.73058609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hanazonocho.1235.1",
+ "name": "花園町",
+ "latitude": 35.691112,
+ "longitude": 139.712775,
+ "polygon": [
+ [
+ 139.7126651098901,
+ 35.69120209009009
+ ],
+ [
+ 139.71288489010988,
+ 35.69120209009009
+ ],
+ [
+ 139.71288489010988,
+ 35.69102190990991
+ ],
+ [
+ 139.7126651098901,
+ 35.69102190990991
+ ],
+ [
+ 139.7126651098901,
+ 35.69120209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hanazonocho.1235.2",
+ "name": "花園町",
+ "latitude": 35.691335,
+ "longitude": 139.712944,
+ "polygon": [
+ [
+ 139.7128341098901,
+ 35.69142509009009
+ ],
+ [
+ 139.71305389010988,
+ 35.69142509009009
+ ],
+ [
+ 139.71305389010988,
+ 35.69124490990991
+ ],
+ [
+ 139.7128341098901,
+ 35.69124490990991
+ ],
+ [
+ 139.7128341098901,
+ 35.69142509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HamachoNakanohashi.1236.1",
+ "name": "浜町中の橋",
+ "latitude": 35.684724,
+ "longitude": 139.786086,
+ "polygon": [
+ [
+ 139.78597610989013,
+ 35.68481409009009
+ ],
+ [
+ 139.7861958901099,
+ 35.68481409009009
+ ],
+ [
+ 139.7861958901099,
+ 35.68463390990991
+ ],
+ [
+ 139.78597610989013,
+ 35.68463390990991
+ ],
+ [
+ 139.78597610989013,
+ 35.68481409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HamachoNakanohashi.1236.2",
+ "name": "浜町中の橋",
+ "latitude": 35.686219,
+ "longitude": 139.787919,
+ "polygon": [
+ [
+ 139.7878091098901,
+ 35.68630909009009
+ ],
+ [
+ 139.78802889010987,
+ 35.68630909009009
+ ],
+ [
+ 139.78802889010987,
+ 35.68612890990991
+ ],
+ [
+ 139.7878091098901,
+ 35.68612890990991
+ ],
+ [
+ 139.7878091098901,
+ 35.68630909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HamachoNakanohashi.1236.3",
+ "name": "浜町中の橋",
+ "latitude": 35.685121,
+ "longitude": 139.78748,
+ "polygon": [
+ [
+ 139.7873701098901,
+ 35.68521109009009
+ ],
+ [
+ 139.78758989010987,
+ 35.68521109009009
+ ],
+ [
+ 139.78758989010987,
+ 35.68503090990991
+ ],
+ [
+ 139.7873701098901,
+ 35.68503090990991
+ ],
+ [
+ 139.7873701098901,
+ 35.68521109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HamachoNichome.1237.1",
+ "name": "浜町二丁目",
+ "latitude": 35.686549,
+ "longitude": 139.789949,
+ "polygon": [
+ [
+ 139.78983910989012,
+ 35.68663909009009
+ ],
+ [
+ 139.7900588901099,
+ 35.68663909009009
+ ],
+ [
+ 139.7900588901099,
+ 35.68645890990991
+ ],
+ [
+ 139.78983910989012,
+ 35.68645890990991
+ ],
+ [
+ 139.78983910989012,
+ 35.68663909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HamachoNichome.1237.2",
+ "name": "浜町二丁目",
+ "latitude": 35.686271,
+ "longitude": 139.789857,
+ "polygon": [
+ [
+ 139.78974710989013,
+ 35.68636109009009
+ ],
+ [
+ 139.7899668901099,
+ 35.68636109009009
+ ],
+ [
+ 139.7899668901099,
+ 35.68618090990991
+ ],
+ [
+ 139.78974710989013,
+ 35.68618090990991
+ ],
+ [
+ 139.78974710989013,
+ 35.68636109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HamamatsuchoStation.1238.1",
+ "name": "浜松町駅前",
+ "latitude": 35.656694,
+ "longitude": 139.756587,
+ "polygon": [
+ [
+ 139.7564771098901,
+ 35.65678409009009
+ ],
+ [
+ 139.75669689010988,
+ 35.65678409009009
+ ],
+ [
+ 139.75669689010988,
+ 35.65660390990991
+ ],
+ [
+ 139.7564771098901,
+ 35.65660390990991
+ ],
+ [
+ 139.7564771098901,
+ 35.65678409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HamamatsuchoStation.1238.2",
+ "name": "浜松町駅前",
+ "latitude": 35.656525,
+ "longitude": 139.756593,
+ "polygon": [
+ [
+ 139.75648310989013,
+ 35.65661509009009
+ ],
+ [
+ 139.7567028901099,
+ 35.65661509009009
+ ],
+ [
+ 139.7567028901099,
+ 35.65643490990991
+ ],
+ [
+ 139.75648310989013,
+ 35.65643490990991
+ ],
+ [
+ 139.75648310989013,
+ 35.65661509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HamaRikyu.1239.1",
+ "name": "浜離宮前",
+ "latitude": 35.664933,
+ "longitude": 139.763492,
+ "polygon": [
+ [
+ 139.76338210989013,
+ 35.66502309009009
+ ],
+ [
+ 139.7636018901099,
+ 35.66502309009009
+ ],
+ [
+ 139.7636018901099,
+ 35.66484290990991
+ ],
+ [
+ 139.76338210989013,
+ 35.66484290990991
+ ],
+ [
+ 139.76338210989013,
+ 35.66502309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarajukuStation.1241.1",
+ "name": "原宿駅前",
+ "latitude": 35.670461,
+ "longitude": 139.70295,
+ "polygon": [
+ [
+ 139.7028401098901,
+ 35.67055109009009
+ ],
+ [
+ 139.70305989010987,
+ 35.67055109009009
+ ],
+ [
+ 139.70305989010987,
+ 35.67037090990991
+ ],
+ [
+ 139.7028401098901,
+ 35.67037090990991
+ ],
+ [
+ 139.7028401098901,
+ 35.67055109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarajukuStation.1241.2",
+ "name": "原宿駅前",
+ "latitude": 35.670787,
+ "longitude": 139.702746,
+ "polygon": [
+ [
+ 139.7026361098901,
+ 35.67087709009009
+ ],
+ [
+ 139.70285589010987,
+ 35.67087709009009
+ ],
+ [
+ 139.70285589010987,
+ 35.67069690990991
+ ],
+ [
+ 139.7026361098901,
+ 35.67069690990991
+ ],
+ [
+ 139.7026361098901,
+ 35.67087709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Harayama.1242.1",
+ "name": "原山",
+ "latitude": 35.75453,
+ "longitude": 139.395185,
+ "polygon": [
+ [
+ 139.39507510989012,
+ 35.75462009009009
+ ],
+ [
+ 139.39529489010988,
+ 35.75462009009009
+ ],
+ [
+ 139.39529489010988,
+ 35.75443990990991
+ ],
+ [
+ 139.39507510989012,
+ 35.75443990990991
+ ],
+ [
+ 139.39507510989012,
+ 35.75462009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Harayama.1242.2",
+ "name": "原山",
+ "latitude": 35.754273,
+ "longitude": 139.397116,
+ "polygon": [
+ [
+ 139.39700610989013,
+ 35.75436309009009
+ ],
+ [
+ 139.3972258901099,
+ 35.75436309009009
+ ],
+ [
+ 139.3972258901099,
+ 35.75418290990991
+ ],
+ [
+ 139.39700610989013,
+ 35.75418290990991
+ ],
+ [
+ 139.39700610989013,
+ 35.75436309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarueDanchi.1243.1",
+ "name": "春江団地前",
+ "latitude": 35.701904,
+ "longitude": 139.893393,
+ "polygon": [
+ [
+ 139.89328310989012,
+ 35.70199409009009
+ ],
+ [
+ 139.8935028901099,
+ 35.70199409009009
+ ],
+ [
+ 139.8935028901099,
+ 35.70181390990991
+ ],
+ [
+ 139.89328310989012,
+ 35.70181390990991
+ ],
+ [
+ 139.89328310989012,
+ 35.70199409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HaruechoYonchome.1246.3",
+ "name": "春江町四丁目",
+ "latitude": 35.683058,
+ "longitude": 139.875011,
+ "polygon": [
+ [
+ 139.87490110989012,
+ 35.68314809009009
+ ],
+ [
+ 139.87512089010988,
+ 35.68314809009009
+ ],
+ [
+ 139.87512089010988,
+ 35.68296790990991
+ ],
+ [
+ 139.87490110989012,
+ 35.68296790990991
+ ],
+ [
+ 139.87490110989012,
+ 35.68314809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HaruechoYonchome.1246.4",
+ "name": "春江町四丁目",
+ "latitude": 35.682855,
+ "longitude": 139.874778,
+ "polygon": [
+ [
+ 139.8746681098901,
+ 35.682945090090094
+ ],
+ [
+ 139.87488789010987,
+ 35.682945090090094
+ ],
+ [
+ 139.87488789010987,
+ 35.68276490990991
+ ],
+ [
+ 139.8746681098901,
+ 35.68276490990991
+ ],
+ [
+ 139.8746681098901,
+ 35.682945090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HaruechoGochome.1247.1",
+ "name": "春江町五丁目",
+ "latitude": 35.67864,
+ "longitude": 139.872504,
+ "polygon": [
+ [
+ 139.8723941098901,
+ 35.67873009009009
+ ],
+ [
+ 139.87261389010988,
+ 35.67873009009009
+ ],
+ [
+ 139.87261389010988,
+ 35.67854990990991
+ ],
+ [
+ 139.8723941098901,
+ 35.67854990990991
+ ],
+ [
+ 139.8723941098901,
+ 35.67873009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HaruechoGochome.1247.2",
+ "name": "春江町五丁目",
+ "latitude": 35.67859,
+ "longitude": 139.872278,
+ "polygon": [
+ [
+ 139.8721681098901,
+ 35.67868009009009
+ ],
+ [
+ 139.87238789010988,
+ 35.67868009009009
+ ],
+ [
+ 139.87238789010988,
+ 35.67849990990991
+ ],
+ [
+ 139.8721681098901,
+ 35.67849990990991
+ ],
+ [
+ 139.8721681098901,
+ 35.67868009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiKuminkan.1248.1",
+ "name": "晴海区民館前",
+ "latitude": 35.656295,
+ "longitude": 139.783637,
+ "polygon": [
+ [
+ 139.78352710989012,
+ 35.65638509009009
+ ],
+ [
+ 139.78374689010988,
+ 35.65638509009009
+ ],
+ [
+ 139.78374689010988,
+ 35.65620490990991
+ ],
+ [
+ 139.78352710989012,
+ 35.65620490990991
+ ],
+ [
+ 139.78352710989012,
+ 35.65638509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiKuminkan.1248.2",
+ "name": "晴海区民館前",
+ "latitude": 35.656933,
+ "longitude": 139.783871,
+ "polygon": [
+ [
+ 139.78376110989012,
+ 35.65702309009009
+ ],
+ [
+ 139.7839808901099,
+ 35.65702309009009
+ ],
+ [
+ 139.7839808901099,
+ 35.65684290990991
+ ],
+ [
+ 139.78376110989012,
+ 35.65684290990991
+ ],
+ [
+ 139.78376110989012,
+ 35.65702309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiFuto.1249.1",
+ "name": "晴海埠頭",
+ "latitude": 35.647728,
+ "longitude": 139.774908,
+ "polygon": [
+ [
+ 139.77479810989013,
+ 35.64781809009009
+ ],
+ [
+ 139.7750178901099,
+ 35.64781809009009
+ ],
+ [
+ 139.7750178901099,
+ 35.64763790990991
+ ],
+ [
+ 139.77479810989013,
+ 35.64763790990991
+ ],
+ [
+ 139.77479810989013,
+ 35.64781809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiFuto.1249.3",
+ "name": "晴海埠頭",
+ "latitude": 35.647962,
+ "longitude": 139.774657,
+ "polygon": [
+ [
+ 139.7745471098901,
+ 35.64805209009009
+ ],
+ [
+ 139.77476689010987,
+ 35.64805209009009
+ ],
+ [
+ 139.77476689010987,
+ 35.64787190990991
+ ],
+ [
+ 139.7745471098901,
+ 35.64787190990991
+ ],
+ [
+ 139.7745471098901,
+ 35.64805209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiFuto.1249.4",
+ "name": "晴海埠頭",
+ "latitude": 35.648011,
+ "longitude": 139.774966,
+ "polygon": [
+ [
+ 139.77485610989012,
+ 35.64810109009009
+ ],
+ [
+ 139.7750758901099,
+ 35.64810109009009
+ ],
+ [
+ 139.7750758901099,
+ 35.64792090990991
+ ],
+ [
+ 139.77485610989012,
+ 35.64792090990991
+ ],
+ [
+ 139.77485610989012,
+ 35.64810109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Harumirai.1250.1",
+ "name": "はるみらい前",
+ "latitude": 35.650937,
+ "longitude": 139.775045,
+ "polygon": [
+ [
+ 139.77493510989012,
+ 35.65102709009009
+ ],
+ [
+ 139.7751548901099,
+ 35.65102709009009
+ ],
+ [
+ 139.7751548901099,
+ 35.65084690990991
+ ],
+ [
+ 139.77493510989012,
+ 35.65084690990991
+ ],
+ [
+ 139.77493510989012,
+ 35.65102709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Harumirai.1250.2",
+ "name": "はるみらい前",
+ "latitude": 35.650572,
+ "longitude": 139.775138,
+ "polygon": [
+ [
+ 139.77502810989012,
+ 35.65066209009009
+ ],
+ [
+ 139.77524789010988,
+ 35.65066209009009
+ ],
+ [
+ 139.77524789010988,
+ 35.65048190990991
+ ],
+ [
+ 139.77502810989012,
+ 35.65048190990991
+ ],
+ [
+ 139.77502810989012,
+ 35.65066209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HotelMarinersCourtTokyo.1251.1",
+ "name": "ホテルマリナーズコート東京前",
+ "latitude": 35.653963,
+ "longitude": 139.77946,
+ "polygon": [
+ [
+ 139.77935010989012,
+ 35.65405309009009
+ ],
+ [
+ 139.77956989010988,
+ 35.65405309009009
+ ],
+ [
+ 139.77956989010988,
+ 35.65387290990991
+ ],
+ [
+ 139.77935010989012,
+ 35.65387290990991
+ ],
+ [
+ 139.77935010989012,
+ 35.65405309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HotelMarinersCourtTokyo.1251.2",
+ "name": "ホテルマリナーズコート東京前",
+ "latitude": 35.653728,
+ "longitude": 139.779877,
+ "polygon": [
+ [
+ 139.77976710989012,
+ 35.65381809009009
+ ],
+ [
+ 139.77998689010988,
+ 35.65381809009009
+ ],
+ [
+ 139.77998689010988,
+ 35.65363790990991
+ ],
+ [
+ 139.77976710989012,
+ 35.65363790990991
+ ],
+ [
+ 139.77976710989012,
+ 35.65381809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiItchome.1252.1",
+ "name": "晴海一丁目",
+ "latitude": 35.659746,
+ "longitude": 139.785578,
+ "polygon": [
+ [
+ 139.7854681098901,
+ 35.65983609009009
+ ],
+ [
+ 139.78568789010987,
+ 35.65983609009009
+ ],
+ [
+ 139.78568789010987,
+ 35.65965590990991
+ ],
+ [
+ 139.7854681098901,
+ 35.65965590990991
+ ],
+ [
+ 139.7854681098901,
+ 35.65983609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiSanchome.1253.2",
+ "name": "晴海三丁目",
+ "latitude": 35.655812,
+ "longitude": 139.780929,
+ "polygon": [
+ [
+ 139.7808191098901,
+ 35.65590209009009
+ ],
+ [
+ 139.78103889010987,
+ 35.65590209009009
+ ],
+ [
+ 139.78103889010987,
+ 35.65572190990991
+ ],
+ [
+ 139.7808191098901,
+ 35.65572190990991
+ ],
+ [
+ 139.7808191098901,
+ 35.65590209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiSanchome.1253.3",
+ "name": "晴海三丁目",
+ "latitude": 35.654678,
+ "longitude": 139.781223,
+ "polygon": [
+ [
+ 139.78111310989013,
+ 35.65476809009009
+ ],
+ [
+ 139.7813328901099,
+ 35.65476809009009
+ ],
+ [
+ 139.7813328901099,
+ 35.65458790990991
+ ],
+ [
+ 139.78111310989013,
+ 35.65458790990991
+ ],
+ [
+ 139.78111310989013,
+ 35.65476809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hanzomon.1254.1",
+ "name": "半蔵門",
+ "latitude": 35.683948,
+ "longitude": 139.742294,
+ "polygon": [
+ [
+ 139.7421841098901,
+ 35.68403809009009
+ ],
+ [
+ 139.74240389010987,
+ 35.68403809009009
+ ],
+ [
+ 139.74240389010987,
+ 35.68385790990991
+ ],
+ [
+ 139.7421841098901,
+ 35.68385790990991
+ ],
+ [
+ 139.7421841098901,
+ 35.68403809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hanzomon.1254.2",
+ "name": "半蔵門",
+ "latitude": 35.684143,
+ "longitude": 139.743134,
+ "polygon": [
+ [
+ 139.74302410989011,
+ 35.68423309009009
+ ],
+ [
+ 139.74324389010988,
+ 35.68423309009009
+ ],
+ [
+ 139.74324389010988,
+ 35.68405290990991
+ ],
+ [
+ 139.74302410989011,
+ 35.68405290990991
+ ],
+ [
+ 139.74302410989011,
+ 35.68423309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeSanchome.1271.2",
+ "name": "東青梅三丁目",
+ "latitude": 35.790547,
+ "longitude": 139.277737,
+ "polygon": [
+ [
+ 139.27762710989012,
+ 35.79063709009009
+ ],
+ [
+ 139.27784689010988,
+ 35.79063709009009
+ ],
+ [
+ 139.27784689010988,
+ 35.790456909909906
+ ],
+ [
+ 139.27762710989012,
+ 35.790456909909906
+ ],
+ [
+ 139.27762710989012,
+ 35.79063709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Baigo.1255.1",
+ "name": "梅郷",
+ "latitude": 35.79006,
+ "longitude": 139.220744,
+ "polygon": [
+ [
+ 139.2206341098901,
+ 35.79015009009009
+ ],
+ [
+ 139.22085389010988,
+ 35.79015009009009
+ ],
+ [
+ 139.22085389010988,
+ 35.78996990990991
+ ],
+ [
+ 139.2206341098901,
+ 35.78996990990991
+ ],
+ [
+ 139.2206341098901,
+ 35.79015009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueDaiichiChugakko.1434.1",
+ "name": "松江第一中学校前",
+ "latitude": 35.688716,
+ "longitude": 139.866222,
+ "polygon": [
+ [
+ 139.8661121098901,
+ 35.68880609009009
+ ],
+ [
+ 139.86633189010988,
+ 35.68880609009009
+ ],
+ [
+ 139.86633189010988,
+ 35.68862590990991
+ ],
+ [
+ 139.8661121098901,
+ 35.68862590990991
+ ],
+ [
+ 139.8661121098901,
+ 35.68880609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Baigo.1255.2",
+ "name": "梅郷",
+ "latitude": 35.790366,
+ "longitude": 139.220597,
+ "polygon": [
+ [
+ 139.22048710989012,
+ 35.79045609009009
+ ],
+ [
+ 139.22070689010988,
+ 35.79045609009009
+ ],
+ [
+ 139.22070689010988,
+ 35.79027590990991
+ ],
+ [
+ 139.22048710989012,
+ 35.79027590990991
+ ],
+ [
+ 139.22048710989012,
+ 35.79045609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Bakurocho.1256.1",
+ "name": "馬喰町",
+ "latitude": 35.692737,
+ "longitude": 139.781409,
+ "polygon": [
+ [
+ 139.7812991098901,
+ 35.69282709009009
+ ],
+ [
+ 139.78151889010988,
+ 35.69282709009009
+ ],
+ [
+ 139.78151889010988,
+ 35.69264690990991
+ ],
+ [
+ 139.7812991098901,
+ 35.69264690990991
+ ],
+ [
+ 139.7812991098901,
+ 35.69282709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Bakurocho.1256.2",
+ "name": "馬喰町",
+ "latitude": 35.692536,
+ "longitude": 139.781583,
+ "polygon": [
+ [
+ 139.78147310989013,
+ 35.69262609009009
+ ],
+ [
+ 139.7816928901099,
+ 35.69262609009009
+ ],
+ [
+ 139.7816928901099,
+ 35.69244590990991
+ ],
+ [
+ 139.78147310989013,
+ 35.69244590990991
+ ],
+ [
+ 139.78147310989013,
+ 35.69262609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Bakurocho.1256.3",
+ "name": "馬喰町",
+ "latitude": 35.693184,
+ "longitude": 139.781663,
+ "polygon": [
+ [
+ 139.78155310989013,
+ 35.69327409009009
+ ],
+ [
+ 139.7817728901099,
+ 35.69327409009009
+ ],
+ [
+ 139.7817728901099,
+ 35.69309390990991
+ ],
+ [
+ 139.78155310989013,
+ 35.69309390990991
+ ],
+ [
+ 139.78155310989013,
+ 35.69327409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Bancho.1259.2",
+ "name": "番町",
+ "latitude": 35.687514,
+ "longitude": 139.736197,
+ "polygon": [
+ [
+ 139.73608710989012,
+ 35.68760409009009
+ ],
+ [
+ 139.7363068901099,
+ 35.68760409009009
+ ],
+ [
+ 139.7363068901099,
+ 35.68742390990991
+ ],
+ [
+ 139.73608710989012,
+ 35.68742390990991
+ ],
+ [
+ 139.73608710989012,
+ 35.68760409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiUenoItchome.1267.1",
+ "name": "東上野一丁目",
+ "latitude": 35.707412,
+ "longitude": 139.779188,
+ "polygon": [
+ [
+ 139.77907810989012,
+ 35.70750209009009
+ ],
+ [
+ 139.7792978901099,
+ 35.70750209009009
+ ],
+ [
+ 139.7792978901099,
+ 35.70732190990991
+ ],
+ [
+ 139.77907810989012,
+ 35.70732190990991
+ ],
+ [
+ 139.77907810989012,
+ 35.70750209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Babashitacho.1258.1",
+ "name": "馬場下町",
+ "latitude": 35.706488,
+ "longitude": 139.720228,
+ "polygon": [
+ [
+ 139.7201181098901,
+ 35.70657809009009
+ ],
+ [
+ 139.72033789010987,
+ 35.70657809009009
+ ],
+ [
+ 139.72033789010987,
+ 35.70639790990991
+ ],
+ [
+ 139.7201181098901,
+ 35.70639790990991
+ ],
+ [
+ 139.7201181098901,
+ 35.70657809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Babashitacho.1258.2",
+ "name": "馬場下町",
+ "latitude": 35.706885,
+ "longitude": 139.718697,
+ "polygon": [
+ [
+ 139.7185871098901,
+ 35.70697509009009
+ ],
+ [
+ 139.71880689010987,
+ 35.70697509009009
+ ],
+ [
+ 139.71880689010987,
+ 35.70679490990991
+ ],
+ [
+ 139.7185871098901,
+ 35.70679490990991
+ ],
+ [
+ 139.7185871098901,
+ 35.70697509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Babashitacho.1258.3",
+ "name": "馬場下町",
+ "latitude": 35.706934,
+ "longitude": 139.718389,
+ "polygon": [
+ [
+ 139.71827910989012,
+ 35.70702409009009
+ ],
+ [
+ 139.71849889010988,
+ 35.70702409009009
+ ],
+ [
+ 139.71849889010988,
+ 35.70684390990991
+ ],
+ [
+ 139.71827910989012,
+ 35.70684390990991
+ ],
+ [
+ 139.71827910989012,
+ 35.70702409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Babashitacho.1258.4",
+ "name": "馬場下町",
+ "latitude": 35.706246,
+ "longitude": 139.720246,
+ "polygon": [
+ [
+ 139.72013610989012,
+ 35.70633609009009
+ ],
+ [
+ 139.7203558901099,
+ 35.70633609009009
+ ],
+ [
+ 139.7203558901099,
+ 35.70615590990991
+ ],
+ [
+ 139.72013610989012,
+ 35.70615590990991
+ ],
+ [
+ 139.72013610989012,
+ 35.70633609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Babashitacho.1258.5",
+ "name": "馬場下町",
+ "latitude": 35.706362,
+ "longitude": 139.719363,
+ "polygon": [
+ [
+ 139.7192531098901,
+ 35.70645209009009
+ ],
+ [
+ 139.71947289010987,
+ 35.70645209009009
+ ],
+ [
+ 139.71947289010987,
+ 35.70627190990991
+ ],
+ [
+ 139.7192531098901,
+ 35.70627190990991
+ ],
+ [
+ 139.7192531098901,
+ 35.70645209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Bancho.1259.1",
+ "name": "番町",
+ "latitude": 35.687056,
+ "longitude": 139.736254,
+ "polygon": [
+ [
+ 139.73614410989012,
+ 35.68714609009009
+ ],
+ [
+ 139.73636389010989,
+ 35.68714609009009
+ ],
+ [
+ 139.73636389010989,
+ 35.68696590990991
+ ],
+ [
+ 139.73614410989012,
+ 35.68696590990991
+ ],
+ [
+ 139.73614410989012,
+ 35.68714609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.InariJinja.1261.1",
+ "name": "稲荷神社前(いなりじんじゃまえ(おうめし))",
+ "latitude": 35.781396,
+ "longitude": 139.227186,
+ "polygon": [
+ [
+ 139.2270761098901,
+ 35.78148609009009
+ ],
+ [
+ 139.22729589010987,
+ 35.78148609009009
+ ],
+ [
+ 139.22729589010987,
+ 35.78130590990991
+ ],
+ [
+ 139.2270761098901,
+ 35.78130590990991
+ ],
+ [
+ 139.2270761098901,
+ 35.78148609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.InariJinja.1261.2",
+ "name": "稲荷神社前(いなりじんじゃまえ(おうめし))",
+ "latitude": 35.781701,
+ "longitude": 139.227081,
+ "polygon": [
+ [
+ 139.22697110989012,
+ 35.78179109009009
+ ],
+ [
+ 139.22719089010988,
+ 35.78179109009009
+ ],
+ [
+ 139.22719089010988,
+ 35.78161090990991
+ ],
+ [
+ 139.22697110989012,
+ 35.78161090990991
+ ],
+ [
+ 139.22697110989012,
+ 35.78179109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiAsakusaItchome.1262.1",
+ "name": "東浅草一丁目",
+ "latitude": 35.7216,
+ "longitude": 139.799458,
+ "polygon": [
+ [
+ 139.7993481098901,
+ 35.72169009009009
+ ],
+ [
+ 139.79956789010987,
+ 35.72169009009009
+ ],
+ [
+ 139.79956789010987,
+ 35.72150990990991
+ ],
+ [
+ 139.7993481098901,
+ 35.72150990990991
+ ],
+ [
+ 139.7993481098901,
+ 35.72169009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiAsakusaItchome.1262.2",
+ "name": "東浅草一丁目",
+ "latitude": 35.721789,
+ "longitude": 139.799558,
+ "polygon": [
+ [
+ 139.7994481098901,
+ 35.72187909009009
+ ],
+ [
+ 139.79966789010987,
+ 35.72187909009009
+ ],
+ [
+ 139.79966789010987,
+ 35.72169890990991
+ ],
+ [
+ 139.7994481098901,
+ 35.72169890990991
+ ],
+ [
+ 139.7994481098901,
+ 35.72187909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiAzabuItchome.1263.1",
+ "name": "東麻布一丁目",
+ "latitude": 35.658223,
+ "longitude": 139.743682,
+ "polygon": [
+ [
+ 139.74357210989012,
+ 35.65831309009009
+ ],
+ [
+ 139.7437918901099,
+ 35.65831309009009
+ ],
+ [
+ 139.7437918901099,
+ 35.65813290990991
+ ],
+ [
+ 139.74357210989012,
+ 35.65813290990991
+ ],
+ [
+ 139.74357210989012,
+ 35.65831309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeStation.1270.1",
+ "name": "東青梅駅前",
+ "latitude": 35.78965,
+ "longitude": 139.272229,
+ "polygon": [
+ [
+ 139.27211910989013,
+ 35.78974009009009
+ ],
+ [
+ 139.2723388901099,
+ 35.78974009009009
+ ],
+ [
+ 139.2723388901099,
+ 35.78955990990991
+ ],
+ [
+ 139.27211910989013,
+ 35.78955990990991
+ ],
+ [
+ 139.27211910989013,
+ 35.78974009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiAzabuItchome.1263.2",
+ "name": "東麻布一丁目",
+ "latitude": 35.657643,
+ "longitude": 139.743718,
+ "polygon": [
+ [
+ 139.74360810989012,
+ 35.65773309009009
+ ],
+ [
+ 139.74382789010988,
+ 35.65773309009009
+ ],
+ [
+ 139.74382789010988,
+ 35.65755290990991
+ ],
+ [
+ 139.74360810989012,
+ 35.65755290990991
+ ],
+ [
+ 139.74360810989012,
+ 35.65773309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiIkebukuroItchome.1264.1",
+ "name": "東池袋一丁目",
+ "latitude": 35.728162,
+ "longitude": 139.715744,
+ "polygon": [
+ [
+ 139.71563410989012,
+ 35.72825209009009
+ ],
+ [
+ 139.71585389010988,
+ 35.72825209009009
+ ],
+ [
+ 139.71585389010988,
+ 35.72807190990991
+ ],
+ [
+ 139.71563410989012,
+ 35.72807190990991
+ ],
+ [
+ 139.71563410989012,
+ 35.72825209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiIkebukuroItchome.1264.2",
+ "name": "東池袋一丁目",
+ "latitude": 35.727765,
+ "longitude": 139.715999,
+ "polygon": [
+ [
+ 139.71588910989013,
+ 35.72785509009009
+ ],
+ [
+ 139.7161088901099,
+ 35.72785509009009
+ ],
+ [
+ 139.7161088901099,
+ 35.72767490990991
+ ],
+ [
+ 139.71588910989013,
+ 35.72767490990991
+ ],
+ [
+ 139.71588910989013,
+ 35.72785509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiIkebukuroYonchome.1266.1",
+ "name": "東池袋四丁目",
+ "latitude": 35.725644,
+ "longitude": 139.719756,
+ "polygon": [
+ [
+ 139.7196461098901,
+ 35.72573409009009
+ ],
+ [
+ 139.71986589010987,
+ 35.72573409009009
+ ],
+ [
+ 139.71986589010987,
+ 35.72555390990991
+ ],
+ [
+ 139.7196461098901,
+ 35.72555390990991
+ ],
+ [
+ 139.7196461098901,
+ 35.72573409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiIkebukuroYonchome.1266.2",
+ "name": "東池袋四丁目",
+ "latitude": 35.72546,
+ "longitude": 139.719645,
+ "polygon": [
+ [
+ 139.71953510989013,
+ 35.72555009009009
+ ],
+ [
+ 139.7197548901099,
+ 35.72555009009009
+ ],
+ [
+ 139.7197548901099,
+ 35.72536990990991
+ ],
+ [
+ 139.71953510989013,
+ 35.72536990990991
+ ],
+ [
+ 139.71953510989013,
+ 35.72555009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeStation.1270.2",
+ "name": "東青梅駅前",
+ "latitude": 35.789648,
+ "longitude": 139.27228,
+ "polygon": [
+ [
+ 139.2721701098901,
+ 35.78973809009009
+ ],
+ [
+ 139.27238989010988,
+ 35.78973809009009
+ ],
+ [
+ 139.27238989010988,
+ 35.78955790990991
+ ],
+ [
+ 139.2721701098901,
+ 35.78955790990991
+ ],
+ [
+ 139.2721701098901,
+ 35.78973809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiUenoItchome.1267.2",
+ "name": "東上野一丁目",
+ "latitude": 35.707179,
+ "longitude": 139.779594,
+ "polygon": [
+ [
+ 139.77948410989012,
+ 35.70726909009009
+ ],
+ [
+ 139.7797038901099,
+ 35.70726909009009
+ ],
+ [
+ 139.7797038901099,
+ 35.707088909909906
+ ],
+ [
+ 139.77948410989012,
+ 35.707088909909906
+ ],
+ [
+ 139.77948410989012,
+ 35.70726909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiUenoRokuchome.1268.1",
+ "name": "東上野六丁目",
+ "latitude": 35.711094,
+ "longitude": 139.784514,
+ "polygon": [
+ [
+ 139.78440410989012,
+ 35.71118409009009
+ ],
+ [
+ 139.78462389010988,
+ 35.71118409009009
+ ],
+ [
+ 139.78462389010988,
+ 35.71100390990991
+ ],
+ [
+ 139.78440410989012,
+ 35.71100390990991
+ ],
+ [
+ 139.78440410989012,
+ 35.71118409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiUenoRokuchome.1268.2",
+ "name": "東上野六丁目",
+ "latitude": 35.711077,
+ "longitude": 139.783444,
+ "polygon": [
+ [
+ 139.78333410989012,
+ 35.71116709009009
+ ],
+ [
+ 139.78355389010989,
+ 35.71116709009009
+ ],
+ [
+ 139.78355389010989,
+ 35.71098690990991
+ ],
+ [
+ 139.78333410989012,
+ 35.71098690990991
+ ],
+ [
+ 139.78333410989012,
+ 35.71116709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOme.1269.1",
+ "name": "東青梅",
+ "latitude": 35.792021,
+ "longitude": 139.270658,
+ "polygon": [
+ [
+ 139.27054810989011,
+ 35.79211109009009
+ ],
+ [
+ 139.27076789010988,
+ 35.79211109009009
+ ],
+ [
+ 139.27076789010988,
+ 35.79193090990991
+ ],
+ [
+ 139.27054810989011,
+ 35.79193090990991
+ ],
+ [
+ 139.27054810989011,
+ 35.79211109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOme.1269.2",
+ "name": "東青梅",
+ "latitude": 35.791681,
+ "longitude": 139.27085,
+ "polygon": [
+ [
+ 139.2707401098901,
+ 35.79177109009009
+ ],
+ [
+ 139.27095989010988,
+ 35.79177109009009
+ ],
+ [
+ 139.27095989010988,
+ 35.79159090990991
+ ],
+ [
+ 139.2707401098901,
+ 35.79159090990991
+ ],
+ [
+ 139.2707401098901,
+ 35.79177109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeGochome.1272.1",
+ "name": "東青梅五丁目",
+ "latitude": 35.791152,
+ "longitude": 139.280454,
+ "polygon": [
+ [
+ 139.2803441098901,
+ 35.79124209009009
+ ],
+ [
+ 139.28056389010987,
+ 35.79124209009009
+ ],
+ [
+ 139.28056389010987,
+ 35.79106190990991
+ ],
+ [
+ 139.2803441098901,
+ 35.79106190990991
+ ],
+ [
+ 139.2803441098901,
+ 35.79124209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOjimaStation.1273.2",
+ "name": "東大島駅前",
+ "latitude": 35.69007,
+ "longitude": 139.845574,
+ "polygon": [
+ [
+ 139.84546410989012,
+ 35.69016009009009
+ ],
+ [
+ 139.84568389010988,
+ 35.69016009009009
+ ],
+ [
+ 139.84568389010988,
+ 35.68997990990991
+ ],
+ [
+ 139.84546410989012,
+ 35.68997990990991
+ ],
+ [
+ 139.84546410989012,
+ 35.69016009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOjimaStation.1273.5",
+ "name": "東大島駅前",
+ "latitude": 35.689466,
+ "longitude": 139.848897,
+ "polygon": [
+ [
+ 139.8487871098901,
+ 35.68955609009009
+ ],
+ [
+ 139.84900689010988,
+ 35.68955609009009
+ ],
+ [
+ 139.84900689010988,
+ 35.68937590990991
+ ],
+ [
+ 139.8487871098901,
+ 35.68937590990991
+ ],
+ [
+ 139.8487871098901,
+ 35.68955609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOjimaStation.1273.6",
+ "name": "東大島駅前",
+ "latitude": 35.689414,
+ "longitude": 139.849033,
+ "polygon": [
+ [
+ 139.8489231098901,
+ 35.68950409009009
+ ],
+ [
+ 139.84914289010987,
+ 35.68950409009009
+ ],
+ [
+ 139.84914289010987,
+ 35.68932390990991
+ ],
+ [
+ 139.8489231098901,
+ 35.68932390990991
+ ],
+ [
+ 139.8489231098901,
+ 35.68950409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOjimaStation.1273.7",
+ "name": "東大島駅前",
+ "latitude": 35.689151,
+ "longitude": 139.848803,
+ "polygon": [
+ [
+ 139.84869310989012,
+ 35.68924109009009
+ ],
+ [
+ 139.8489128901099,
+ 35.68924109009009
+ ],
+ [
+ 139.8489128901099,
+ 35.68906090990991
+ ],
+ [
+ 139.84869310989012,
+ 35.68906090990991
+ ],
+ [
+ 139.84869310989012,
+ 35.68924109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOjimaStation.1273.8",
+ "name": "東大島駅前",
+ "latitude": 35.689942,
+ "longitude": 139.845478,
+ "polygon": [
+ [
+ 139.84536810989013,
+ 35.69003209009009
+ ],
+ [
+ 139.8455878901099,
+ 35.69003209009009
+ ],
+ [
+ 139.8455878901099,
+ 35.68985190990991
+ ],
+ [
+ 139.84536810989013,
+ 35.68985190990991
+ ],
+ [
+ 139.84536810989013,
+ 35.69003209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOguGochome.1274.1",
+ "name": "東尾久五丁目",
+ "latitude": 35.746484,
+ "longitude": 139.769678,
+ "polygon": [
+ [
+ 139.76956810989012,
+ 35.74657409009009
+ ],
+ [
+ 139.76978789010988,
+ 35.74657409009009
+ ],
+ [
+ 139.76978789010988,
+ 35.74639390990991
+ ],
+ [
+ 139.76956810989012,
+ 35.74639390990991
+ ],
+ [
+ 139.76956810989012,
+ 35.74657409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiNagasakiNichome.1486.2",
+ "name": "南長崎二丁目",
+ "latitude": 35.722737,
+ "longitude": 139.690428,
+ "polygon": [
+ [
+ 139.69031810989011,
+ 35.72282709009009
+ ],
+ [
+ 139.69053789010988,
+ 35.72282709009009
+ ],
+ [
+ 139.69053789010988,
+ 35.72264690990991
+ ],
+ [
+ 139.69031810989011,
+ 35.72264690990991
+ ],
+ [
+ 139.69031810989011,
+ 35.72282709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOguRokuchome.1275.1",
+ "name": "東尾久六丁目",
+ "latitude": 35.749556,
+ "longitude": 139.77488,
+ "polygon": [
+ [
+ 139.7747701098901,
+ 35.74964609009009
+ ],
+ [
+ 139.77498989010988,
+ 35.74964609009009
+ ],
+ [
+ 139.77498989010988,
+ 35.74946590990991
+ ],
+ [
+ 139.7747701098901,
+ 35.74946590990991
+ ],
+ [
+ 139.7747701098901,
+ 35.74964609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOguRokuchome.1275.2",
+ "name": "東尾久六丁目",
+ "latitude": 35.749495,
+ "longitude": 139.775415,
+ "polygon": [
+ [
+ 139.77530510989013,
+ 35.74958509009009
+ ],
+ [
+ 139.7755248901099,
+ 35.74958509009009
+ ],
+ [
+ 139.7755248901099,
+ 35.74940490990991
+ ],
+ [
+ 139.77530510989013,
+ 35.74940490990991
+ ],
+ [
+ 139.77530510989013,
+ 35.74958509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKanda.1276.1",
+ "name": "東神田",
+ "latitude": 35.694848,
+ "longitude": 139.78008,
+ "polygon": [
+ [
+ 139.77997010989012,
+ 35.69493809009009
+ ],
+ [
+ 139.78018989010988,
+ 35.69493809009009
+ ],
+ [
+ 139.78018989010988,
+ 35.69475790990991
+ ],
+ [
+ 139.77997010989012,
+ 35.69475790990991
+ ],
+ [
+ 139.77997010989012,
+ 35.69493809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKanda.1276.2",
+ "name": "東神田",
+ "latitude": 35.694281,
+ "longitude": 139.780386,
+ "polygon": [
+ [
+ 139.7802761098901,
+ 35.69437109009009
+ ],
+ [
+ 139.78049589010988,
+ 35.69437109009009
+ ],
+ [
+ 139.78049589010988,
+ 35.694190909909906
+ ],
+ [
+ 139.7802761098901,
+ 35.694190909909906
+ ],
+ [
+ 139.7802761098901,
+ 35.69437109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiNagasakiRokuchome.1489.1",
+ "name": "南長崎六丁目",
+ "latitude": 35.731193,
+ "longitude": 139.678205,
+ "polygon": [
+ [
+ 139.6780951098901,
+ 35.73128309009009
+ ],
+ [
+ 139.67831489010987,
+ 35.73128309009009
+ ],
+ [
+ 139.67831489010987,
+ 35.73110290990991
+ ],
+ [
+ 139.6780951098901,
+ 35.73110290990991
+ ],
+ [
+ 139.6780951098901,
+ 35.73128309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKoenjiStation.1277.1",
+ "name": "東高円寺駅前",
+ "latitude": 35.698084,
+ "longitude": 139.657531,
+ "polygon": [
+ [
+ 139.65742110989012,
+ 35.69817409009009
+ ],
+ [
+ 139.6576408901099,
+ 35.69817409009009
+ ],
+ [
+ 139.6576408901099,
+ 35.69799390990991
+ ],
+ [
+ 139.65742110989012,
+ 35.69799390990991
+ ],
+ [
+ 139.65742110989012,
+ 35.69817409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomagataItchome.1278.1",
+ "name": "東駒形一丁目",
+ "latitude": 35.70673,
+ "longitude": 139.798284,
+ "polygon": [
+ [
+ 139.7981741098901,
+ 35.70682009009009
+ ],
+ [
+ 139.79839389010988,
+ 35.70682009009009
+ ],
+ [
+ 139.79839389010988,
+ 35.70663990990991
+ ],
+ [
+ 139.7981741098901,
+ 35.70663990990991
+ ],
+ [
+ 139.7981741098901,
+ 35.70682009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomagataItchome.1278.2",
+ "name": "東駒形一丁目",
+ "latitude": 35.706844,
+ "longitude": 139.798097,
+ "polygon": [
+ [
+ 139.79798710989013,
+ 35.70693409009009
+ ],
+ [
+ 139.7982068901099,
+ 35.70693409009009
+ ],
+ [
+ 139.7982068901099,
+ 35.70675390990991
+ ],
+ [
+ 139.79798710989013,
+ 35.70675390990991
+ ],
+ [
+ 139.79798710989013,
+ 35.70693409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaShogakko.1279.1",
+ "name": "東小松川小学校前",
+ "latitude": 35.693046,
+ "longitude": 139.867605,
+ "polygon": [
+ [
+ 139.86749510989011,
+ 35.69313609009009
+ ],
+ [
+ 139.86771489010988,
+ 35.69313609009009
+ ],
+ [
+ 139.86771489010988,
+ 35.69295590990991
+ ],
+ [
+ 139.86749510989011,
+ 35.69295590990991
+ ],
+ [
+ 139.86749510989011,
+ 35.69313609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaShogakko.1279.2",
+ "name": "東小松川小学校前",
+ "latitude": 35.691882,
+ "longitude": 139.867698,
+ "polygon": [
+ [
+ 139.8675881098901,
+ 35.69197209009009
+ ],
+ [
+ 139.86780789010987,
+ 35.69197209009009
+ ],
+ [
+ 139.86780789010987,
+ 35.69179190990991
+ ],
+ [
+ 139.8675881098901,
+ 35.69179190990991
+ ],
+ [
+ 139.8675881098901,
+ 35.69197209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaItchome.1280.1",
+ "name": "東小松川一丁目",
+ "latitude": 35.699779,
+ "longitude": 139.867792,
+ "polygon": [
+ [
+ 139.86768210989013,
+ 35.69986909009009
+ ],
+ [
+ 139.8679018901099,
+ 35.69986909009009
+ ],
+ [
+ 139.8679018901099,
+ 35.69968890990991
+ ],
+ [
+ 139.86768210989013,
+ 35.69968890990991
+ ],
+ [
+ 139.86768210989013,
+ 35.69986909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinagawabashi.1285.1",
+ "name": "東品川橋",
+ "latitude": 35.615724,
+ "longitude": 139.75037,
+ "polygon": [
+ [
+ 139.75026010989012,
+ 35.61581409009009
+ ],
+ [
+ 139.7504798901099,
+ 35.61581409009009
+ ],
+ [
+ 139.7504798901099,
+ 35.61563390990991
+ ],
+ [
+ 139.75026010989012,
+ 35.61563390990991
+ ],
+ [
+ 139.75026010989012,
+ 35.61581409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaItchome.1280.2",
+ "name": "東小松川一丁目",
+ "latitude": 35.697743,
+ "longitude": 139.867744,
+ "polygon": [
+ [
+ 139.8676341098901,
+ 35.69783309009009
+ ],
+ [
+ 139.86785389010987,
+ 35.69783309009009
+ ],
+ [
+ 139.86785389010987,
+ 35.69765290990991
+ ],
+ [
+ 139.8676341098901,
+ 35.69765290990991
+ ],
+ [
+ 139.8676341098901,
+ 35.69783309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaItchome.1280.3",
+ "name": "東小松川一丁目",
+ "latitude": 35.699442,
+ "longitude": 139.867917,
+ "polygon": [
+ [
+ 139.86780710989012,
+ 35.69953209009009
+ ],
+ [
+ 139.8680268901099,
+ 35.69953209009009
+ ],
+ [
+ 139.8680268901099,
+ 35.69935190990991
+ ],
+ [
+ 139.86780710989012,
+ 35.69935190990991
+ ],
+ [
+ 139.86780710989012,
+ 35.69953209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaItchome.1280.4",
+ "name": "東小松川一丁目",
+ "latitude": 35.698131,
+ "longitude": 139.868219,
+ "polygon": [
+ [
+ 139.86810910989013,
+ 35.69822109009009
+ ],
+ [
+ 139.8683288901099,
+ 35.69822109009009
+ ],
+ [
+ 139.8683288901099,
+ 35.698040909909906
+ ],
+ [
+ 139.86810910989013,
+ 35.698040909909906
+ ],
+ [
+ 139.86810910989013,
+ 35.69822109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaNichome.1281.1",
+ "name": "東小松川二丁目",
+ "latitude": 35.695301,
+ "longitude": 139.867693,
+ "polygon": [
+ [
+ 139.86758310989012,
+ 35.69539109009009
+ ],
+ [
+ 139.86780289010989,
+ 35.69539109009009
+ ],
+ [
+ 139.86780289010989,
+ 35.69521090990991
+ ],
+ [
+ 139.86758310989012,
+ 35.69521090990991
+ ],
+ [
+ 139.86758310989012,
+ 35.69539109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaNichome.1281.2",
+ "name": "東小松川二丁目",
+ "latitude": 35.695117,
+ "longitude": 139.867823,
+ "polygon": [
+ [
+ 139.8677131098901,
+ 35.69520709009009
+ ],
+ [
+ 139.86793289010987,
+ 35.69520709009009
+ ],
+ [
+ 139.86793289010987,
+ 35.69502690990991
+ ],
+ [
+ 139.8677131098901,
+ 35.69502690990991
+ ],
+ [
+ 139.8677131098901,
+ 35.69520709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiGokencho.1282.1",
+ "name": "東五軒町",
+ "latitude": 35.708376,
+ "longitude": 139.738988,
+ "polygon": [
+ [
+ 139.73887810989012,
+ 35.70846609009009
+ ],
+ [
+ 139.7390978901099,
+ 35.70846609009009
+ ],
+ [
+ 139.7390978901099,
+ 35.70828590990991
+ ],
+ [
+ 139.73887810989012,
+ 35.70828590990991
+ ],
+ [
+ 139.73887810989012,
+ 35.70846609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiGokencho.1282.2",
+ "name": "東五軒町",
+ "latitude": 35.708581,
+ "longitude": 139.738789,
+ "polygon": [
+ [
+ 139.7386791098901,
+ 35.70867109009009
+ ],
+ [
+ 139.73889889010988,
+ 35.70867109009009
+ ],
+ [
+ 139.73889889010988,
+ 35.70849090990991
+ ],
+ [
+ 139.7386791098901,
+ 35.70849090990991
+ ],
+ [
+ 139.7386791098901,
+ 35.70867109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiGotandaSanchome.1283.1",
+ "name": "東五反田三丁目",
+ "latitude": 35.62487,
+ "longitude": 139.730634,
+ "polygon": [
+ [
+ 139.73052410989013,
+ 35.62496009009009
+ ],
+ [
+ 139.7307438901099,
+ 35.62496009009009
+ ],
+ [
+ 139.7307438901099,
+ 35.62477990990991
+ ],
+ [
+ 139.73052410989013,
+ 35.62477990990991
+ ],
+ [
+ 139.73052410989013,
+ 35.62496009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiGotandaSanchome.1283.2",
+ "name": "東五反田三丁目",
+ "latitude": 35.625071,
+ "longitude": 139.730465,
+ "polygon": [
+ [
+ 139.73035510989013,
+ 35.62516109009009
+ ],
+ [
+ 139.7305748901099,
+ 35.62516109009009
+ ],
+ [
+ 139.7305748901099,
+ 35.62498090990991
+ ],
+ [
+ 139.73035510989013,
+ 35.62498090990991
+ ],
+ [
+ 139.73035510989013,
+ 35.62516109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinagawaSanchome.1287.3",
+ "name": "東品川三丁目",
+ "latitude": 35.614814,
+ "longitude": 139.747617,
+ "polygon": [
+ [
+ 139.7475071098901,
+ 35.61490409009009
+ ],
+ [
+ 139.74772689010987,
+ 35.61490409009009
+ ],
+ [
+ 139.74772689010987,
+ 35.61472390990991
+ ],
+ [
+ 139.7475071098901,
+ 35.61472390990991
+ ],
+ [
+ 139.7475071098901,
+ 35.61490409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinagawaYuyuPlaza.1284.1",
+ "name": "東品川ゆうゆうプラザ前",
+ "latitude": 35.61298,
+ "longitude": 139.750107,
+ "polygon": [
+ [
+ 139.74999710989013,
+ 35.61307009009009
+ ],
+ [
+ 139.7502168901099,
+ 35.61307009009009
+ ],
+ [
+ 139.7502168901099,
+ 35.61288990990991
+ ],
+ [
+ 139.74999710989013,
+ 35.61288990990991
+ ],
+ [
+ 139.74999710989013,
+ 35.61307009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinagawaItchome.1286.1",
+ "name": "東品川一丁目",
+ "latitude": 35.620621,
+ "longitude": 139.742453,
+ "polygon": [
+ [
+ 139.74234310989013,
+ 35.62071109009009
+ ],
+ [
+ 139.7425628901099,
+ 35.62071109009009
+ ],
+ [
+ 139.7425628901099,
+ 35.62053090990991
+ ],
+ [
+ 139.74234310989013,
+ 35.62053090990991
+ ],
+ [
+ 139.74234310989013,
+ 35.62071109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinagawaItchome.1286.2",
+ "name": "東品川一丁目",
+ "latitude": 35.620474,
+ "longitude": 139.742803,
+ "polygon": [
+ [
+ 139.74269310989013,
+ 35.62056409009009
+ ],
+ [
+ 139.7429128901099,
+ 35.62056409009009
+ ],
+ [
+ 139.7429128901099,
+ 35.62038390990991
+ ],
+ [
+ 139.74269310989013,
+ 35.62038390990991
+ ],
+ [
+ 139.74269310989013,
+ 35.62056409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinagawaSanchome.1287.1",
+ "name": "東品川三丁目",
+ "latitude": 35.615252,
+ "longitude": 139.747422,
+ "polygon": [
+ [
+ 139.74731210989012,
+ 35.61534209009009
+ ],
+ [
+ 139.74753189010988,
+ 35.61534209009009
+ ],
+ [
+ 139.74753189010988,
+ 35.61516190990991
+ ],
+ [
+ 139.74731210989012,
+ 35.61516190990991
+ ],
+ [
+ 139.74731210989012,
+ 35.61534209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinagawaSanchome.1287.2",
+ "name": "東品川三丁目",
+ "latitude": 35.615859,
+ "longitude": 139.747918,
+ "polygon": [
+ [
+ 139.74780810989012,
+ 35.61594909009009
+ ],
+ [
+ 139.74802789010988,
+ 35.61594909009009
+ ],
+ [
+ 139.74802789010988,
+ 35.61576890990991
+ ],
+ [
+ 139.74780810989012,
+ 35.61576890990991
+ ],
+ [
+ 139.74780810989012,
+ 35.61594909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinagawaGochome.1288.1",
+ "name": "東品川五丁目",
+ "latitude": 35.62373,
+ "longitude": 139.753985,
+ "polygon": [
+ [
+ 139.75387510989012,
+ 35.62382009009009
+ ],
+ [
+ 139.75409489010988,
+ 35.62382009009009
+ ],
+ [
+ 139.75409489010988,
+ 35.62363990990991
+ ],
+ [
+ 139.75387510989012,
+ 35.62363990990991
+ ],
+ [
+ 139.75387510989012,
+ 35.62382009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinKoiwaItchome.1289.1",
+ "name": "東新小岩一丁目",
+ "latitude": 35.721738,
+ "longitude": 139.860678,
+ "polygon": [
+ [
+ 139.86056810989012,
+ 35.72182809009009
+ ],
+ [
+ 139.8607878901099,
+ 35.72182809009009
+ ],
+ [
+ 139.8607878901099,
+ 35.72164790990991
+ ],
+ [
+ 139.86056810989012,
+ 35.72164790990991
+ ],
+ [
+ 139.86056810989012,
+ 35.72182809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinKoiwaItchome.1289.2",
+ "name": "東新小岩一丁目",
+ "latitude": 35.721857,
+ "longitude": 139.860495,
+ "polygon": [
+ [
+ 139.8603851098901,
+ 35.72194709009009
+ ],
+ [
+ 139.86060489010987,
+ 35.72194709009009
+ ],
+ [
+ 139.86060489010987,
+ 35.72176690990991
+ ],
+ [
+ 139.8603851098901,
+ 35.72176690990991
+ ],
+ [
+ 139.8603851098901,
+ 35.72194709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinKoiwaSanchome.1290.1",
+ "name": "東新小岩三丁目",
+ "latitude": 35.723446,
+ "longitude": 139.863123,
+ "polygon": [
+ [
+ 139.86301310989012,
+ 35.72353609009009
+ ],
+ [
+ 139.86323289010988,
+ 35.72353609009009
+ ],
+ [
+ 139.86323289010988,
+ 35.72335590990991
+ ],
+ [
+ 139.86301310989012,
+ 35.72335590990991
+ ],
+ [
+ 139.86301310989012,
+ 35.72353609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinKoiwaSanchome.1290.2",
+ "name": "東新小岩三丁目",
+ "latitude": 35.722957,
+ "longitude": 139.862072,
+ "polygon": [
+ [
+ 139.86196210989013,
+ 35.72304709009009
+ ],
+ [
+ 139.8621818901099,
+ 35.72304709009009
+ ],
+ [
+ 139.8621818901099,
+ 35.72286690990991
+ ],
+ [
+ 139.86196210989013,
+ 35.72286690990991
+ ],
+ [
+ 139.86196210989013,
+ 35.72304709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiShinKoiwaYonchome.1291.1",
+ "name": "東新小岩四丁目",
+ "latitude": 35.724825,
+ "longitude": 139.866068,
+ "polygon": [
+ [
+ 139.86595810989013,
+ 35.72491509009009
+ ],
+ [
+ 139.8661778901099,
+ 35.72491509009009
+ ],
+ [
+ 139.8661778901099,
+ 35.72473490990991
+ ],
+ [
+ 139.86595810989013,
+ 35.72473490990991
+ ],
+ [
+ 139.86595810989013,
+ 35.72491509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiJujoYonchome.1292.1",
+ "name": "東十条四丁目",
+ "latitude": 35.767647,
+ "longitude": 139.728064,
+ "polygon": [
+ [
+ 139.7279541098901,
+ 35.76773709009009
+ ],
+ [
+ 139.72817389010987,
+ 35.76773709009009
+ ],
+ [
+ 139.72817389010987,
+ 35.767556909909906
+ ],
+ [
+ 139.7279541098901,
+ 35.767556909909906
+ ],
+ [
+ 139.7279541098901,
+ 35.76773709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiJujoYonchome.1292.2",
+ "name": "東十条四丁目",
+ "latitude": 35.768038,
+ "longitude": 139.728602,
+ "polygon": [
+ [
+ 139.7284921098901,
+ 35.76812809009009
+ ],
+ [
+ 139.72871189010988,
+ 35.76812809009009
+ ],
+ [
+ 139.72871189010988,
+ 35.76794790990991
+ ],
+ [
+ 139.7284921098901,
+ 35.76794790990991
+ ],
+ [
+ 139.7284921098901,
+ 35.76812809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaNichome.1293.1",
+ "name": "東砂二丁目",
+ "latitude": 35.683808,
+ "longitude": 139.84483,
+ "polygon": [
+ [
+ 139.84472010989012,
+ 35.68389809009009
+ ],
+ [
+ 139.84493989010988,
+ 35.68389809009009
+ ],
+ [
+ 139.84493989010988,
+ 35.68371790990991
+ ],
+ [
+ 139.84472010989012,
+ 35.68371790990991
+ ],
+ [
+ 139.84472010989012,
+ 35.68389809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaNichome.1293.2",
+ "name": "東砂二丁目",
+ "latitude": 35.68321,
+ "longitude": 139.844856,
+ "polygon": [
+ [
+ 139.8447461098901,
+ 35.68330009009009
+ ],
+ [
+ 139.84496589010988,
+ 35.68330009009009
+ ],
+ [
+ 139.84496589010988,
+ 35.68311990990991
+ ],
+ [
+ 139.8447461098901,
+ 35.68311990990991
+ ],
+ [
+ 139.8447461098901,
+ 35.68330009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaSanchome.1294.1",
+ "name": "東砂三丁目",
+ "latitude": 35.68189,
+ "longitude": 139.844431,
+ "polygon": [
+ [
+ 139.8443211098901,
+ 35.68198009009009
+ ],
+ [
+ 139.84454089010987,
+ 35.68198009009009
+ ],
+ [
+ 139.84454089010987,
+ 35.68179990990991
+ ],
+ [
+ 139.8443211098901,
+ 35.68179990990991
+ ],
+ [
+ 139.8443211098901,
+ 35.68198009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaYonchome.1295.1",
+ "name": "東砂四丁目",
+ "latitude": 35.675786,
+ "longitude": 139.83822,
+ "polygon": [
+ [
+ 139.83811010989012,
+ 35.67587609009009
+ ],
+ [
+ 139.8383298901099,
+ 35.67587609009009
+ ],
+ [
+ 139.8383298901099,
+ 35.67569590990991
+ ],
+ [
+ 139.83811010989012,
+ 35.67569590990991
+ ],
+ [
+ 139.83811010989012,
+ 35.67587609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaYonchome.1295.2",
+ "name": "東砂四丁目",
+ "latitude": 35.675737,
+ "longitude": 139.83728,
+ "polygon": [
+ [
+ 139.8371701098901,
+ 35.67582709009009
+ ],
+ [
+ 139.83738989010988,
+ 35.67582709009009
+ ],
+ [
+ 139.83738989010988,
+ 35.67564690990991
+ ],
+ [
+ 139.8371701098901,
+ 35.67564690990991
+ ],
+ [
+ 139.8371701098901,
+ 35.67582709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaGochome.1296.1",
+ "name": "東砂五丁目",
+ "latitude": 35.675984,
+ "longitude": 139.843207,
+ "polygon": [
+ [
+ 139.84309710989012,
+ 35.67607409009009
+ ],
+ [
+ 139.8433168901099,
+ 35.67607409009009
+ ],
+ [
+ 139.8433168901099,
+ 35.67589390990991
+ ],
+ [
+ 139.84309710989012,
+ 35.67589390990991
+ ],
+ [
+ 139.84309710989012,
+ 35.67607409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaGochome.1296.2",
+ "name": "東砂五丁目",
+ "latitude": 35.675682,
+ "longitude": 139.842993,
+ "polygon": [
+ [
+ 139.84288310989012,
+ 35.67577209009009
+ ],
+ [
+ 139.8431028901099,
+ 35.67577209009009
+ ],
+ [
+ 139.8431028901099,
+ 35.67559190990991
+ ],
+ [
+ 139.84288310989012,
+ 35.67559190990991
+ ],
+ [
+ 139.84288310989012,
+ 35.67577209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaRokuchome.1297.1",
+ "name": "東砂六丁目",
+ "latitude": 35.67291,
+ "longitude": 139.840828,
+ "polygon": [
+ [
+ 139.8407181098901,
+ 35.67300009009009
+ ],
+ [
+ 139.84093789010987,
+ 35.67300009009009
+ ],
+ [
+ 139.84093789010987,
+ 35.67281990990991
+ ],
+ [
+ 139.8407181098901,
+ 35.67281990990991
+ ],
+ [
+ 139.8407181098901,
+ 35.67300009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaRokuchome.1297.2",
+ "name": "東砂六丁目",
+ "latitude": 35.67267,
+ "longitude": 139.84074,
+ "polygon": [
+ [
+ 139.84063010989013,
+ 35.67276009009009
+ ],
+ [
+ 139.8408498901099,
+ 35.67276009009009
+ ],
+ [
+ 139.8408498901099,
+ 35.672579909909906
+ ],
+ [
+ 139.84063010989013,
+ 35.672579909909906
+ ],
+ [
+ 139.84063010989013,
+ 35.67276009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaRokuchome.1297.3",
+ "name": "東砂六丁目",
+ "latitude": 35.671489,
+ "longitude": 139.840871,
+ "polygon": [
+ [
+ 139.8407611098901,
+ 35.67157909009009
+ ],
+ [
+ 139.84098089010988,
+ 35.67157909009009
+ ],
+ [
+ 139.84098089010988,
+ 35.67139890990991
+ ],
+ [
+ 139.8407611098901,
+ 35.67139890990991
+ ],
+ [
+ 139.8407611098901,
+ 35.67157909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSumidaItchome.1299.1",
+ "name": "東墨田一丁目",
+ "latitude": 35.716393,
+ "longitude": 139.832935,
+ "polygon": [
+ [
+ 139.8328251098901,
+ 35.71648309009009
+ ],
+ [
+ 139.83304489010987,
+ 35.71648309009009
+ ],
+ [
+ 139.83304489010987,
+ 35.716302909909906
+ ],
+ [
+ 139.8328251098901,
+ 35.716302909909906
+ ],
+ [
+ 139.8328251098901,
+ 35.71648309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSumidaItchome.1299.2",
+ "name": "東墨田一丁目",
+ "latitude": 35.716328,
+ "longitude": 139.833033,
+ "polygon": [
+ [
+ 139.83292310989012,
+ 35.71641809009009
+ ],
+ [
+ 139.83314289010988,
+ 35.71641809009009
+ ],
+ [
+ 139.83314289010988,
+ 35.71623790990991
+ ],
+ [
+ 139.83292310989012,
+ 35.71623790990991
+ ],
+ [
+ 139.83292310989012,
+ 35.71641809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSumidaNichome.1300.1",
+ "name": "東墨田二丁目",
+ "latitude": 35.721865,
+ "longitude": 139.830919,
+ "polygon": [
+ [
+ 139.8308091098901,
+ 35.72195509009009
+ ],
+ [
+ 139.83102889010988,
+ 35.72195509009009
+ ],
+ [
+ 139.83102889010988,
+ 35.72177490990991
+ ],
+ [
+ 139.8308091098901,
+ 35.72177490990991
+ ],
+ [
+ 139.8308091098901,
+ 35.72195509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSumidaNichome.1300.2",
+ "name": "東墨田二丁目",
+ "latitude": 35.721893,
+ "longitude": 139.830827,
+ "polygon": [
+ [
+ 139.83071710989012,
+ 35.72198309009009
+ ],
+ [
+ 139.83093689010988,
+ 35.72198309009009
+ ],
+ [
+ 139.83093689010988,
+ 35.72180290990991
+ ],
+ [
+ 139.83071710989012,
+ 35.72180290990991
+ ],
+ [
+ 139.83071710989012,
+ 35.72198309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Higashiyamacho.1320.2",
+ "name": "東山町",
+ "latitude": 35.753628,
+ "longitude": 139.685865,
+ "polygon": [
+ [
+ 139.68575510989012,
+ 35.75371809009009
+ ],
+ [
+ 139.6859748901099,
+ 35.75371809009009
+ ],
+ [
+ 139.6859748901099,
+ 35.75353790990991
+ ],
+ [
+ 139.68575510989012,
+ 35.75353790990991
+ ],
+ [
+ 139.68575510989012,
+ 35.75371809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYonchome.1323.3",
+ "name": "東四丁目",
+ "latitude": 35.655217,
+ "longitude": 139.713275,
+ "polygon": [
+ [
+ 139.71316510989013,
+ 35.65530709009009
+ ],
+ [
+ 139.7133848901099,
+ 35.65530709009009
+ ],
+ [
+ 139.7133848901099,
+ 35.65512690990991
+ ],
+ [
+ 139.71316510989013,
+ 35.65512690990991
+ ],
+ [
+ 139.71316510989013,
+ 35.65530709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSumidaSanchome.1301.1",
+ "name": "東墨田三丁目",
+ "latitude": 35.718465,
+ "longitude": 139.834297,
+ "polygon": [
+ [
+ 139.8341871098901,
+ 35.71855509009009
+ ],
+ [
+ 139.83440689010988,
+ 35.71855509009009
+ ],
+ [
+ 139.83440689010988,
+ 35.71837490990991
+ ],
+ [
+ 139.8341871098901,
+ 35.71837490990991
+ ],
+ [
+ 139.8341871098901,
+ 35.71855509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSumidaSanchome.1301.2",
+ "name": "東墨田三丁目",
+ "latitude": 35.718754,
+ "longitude": 139.834261,
+ "polygon": [
+ [
+ 139.83415110989012,
+ 35.71884409009009
+ ],
+ [
+ 139.83437089010988,
+ 35.71884409009009
+ ],
+ [
+ 139.83437089010988,
+ 35.71866390990991
+ ],
+ [
+ 139.83415110989012,
+ 35.71866390990991
+ ],
+ [
+ 139.83415110989012,
+ 35.71884409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNagaoka.1306.1",
+ "name": "東長岡",
+ "latitude": 35.777468,
+ "longitude": 139.334722,
+ "polygon": [
+ [
+ 139.33461210989012,
+ 35.77755809009009
+ ],
+ [
+ 139.33483189010988,
+ 35.77755809009009
+ ],
+ [
+ 139.33483189010988,
+ 35.77737790990991
+ ],
+ [
+ 139.33461210989012,
+ 35.77737790990991
+ ],
+ [
+ 139.33461210989012,
+ 35.77755809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNagaoka.1306.2",
+ "name": "東長岡",
+ "latitude": 35.777252,
+ "longitude": 139.334815,
+ "polygon": [
+ [
+ 139.3347051098901,
+ 35.77734209009009
+ ],
+ [
+ 139.33492489010987,
+ 35.77734209009009
+ ],
+ [
+ 139.33492489010987,
+ 35.77716190990991
+ ],
+ [
+ 139.3347051098901,
+ 35.77716190990991
+ ],
+ [
+ 139.3347051098901,
+ 35.77734209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNagasakiStationDori.1307.1",
+ "name": "東長崎駅通り",
+ "latitude": 35.728191,
+ "longitude": 139.681873,
+ "polygon": [
+ [
+ 139.6817631098901,
+ 35.72828109009009
+ ],
+ [
+ 139.68198289010988,
+ 35.72828109009009
+ ],
+ [
+ 139.68198289010988,
+ 35.72810090990991
+ ],
+ [
+ 139.6817631098901,
+ 35.72810090990991
+ ],
+ [
+ 139.6817631098901,
+ 35.72828109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fukushimabashi.1370.2",
+ "name": "福島橋",
+ "latitude": 35.672778,
+ "longitude": 139.829376,
+ "polygon": [
+ [
+ 139.8292661098901,
+ 35.67286809009009
+ ],
+ [
+ 139.82948589010988,
+ 35.67286809009009
+ ],
+ [
+ 139.82948589010988,
+ 35.67268790990991
+ ],
+ [
+ 139.8292661098901,
+ 35.67268790990991
+ ],
+ [
+ 139.8292661098901,
+ 35.67286809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNipporiSanchome.1308.1",
+ "name": "東日暮里三丁目",
+ "latitude": 35.729182,
+ "longitude": 139.778875,
+ "polygon": [
+ [
+ 139.77876510989012,
+ 35.72927209009009
+ ],
+ [
+ 139.77898489010988,
+ 35.72927209009009
+ ],
+ [
+ 139.77898489010988,
+ 35.72909190990991
+ ],
+ [
+ 139.77876510989012,
+ 35.72909190990991
+ ],
+ [
+ 139.77876510989012,
+ 35.72927209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNipporiSanchome.1308.2",
+ "name": "東日暮里三丁目",
+ "latitude": 35.728537,
+ "longitude": 139.779516,
+ "polygon": [
+ [
+ 139.77940610989012,
+ 35.72862709009009
+ ],
+ [
+ 139.77962589010988,
+ 35.72862709009009
+ ],
+ [
+ 139.77962589010988,
+ 35.72844690990991
+ ],
+ [
+ 139.77940610989012,
+ 35.72844690990991
+ ],
+ [
+ 139.77940610989012,
+ 35.72862709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNipporiSanchome.1308.3",
+ "name": "東日暮里三丁目",
+ "latitude": 35.727986,
+ "longitude": 139.778754,
+ "polygon": [
+ [
+ 139.7786441098901,
+ 35.72807609009009
+ ],
+ [
+ 139.77886389010988,
+ 35.72807609009009
+ ],
+ [
+ 139.77886389010988,
+ 35.72789590990991
+ ],
+ [
+ 139.7786441098901,
+ 35.72789590990991
+ ],
+ [
+ 139.7786441098901,
+ 35.72807609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNipporiSanchome.1308.4",
+ "name": "東日暮里三丁目",
+ "latitude": 35.728755,
+ "longitude": 139.777472,
+ "polygon": [
+ [
+ 139.7773621098901,
+ 35.72884509009009
+ ],
+ [
+ 139.77758189010987,
+ 35.72884509009009
+ ],
+ [
+ 139.77758189010987,
+ 35.72866490990991
+ ],
+ [
+ 139.7773621098901,
+ 35.72866490990991
+ ],
+ [
+ 139.7773621098901,
+ 35.72884509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNipporiYonchome.1309.1",
+ "name": "東日暮里四丁目",
+ "latitude": 35.726077,
+ "longitude": 139.778978,
+ "polygon": [
+ [
+ 139.7788681098901,
+ 35.72616709009009
+ ],
+ [
+ 139.77908789010988,
+ 35.72616709009009
+ ],
+ [
+ 139.77908789010988,
+ 35.725986909909906
+ ],
+ [
+ 139.7788681098901,
+ 35.725986909909906
+ ],
+ [
+ 139.7788681098901,
+ 35.72616709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNipporiYonchome.1309.2",
+ "name": "東日暮里四丁目",
+ "latitude": 35.725619,
+ "longitude": 139.778829,
+ "polygon": [
+ [
+ 139.77871910989012,
+ 35.72570909009009
+ ],
+ [
+ 139.77893889010988,
+ 35.72570909009009
+ ],
+ [
+ 139.77893889010988,
+ 35.72552890990991
+ ],
+ [
+ 139.77871910989012,
+ 35.72552890990991
+ ],
+ [
+ 139.77871910989012,
+ 35.72570909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNipporiGochome.1310.1",
+ "name": "東日暮里五丁目",
+ "latitude": 35.728561,
+ "longitude": 139.775565,
+ "polygon": [
+ [
+ 139.77545510989012,
+ 35.72865109009009
+ ],
+ [
+ 139.77567489010988,
+ 35.72865109009009
+ ],
+ [
+ 139.77567489010988,
+ 35.72847090990991
+ ],
+ [
+ 139.77545510989012,
+ 35.72847090990991
+ ],
+ [
+ 139.77545510989012,
+ 35.72865109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNipporiGochome.1310.2",
+ "name": "東日暮里五丁目",
+ "latitude": 35.728656,
+ "longitude": 139.775275,
+ "polygon": [
+ [
+ 139.7751651098901,
+ 35.72874609009009
+ ],
+ [
+ 139.77538489010988,
+ 35.72874609009009
+ ],
+ [
+ 139.77538489010988,
+ 35.72856590990991
+ ],
+ [
+ 139.7751651098901,
+ 35.72856590990991
+ ],
+ [
+ 139.7751651098901,
+ 35.72874609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNihombashiStation.1311.1",
+ "name": "東日本橋駅前",
+ "latitude": 35.691162,
+ "longitude": 139.78394,
+ "polygon": [
+ [
+ 139.78383010989012,
+ 35.69125209009009
+ ],
+ [
+ 139.78404989010988,
+ 35.69125209009009
+ ],
+ [
+ 139.78404989010988,
+ 35.69107190990991
+ ],
+ [
+ 139.78383010989012,
+ 35.69107190990991
+ ],
+ [
+ 139.78383010989012,
+ 35.69125209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaHirokoji.1316.1",
+ "name": "東向島広小路",
+ "latitude": 35.721795,
+ "longitude": 139.817773,
+ "polygon": [
+ [
+ 139.8176631098901,
+ 35.72188509009009
+ ],
+ [
+ 139.81788289010987,
+ 35.72188509009009
+ ],
+ [
+ 139.81788289010987,
+ 35.72170490990991
+ ],
+ [
+ 139.8176631098901,
+ 35.72170490990991
+ ],
+ [
+ 139.8176631098901,
+ 35.72188509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaHirokoji.1316.2",
+ "name": "東向島広小路",
+ "latitude": 35.721641,
+ "longitude": 139.819248,
+ "polygon": [
+ [
+ 139.8191381098901,
+ 35.72173109009009
+ ],
+ [
+ 139.81935789010987,
+ 35.72173109009009
+ ],
+ [
+ 139.81935789010987,
+ 35.72155090990991
+ ],
+ [
+ 139.8191381098901,
+ 35.72155090990991
+ ],
+ [
+ 139.8191381098901,
+ 35.72173109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNishibukuro.1346.2",
+ "name": "平井西袋",
+ "latitude": 35.713027,
+ "longitude": 139.837765,
+ "polygon": [
+ [
+ 139.8376551098901,
+ 35.71311709009009
+ ],
+ [
+ 139.83787489010987,
+ 35.71311709009009
+ ],
+ [
+ 139.83787489010987,
+ 35.71293690990991
+ ],
+ [
+ 139.8376551098901,
+ 35.71293690990991
+ ],
+ [
+ 139.8376551098901,
+ 35.71311709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaHirokoji.1316.3",
+ "name": "東向島広小路",
+ "latitude": 35.72185,
+ "longitude": 139.817548,
+ "polygon": [
+ [
+ 139.8174381098901,
+ 35.721940090090094
+ ],
+ [
+ 139.81765789010987,
+ 35.721940090090094
+ ],
+ [
+ 139.81765789010987,
+ 35.72175990990991
+ ],
+ [
+ 139.8174381098901,
+ 35.72175990990991
+ ],
+ [
+ 139.8174381098901,
+ 35.721940090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaHirokoji.1316.4",
+ "name": "東向島広小路",
+ "latitude": 35.720937,
+ "longitude": 139.819639,
+ "polygon": [
+ [
+ 139.8195291098901,
+ 35.72102709009009
+ ],
+ [
+ 139.81974889010988,
+ 35.72102709009009
+ ],
+ [
+ 139.81974889010988,
+ 35.72084690990991
+ ],
+ [
+ 139.8195291098901,
+ 35.72084690990991
+ ],
+ [
+ 139.8195291098901,
+ 35.72102709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaItchome.1317.1",
+ "name": "東向島一丁目",
+ "latitude": 35.720137,
+ "longitude": 139.815684,
+ "polygon": [
+ [
+ 139.81557410989012,
+ 35.72022709009009
+ ],
+ [
+ 139.8157938901099,
+ 35.72022709009009
+ ],
+ [
+ 139.8157938901099,
+ 35.72004690990991
+ ],
+ [
+ 139.81557410989012,
+ 35.72004690990991
+ ],
+ [
+ 139.81557410989012,
+ 35.72022709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaItchome.1317.2",
+ "name": "東向島一丁目",
+ "latitude": 35.720009,
+ "longitude": 139.815804,
+ "polygon": [
+ [
+ 139.81569410989013,
+ 35.72009909009009
+ ],
+ [
+ 139.8159138901099,
+ 35.72009909009009
+ ],
+ [
+ 139.8159138901099,
+ 35.71991890990991
+ ],
+ [
+ 139.81569410989013,
+ 35.71991890990991
+ ],
+ [
+ 139.81569410989013,
+ 35.72009909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYonchome.1323.2",
+ "name": "東四丁目",
+ "latitude": 35.654398,
+ "longitude": 139.713614,
+ "polygon": [
+ [
+ 139.71350410989012,
+ 35.65448809009009
+ ],
+ [
+ 139.7137238901099,
+ 35.65448809009009
+ ],
+ [
+ 139.7137238901099,
+ 35.65430790990991
+ ],
+ [
+ 139.71350410989012,
+ 35.65430790990991
+ ],
+ [
+ 139.71350410989012,
+ 35.65448809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaGochome.1318.1",
+ "name": "東向島五丁目",
+ "latitude": 35.725136,
+ "longitude": 139.821142,
+ "polygon": [
+ [
+ 139.82103210989013,
+ 35.72522609009009
+ ],
+ [
+ 139.8212518901099,
+ 35.72522609009009
+ ],
+ [
+ 139.8212518901099,
+ 35.72504590990991
+ ],
+ [
+ 139.82103210989013,
+ 35.72504590990991
+ ],
+ [
+ 139.82103210989013,
+ 35.72522609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaGochome.1318.2",
+ "name": "東向島五丁目",
+ "latitude": 35.725192,
+ "longitude": 139.821472,
+ "polygon": [
+ [
+ 139.82136210989012,
+ 35.72528209009009
+ ],
+ [
+ 139.82158189010988,
+ 35.72528209009009
+ ],
+ [
+ 139.82158189010988,
+ 35.72510190990991
+ ],
+ [
+ 139.82136210989012,
+ 35.72510190990991
+ ],
+ [
+ 139.82136210989012,
+ 35.72528209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaRokuchome.1319.1",
+ "name": "東向島六丁目",
+ "latitude": 35.727626,
+ "longitude": 139.82383,
+ "polygon": [
+ [
+ 139.8237201098901,
+ 35.72771609009009
+ ],
+ [
+ 139.82393989010987,
+ 35.72771609009009
+ ],
+ [
+ 139.82393989010987,
+ 35.72753590990991
+ ],
+ [
+ 139.8237201098901,
+ 35.72753590990991
+ ],
+ [
+ 139.8237201098901,
+ 35.72771609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiMukojimaRokuchome.1319.2",
+ "name": "東向島六丁目",
+ "latitude": 35.727387,
+ "longitude": 139.823842,
+ "polygon": [
+ [
+ 139.82373210989013,
+ 35.72747709009009
+ ],
+ [
+ 139.8239518901099,
+ 35.72747709009009
+ ],
+ [
+ 139.8239518901099,
+ 35.72729690990991
+ ],
+ [
+ 139.82373210989013,
+ 35.72729690990991
+ ],
+ [
+ 139.82373210989013,
+ 35.72747709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Higashiyamacho.1320.1",
+ "name": "東山町",
+ "latitude": 35.752987,
+ "longitude": 139.685338,
+ "polygon": [
+ [
+ 139.68522810989012,
+ 35.75307709009009
+ ],
+ [
+ 139.68544789010988,
+ 35.75307709009009
+ ],
+ [
+ 139.68544789010988,
+ 35.75289690990991
+ ],
+ [
+ 139.68522810989012,
+ 35.75289690990991
+ ],
+ [
+ 139.68522810989012,
+ 35.75307709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYamatoshiStation.1321.1",
+ "name": "東大和市駅前",
+ "latitude": 35.734726,
+ "longitude": 139.434951,
+ "polygon": [
+ [
+ 139.43484110989013,
+ 35.73481609009009
+ ],
+ [
+ 139.4350608901099,
+ 35.73481609009009
+ ],
+ [
+ 139.4350608901099,
+ 35.73463590990991
+ ],
+ [
+ 139.43484110989013,
+ 35.73463590990991
+ ],
+ [
+ 139.43484110989013,
+ 35.73481609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYamatoshiStation.1321.2",
+ "name": "東大和市駅前",
+ "latitude": 35.733763,
+ "longitude": 139.434235,
+ "polygon": [
+ [
+ 139.43412510989012,
+ 35.73385309009009
+ ],
+ [
+ 139.43434489010988,
+ 35.73385309009009
+ ],
+ [
+ 139.43434489010988,
+ 35.73367290990991
+ ],
+ [
+ 139.43412510989012,
+ 35.73367290990991
+ ],
+ [
+ 139.43412510989012,
+ 35.73385309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNichome.1322.1",
+ "name": "東二丁目",
+ "latitude": 35.65234,
+ "longitude": 139.709053,
+ "polygon": [
+ [
+ 139.70894310989013,
+ 35.65243009009009
+ ],
+ [
+ 139.7091628901099,
+ 35.65243009009009
+ ],
+ [
+ 139.7091628901099,
+ 35.65224990990991
+ ],
+ [
+ 139.70894310989013,
+ 35.65224990990991
+ ],
+ [
+ 139.70894310989013,
+ 35.65243009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiNichome.1322.2",
+ "name": "東二丁目",
+ "latitude": 35.652658,
+ "longitude": 139.708808,
+ "polygon": [
+ [
+ 139.70869810989012,
+ 35.65274809009009
+ ],
+ [
+ 139.7089178901099,
+ 35.65274809009009
+ ],
+ [
+ 139.7089178901099,
+ 35.65256790990991
+ ],
+ [
+ 139.70869810989012,
+ 35.65256790990991
+ ],
+ [
+ 139.70869810989012,
+ 35.65274809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYonchome.1323.1",
+ "name": "東四丁目",
+ "latitude": 35.655158,
+ "longitude": 139.713974,
+ "polygon": [
+ [
+ 139.71386410989012,
+ 35.65524809009009
+ ],
+ [
+ 139.7140838901099,
+ 35.65524809009009
+ ],
+ [
+ 139.7140838901099,
+ 35.65506790990991
+ ],
+ [
+ 139.71386410989012,
+ 35.65506790990991
+ ],
+ [
+ 139.71386410989012,
+ 35.65524809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hisamatsucho.1324.1",
+ "name": "久松町",
+ "latitude": 35.6876,
+ "longitude": 139.786831,
+ "polygon": [
+ [
+ 139.78672110989012,
+ 35.68769009009009
+ ],
+ [
+ 139.7869408901099,
+ 35.68769009009009
+ ],
+ [
+ 139.7869408901099,
+ 35.68750990990991
+ ],
+ [
+ 139.78672110989012,
+ 35.68750990990991
+ ],
+ [
+ 139.78672110989012,
+ 35.68769009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HitokuchiZaka.1325.1",
+ "name": "一口坂",
+ "latitude": 35.692447,
+ "longitude": 139.740553,
+ "polygon": [
+ [
+ 139.74044310989012,
+ 35.69253709009009
+ ],
+ [
+ 139.7406628901099,
+ 35.69253709009009
+ ],
+ [
+ 139.7406628901099,
+ 35.69235690990991
+ ],
+ [
+ 139.74044310989012,
+ 35.69235690990991
+ ],
+ [
+ 139.74044310989012,
+ 35.69253709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HitokuchiZaka.1325.2",
+ "name": "一口坂",
+ "latitude": 35.6922,
+ "longitude": 139.740389,
+ "polygon": [
+ [
+ 139.7402791098901,
+ 35.69229009009009
+ ],
+ [
+ 139.74049889010988,
+ 35.69229009009009
+ ],
+ [
+ 139.74049889010988,
+ 35.69210990990991
+ ],
+ [
+ 139.7402791098901,
+ 35.69210990990991
+ ],
+ [
+ 139.7402791098901,
+ 35.69229009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hitotsubashi.1326.1",
+ "name": "一ツ橋",
+ "latitude": 35.692427,
+ "longitude": 139.758972,
+ "polygon": [
+ [
+ 139.75886210989012,
+ 35.69251709009009
+ ],
+ [
+ 139.75908189010988,
+ 35.69251709009009
+ ],
+ [
+ 139.75908189010988,
+ 35.69233690990991
+ ],
+ [
+ 139.75886210989012,
+ 35.69233690990991
+ ],
+ [
+ 139.75886210989012,
+ 35.69251709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hitotsubashi.1326.2",
+ "name": "一ツ橋",
+ "latitude": 35.693259,
+ "longitude": 139.758503,
+ "polygon": [
+ [
+ 139.7583931098901,
+ 35.69334909009009
+ ],
+ [
+ 139.75861289010987,
+ 35.69334909009009
+ ],
+ [
+ 139.75861289010987,
+ 35.69316890990991
+ ],
+ [
+ 139.7583931098901,
+ 35.69316890990991
+ ],
+ [
+ 139.7583931098901,
+ 35.69334909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaiganNichome.1332.1",
+ "name": "海岸二丁目",
+ "latitude": 35.647977,
+ "longitude": 139.757548,
+ "polygon": [
+ [
+ 139.75743810989013,
+ 35.64806709009009
+ ],
+ [
+ 139.7576578901099,
+ 35.64806709009009
+ ],
+ [
+ 139.7576578901099,
+ 35.64788690990991
+ ],
+ [
+ 139.75743810989013,
+ 35.64788690990991
+ ],
+ [
+ 139.75743810989013,
+ 35.64806709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaiganNichome.1332.2",
+ "name": "海岸二丁目",
+ "latitude": 35.647658,
+ "longitude": 139.757832,
+ "polygon": [
+ [
+ 139.75772210989012,
+ 35.64774809009009
+ ],
+ [
+ 139.7579418901099,
+ 35.64774809009009
+ ],
+ [
+ 139.7579418901099,
+ 35.64756790990991
+ ],
+ [
+ 139.75772210989012,
+ 35.64756790990991
+ ],
+ [
+ 139.75772210989012,
+ 35.64774809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hibiya.1336.6",
+ "name": "日比谷",
+ "latitude": 35.674459,
+ "longitude": 139.760511,
+ "polygon": [
+ [
+ 139.76040110989013,
+ 35.67454909009009
+ ],
+ [
+ 139.7606208901099,
+ 35.67454909009009
+ ],
+ [
+ 139.7606208901099,
+ 35.67436890990991
+ ],
+ [
+ 139.76040110989013,
+ 35.67436890990991
+ ],
+ [
+ 139.76040110989013,
+ 35.67454909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hibiya.1336.7",
+ "name": "日比谷",
+ "latitude": 35.67441,
+ "longitude": 139.760094,
+ "polygon": [
+ [
+ 139.75998410989013,
+ 35.67450009009009
+ ],
+ [
+ 139.7602038901099,
+ 35.67450009009009
+ ],
+ [
+ 139.7602038901099,
+ 35.67431990990991
+ ],
+ [
+ 139.75998410989013,
+ 35.67431990990991
+ ],
+ [
+ 139.75998410989013,
+ 35.67450009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hyakkaen.1339.1",
+ "name": "百花園前",
+ "latitude": 35.724461,
+ "longitude": 139.816195,
+ "polygon": [
+ [
+ 139.8160851098901,
+ 35.72455109009009
+ ],
+ [
+ 139.81630489010988,
+ 35.72455109009009
+ ],
+ [
+ 139.81630489010988,
+ 35.72437090990991
+ ],
+ [
+ 139.8160851098901,
+ 35.72437090990991
+ ],
+ [
+ 139.8160851098901,
+ 35.72455109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hyakkaen.1339.2",
+ "name": "百花園前",
+ "latitude": 35.724289,
+ "longitude": 139.816664,
+ "polygon": [
+ [
+ 139.81655410989012,
+ 35.72437909009009
+ ],
+ [
+ 139.81677389010989,
+ 35.72437909009009
+ ],
+ [
+ 139.81677389010989,
+ 35.72419890990991
+ ],
+ [
+ 139.81655410989012,
+ 35.72419890990991
+ ],
+ [
+ 139.81655410989012,
+ 35.72437909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokanedaiStation.1340.1",
+ "name": "白金台駅前",
+ "latitude": 35.637856,
+ "longitude": 139.72576,
+ "polygon": [
+ [
+ 139.72565010989013,
+ 35.63794609009009
+ ],
+ [
+ 139.7258698901099,
+ 35.63794609009009
+ ],
+ [
+ 139.7258698901099,
+ 35.63776590990991
+ ],
+ [
+ 139.72565010989013,
+ 35.63776590990991
+ ],
+ [
+ 139.72565010989013,
+ 35.63794609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNichome.1348.1",
+ "name": "平井二丁目",
+ "latitude": 35.699698,
+ "longitude": 139.844672,
+ "polygon": [
+ [
+ 139.84456210989012,
+ 35.69978809009009
+ ],
+ [
+ 139.84478189010989,
+ 35.69978809009009
+ ],
+ [
+ 139.84478189010989,
+ 35.69960790990991
+ ],
+ [
+ 139.84456210989012,
+ 35.69960790990991
+ ],
+ [
+ 139.84456210989012,
+ 35.69978809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokanedaiStation.1340.2",
+ "name": "白金台駅前",
+ "latitude": 35.638114,
+ "longitude": 139.726825,
+ "polygon": [
+ [
+ 139.7267151098901,
+ 35.63820409009009
+ ],
+ [
+ 139.72693489010987,
+ 35.63820409009009
+ ],
+ [
+ 139.72693489010987,
+ 35.63802390990991
+ ],
+ [
+ 139.7267151098901,
+ 35.63802390990991
+ ],
+ [
+ 139.7267151098901,
+ 35.63820409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiStation.1341.1",
+ "name": "平井駅前",
+ "latitude": 35.706789,
+ "longitude": 139.841793,
+ "polygon": [
+ [
+ 139.8416831098901,
+ 35.70687909009009
+ ],
+ [
+ 139.84190289010988,
+ 35.70687909009009
+ ],
+ [
+ 139.84190289010988,
+ 35.70669890990991
+ ],
+ [
+ 139.8416831098901,
+ 35.70669890990991
+ ],
+ [
+ 139.8416831098901,
+ 35.70687909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiStation.1341.2",
+ "name": "平井駅前",
+ "latitude": 35.706699,
+ "longitude": 139.842209,
+ "polygon": [
+ [
+ 139.8420991098901,
+ 35.70678909009009
+ ],
+ [
+ 139.84231889010988,
+ 35.70678909009009
+ ],
+ [
+ 139.84231889010988,
+ 35.70660890990991
+ ],
+ [
+ 139.8420991098901,
+ 35.70660890990991
+ ],
+ [
+ 139.8420991098901,
+ 35.70678909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiStation.1341.5",
+ "name": "平井駅前",
+ "latitude": 35.706642,
+ "longitude": 139.841957,
+ "polygon": [
+ [
+ 139.84184710989013,
+ 35.70673209009009
+ ],
+ [
+ 139.8420668901099,
+ 35.70673209009009
+ ],
+ [
+ 139.8420668901099,
+ 35.70655190990991
+ ],
+ [
+ 139.84184710989013,
+ 35.70655190990991
+ ],
+ [
+ 139.84184710989013,
+ 35.70673209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiStationMinamiguchi.1342.3",
+ "name": "平井駅南口",
+ "latitude": 35.706366,
+ "longitude": 139.843044,
+ "polygon": [
+ [
+ 139.8429341098901,
+ 35.70645609009009
+ ],
+ [
+ 139.84315389010987,
+ 35.70645609009009
+ ],
+ [
+ 139.84315389010987,
+ 35.70627590990991
+ ],
+ [
+ 139.8429341098901,
+ 35.70627590990991
+ ],
+ [
+ 139.8429341098901,
+ 35.70645609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooStation.1357.2",
+ "name": "広尾駅前(広尾橋)",
+ "latitude": 35.649986,
+ "longitude": 139.722347,
+ "polygon": [
+ [
+ 139.72223710989013,
+ 35.65007609009009
+ ],
+ [
+ 139.7224568901099,
+ 35.65007609009009
+ ],
+ [
+ 139.7224568901099,
+ 35.64989590990991
+ ],
+ [
+ 139.72223710989013,
+ 35.64989590990991
+ ],
+ [
+ 139.72223710989013,
+ 35.65007609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiShogakko.1343.1",
+ "name": "平井小学校前",
+ "latitude": 35.710103,
+ "longitude": 139.84156,
+ "polygon": [
+ [
+ 139.8414501098901,
+ 35.71019309009009
+ ],
+ [
+ 139.84166989010987,
+ 35.71019309009009
+ ],
+ [
+ 139.84166989010987,
+ 35.710012909909906
+ ],
+ [
+ 139.8414501098901,
+ 35.710012909909906
+ ],
+ [
+ 139.8414501098901,
+ 35.71019309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiShogakko.1343.2",
+ "name": "平井小学校前",
+ "latitude": 35.710014,
+ "longitude": 139.841875,
+ "polygon": [
+ [
+ 139.8417651098901,
+ 35.71010409009009
+ ],
+ [
+ 139.84198489010987,
+ 35.71010409009009
+ ],
+ [
+ 139.84198489010987,
+ 35.70992390990991
+ ],
+ [
+ 139.8417651098901,
+ 35.70992390990991
+ ],
+ [
+ 139.8417651098901,
+ 35.71010409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiSoshajo.1344.1",
+ "name": "平井操車所",
+ "latitude": 35.71132,
+ "longitude": 139.839838,
+ "polygon": [
+ [
+ 139.8397281098901,
+ 35.71141009009009
+ ],
+ [
+ 139.83994789010987,
+ 35.71141009009009
+ ],
+ [
+ 139.83994789010987,
+ 35.71122990990991
+ ],
+ [
+ 139.8397281098901,
+ 35.71122990990991
+ ],
+ [
+ 139.8397281098901,
+ 35.71141009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiSoshajo.1344.2",
+ "name": "平井操車所",
+ "latitude": 35.71135,
+ "longitude": 139.839665,
+ "polygon": [
+ [
+ 139.8395551098901,
+ 35.71144009009009
+ ],
+ [
+ 139.83977489010988,
+ 35.71144009009009
+ ],
+ [
+ 139.83977489010988,
+ 35.71125990990991
+ ],
+ [
+ 139.8395551098901,
+ 35.71125990990991
+ ],
+ [
+ 139.8395551098901,
+ 35.71144009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiToeiApato.1345.1",
+ "name": "平井都営アパート前",
+ "latitude": 35.702695,
+ "longitude": 139.840247,
+ "polygon": [
+ [
+ 139.84013710989012,
+ 35.70278509009009
+ ],
+ [
+ 139.8403568901099,
+ 35.70278509009009
+ ],
+ [
+ 139.8403568901099,
+ 35.70260490990991
+ ],
+ [
+ 139.84013710989012,
+ 35.70260490990991
+ ],
+ [
+ 139.84013710989012,
+ 35.70278509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNishibukuro.1346.1",
+ "name": "平井西袋",
+ "latitude": 35.71253,
+ "longitude": 139.838301,
+ "polygon": [
+ [
+ 139.83819110989012,
+ 35.71262009009009
+ ],
+ [
+ 139.83841089010988,
+ 35.71262009009009
+ ],
+ [
+ 139.83841089010988,
+ 35.71243990990991
+ ],
+ [
+ 139.83819110989012,
+ 35.71243990990991
+ ],
+ [
+ 139.83819110989012,
+ 35.71262009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiRokuchome.1349.1",
+ "name": "平井六丁目",
+ "latitude": 35.711787,
+ "longitude": 139.841957,
+ "polygon": [
+ [
+ 139.84184710989013,
+ 35.71187709009009
+ ],
+ [
+ 139.8420668901099,
+ 35.71187709009009
+ ],
+ [
+ 139.8420668901099,
+ 35.71169690990991
+ ],
+ [
+ 139.84184710989013,
+ 35.71169690990991
+ ],
+ [
+ 139.84184710989013,
+ 35.71187709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiRokuchome.1349.2",
+ "name": "平井六丁目",
+ "latitude": 35.712451,
+ "longitude": 139.842213,
+ "polygon": [
+ [
+ 139.8421031098901,
+ 35.71254109009009
+ ],
+ [
+ 139.84232289010987,
+ 35.71254109009009
+ ],
+ [
+ 139.84232289010987,
+ 35.71236090990991
+ ],
+ [
+ 139.8421031098901,
+ 35.71236090990991
+ ],
+ [
+ 139.8421031098901,
+ 35.71254109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNanachome.1350.1",
+ "name": "平井七丁目",
+ "latitude": 35.714891,
+ "longitude": 139.842325,
+ "polygon": [
+ [
+ 139.8422151098901,
+ 35.71498109009009
+ ],
+ [
+ 139.84243489010987,
+ 35.71498109009009
+ ],
+ [
+ 139.84243489010987,
+ 35.71480090990991
+ ],
+ [
+ 139.8422151098901,
+ 35.71480090990991
+ ],
+ [
+ 139.8422151098901,
+ 35.71498109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNanachome.1350.2",
+ "name": "平井七丁目",
+ "latitude": 35.714807,
+ "longitude": 139.84224,
+ "polygon": [
+ [
+ 139.84213010989012,
+ 35.71489709009009
+ ],
+ [
+ 139.8423498901099,
+ 35.71489709009009
+ ],
+ [
+ 139.8423498901099,
+ 35.71471690990991
+ ],
+ [
+ 139.84213010989012,
+ 35.71471690990991
+ ],
+ [
+ 139.84213010989012,
+ 35.71489709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiranoItchome.1354.2",
+ "name": "平野一丁目",
+ "latitude": 35.678894,
+ "longitude": 139.798684,
+ "polygon": [
+ [
+ 139.79857410989013,
+ 35.67898409009009
+ ],
+ [
+ 139.7987938901099,
+ 35.67898409009009
+ ],
+ [
+ 139.7987938901099,
+ 35.67880390990991
+ ],
+ [
+ 139.79857410989013,
+ 35.67880390990991
+ ],
+ [
+ 139.79857410989013,
+ 35.67898409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNanachomeKitaKoen.1351.1",
+ "name": "平井七丁目北公園前",
+ "latitude": 35.716774,
+ "longitude": 139.837775,
+ "polygon": [
+ [
+ 139.8376651098901,
+ 35.71686409009009
+ ],
+ [
+ 139.83788489010988,
+ 35.71686409009009
+ ],
+ [
+ 139.83788489010988,
+ 35.71668390990991
+ ],
+ [
+ 139.8376651098901,
+ 35.71668390990991
+ ],
+ [
+ 139.8376651098901,
+ 35.71686409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNanachomeKitaKoen.1351.2",
+ "name": "平井七丁目北公園前",
+ "latitude": 35.716649,
+ "longitude": 139.837929,
+ "polygon": [
+ [
+ 139.83781910989012,
+ 35.71673909009009
+ ],
+ [
+ 139.83803889010989,
+ 35.71673909009009
+ ],
+ [
+ 139.83803889010989,
+ 35.71655890990991
+ ],
+ [
+ 139.83781910989012,
+ 35.71655890990991
+ ],
+ [
+ 139.83781910989012,
+ 35.71673909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirakawachoNichome.1353.1",
+ "name": "平河町二丁目",
+ "latitude": 35.680732,
+ "longitude": 139.738284,
+ "polygon": [
+ [
+ 139.7381741098901,
+ 35.68082209009009
+ ],
+ [
+ 139.73839389010988,
+ 35.68082209009009
+ ],
+ [
+ 139.73839389010988,
+ 35.68064190990991
+ ],
+ [
+ 139.7381741098901,
+ 35.68064190990991
+ ],
+ [
+ 139.7381741098901,
+ 35.68082209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirakawachoNichome.1353.2",
+ "name": "平河町二丁目",
+ "latitude": 35.68104,
+ "longitude": 139.73832,
+ "polygon": [
+ [
+ 139.7382101098901,
+ 35.68113009009009
+ ],
+ [
+ 139.73842989010987,
+ 35.68113009009009
+ ],
+ [
+ 139.73842989010987,
+ 35.68094990990991
+ ],
+ [
+ 139.7382101098901,
+ 35.68094990990991
+ ],
+ [
+ 139.7382101098901,
+ 35.68113009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiranoItchome.1354.1",
+ "name": "平野一丁目",
+ "latitude": 35.6787,
+ "longitude": 139.798262,
+ "polygon": [
+ [
+ 139.7981521098901,
+ 35.67879009009009
+ ],
+ [
+ 139.79837189010988,
+ 35.67879009009009
+ ],
+ [
+ 139.79837189010988,
+ 35.67860990990991
+ ],
+ [
+ 139.7981521098901,
+ 35.67860990990991
+ ],
+ [
+ 139.7981521098901,
+ 35.67879009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hiramatsu.1355.1",
+ "name": "平松",
+ "latitude": 35.785119,
+ "longitude": 139.310835,
+ "polygon": [
+ [
+ 139.31072510989011,
+ 35.78520909009009
+ ],
+ [
+ 139.31094489010988,
+ 35.78520909009009
+ ],
+ [
+ 139.31094489010988,
+ 35.78502890990991
+ ],
+ [
+ 139.31072510989011,
+ 35.78502890990991
+ ],
+ [
+ 139.31072510989011,
+ 35.78520909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hiramatsu.1355.2",
+ "name": "平松",
+ "latitude": 35.785121,
+ "longitude": 139.310824,
+ "polygon": [
+ [
+ 139.3107141098901,
+ 35.78521109009009
+ ],
+ [
+ 139.31093389010988,
+ 35.78521109009009
+ ],
+ [
+ 139.31093389010988,
+ 35.785030909909906
+ ],
+ [
+ 139.3107141098901,
+ 35.785030909909906
+ ],
+ [
+ 139.3107141098901,
+ 35.78521109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooKoko.1356.1",
+ "name": "広尾高校前",
+ "latitude": 35.653095,
+ "longitude": 139.713432,
+ "polygon": [
+ [
+ 139.71332210989013,
+ 35.65318509009009
+ ],
+ [
+ 139.7135418901099,
+ 35.65318509009009
+ ],
+ [
+ 139.7135418901099,
+ 35.65300490990991
+ ],
+ [
+ 139.71332210989013,
+ 35.65300490990991
+ ],
+ [
+ 139.71332210989013,
+ 35.65318509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooKoko.1356.2",
+ "name": "広尾高校前",
+ "latitude": 35.65242,
+ "longitude": 139.713463,
+ "polygon": [
+ [
+ 139.7133531098901,
+ 35.65251009009009
+ ],
+ [
+ 139.71357289010987,
+ 35.65251009009009
+ ],
+ [
+ 139.71357289010987,
+ 35.65232990990991
+ ],
+ [
+ 139.7133531098901,
+ 35.65232990990991
+ ],
+ [
+ 139.7133531098901,
+ 35.65251009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooStation.1357.1",
+ "name": "広尾駅前(広尾橋)",
+ "latitude": 35.650336,
+ "longitude": 139.722509,
+ "polygon": [
+ [
+ 139.72239910989012,
+ 35.65042609009009
+ ],
+ [
+ 139.72261889010989,
+ 35.65042609009009
+ ],
+ [
+ 139.72261889010989,
+ 35.65024590990991
+ ],
+ [
+ 139.72239910989012,
+ 35.65024590990991
+ ],
+ [
+ 139.72239910989012,
+ 35.65042609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooStation.1357.3",
+ "name": "広尾駅前(広尾橋)",
+ "latitude": 35.649525,
+ "longitude": 139.722438,
+ "polygon": [
+ [
+ 139.72232810989013,
+ 35.64961509009009
+ ],
+ [
+ 139.7225478901099,
+ 35.64961509009009
+ ],
+ [
+ 139.7225478901099,
+ 35.64943490990991
+ ],
+ [
+ 139.72232810989013,
+ 35.64943490990991
+ ],
+ [
+ 139.72232810989013,
+ 35.64961509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooByoin.1358.8",
+ "name": "広尾病院前",
+ "latitude": 35.647892,
+ "longitude": 139.722364,
+ "polygon": [
+ [
+ 139.72225410989012,
+ 35.64798209009009
+ ],
+ [
+ 139.72247389010988,
+ 35.64798209009009
+ ],
+ [
+ 139.72247389010988,
+ 35.64780190990991
+ ],
+ [
+ 139.72225410989012,
+ 35.64780190990991
+ ],
+ [
+ 139.72225410989012,
+ 35.64798209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooByoin.1358.9",
+ "name": "広尾病院前",
+ "latitude": 35.647901,
+ "longitude": 139.721452,
+ "polygon": [
+ [
+ 139.72134210989012,
+ 35.64799109009009
+ ],
+ [
+ 139.72156189010988,
+ 35.64799109009009
+ ],
+ [
+ 139.72156189010988,
+ 35.64781090990991
+ ],
+ [
+ 139.72134210989012,
+ 35.64781090990991
+ ],
+ [
+ 139.72134210989012,
+ 35.64799109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooItchome.1359.1",
+ "name": "広尾一丁目",
+ "latitude": 35.648549,
+ "longitude": 139.717094,
+ "polygon": [
+ [
+ 139.71698410989012,
+ 35.64863909009009
+ ],
+ [
+ 139.7172038901099,
+ 35.64863909009009
+ ],
+ [
+ 139.7172038901099,
+ 35.64845890990991
+ ],
+ [
+ 139.71698410989012,
+ 35.64845890990991
+ ],
+ [
+ 139.71698410989012,
+ 35.64863909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooItchome.1359.2",
+ "name": "広尾一丁目",
+ "latitude": 35.648848,
+ "longitude": 139.717662,
+ "polygon": [
+ [
+ 139.7175521098901,
+ 35.64893809009009
+ ],
+ [
+ 139.71777189010987,
+ 35.64893809009009
+ ],
+ [
+ 139.71777189010987,
+ 35.64875790990991
+ ],
+ [
+ 139.7175521098901,
+ 35.64875790990991
+ ],
+ [
+ 139.7175521098901,
+ 35.64893809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaShakoIriguchi.1361.1",
+ "name": "深川車庫入口",
+ "latitude": 35.645617,
+ "longitude": 139.801075,
+ "polygon": [
+ [
+ 139.80096510989011,
+ 35.64570709009009
+ ],
+ [
+ 139.80118489010988,
+ 35.64570709009009
+ ],
+ [
+ 139.80118489010988,
+ 35.64552690990991
+ ],
+ [
+ 139.80096510989011,
+ 35.64552690990991
+ ],
+ [
+ 139.80096510989011,
+ 35.64570709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaShakoIriguchi.1361.2",
+ "name": "深川車庫入口",
+ "latitude": 35.645461,
+ "longitude": 139.801311,
+ "polygon": [
+ [
+ 139.80120110989012,
+ 35.64555109009009
+ ],
+ [
+ 139.80142089010988,
+ 35.64555109009009
+ ],
+ [
+ 139.80142089010988,
+ 35.64537090990991
+ ],
+ [
+ 139.80120110989012,
+ 35.64537090990991
+ ],
+ [
+ 139.80120110989012,
+ 35.64555109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaShakoIriguchi.1361.3",
+ "name": "深川車庫入口",
+ "latitude": 35.645147,
+ "longitude": 139.802205,
+ "polygon": [
+ [
+ 139.8020951098901,
+ 35.64523709009009
+ ],
+ [
+ 139.80231489010987,
+ 35.64523709009009
+ ],
+ [
+ 139.80231489010987,
+ 35.64505690990991
+ ],
+ [
+ 139.8020951098901,
+ 35.64505690990991
+ ],
+ [
+ 139.8020951098901,
+ 35.64523709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaShako.1362.2",
+ "name": "深川車庫前",
+ "latitude": 35.643119,
+ "longitude": 139.802526,
+ "polygon": [
+ [
+ 139.80241610989012,
+ 35.64320909009009
+ ],
+ [
+ 139.80263589010988,
+ 35.64320909009009
+ ],
+ [
+ 139.80263589010988,
+ 35.64302890990991
+ ],
+ [
+ 139.80241610989012,
+ 35.64302890990991
+ ],
+ [
+ 139.80241610989012,
+ 35.64320909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaShako.1362.3",
+ "name": "深川車庫前",
+ "latitude": 35.643136,
+ "longitude": 139.802599,
+ "polygon": [
+ [
+ 139.8024891098901,
+ 35.64322609009009
+ ],
+ [
+ 139.80270889010987,
+ 35.64322609009009
+ ],
+ [
+ 139.80270889010987,
+ 35.64304590990991
+ ],
+ [
+ 139.8024891098901,
+ 35.64304590990991
+ ],
+ [
+ 139.8024891098901,
+ 35.64322609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fukushimabashi.1370.1",
+ "name": "福島橋",
+ "latitude": 35.67294,
+ "longitude": 139.828537,
+ "polygon": [
+ [
+ 139.82842710989013,
+ 35.67303009009009
+ ],
+ [
+ 139.8286468901099,
+ 35.67303009009009
+ ],
+ [
+ 139.8286468901099,
+ 35.67284990990991
+ ],
+ [
+ 139.82842710989013,
+ 35.67284990990991
+ ],
+ [
+ 139.82842710989013,
+ 35.67303009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fukujimbashi.1371.1",
+ "name": "福神橋",
+ "latitude": 35.705078,
+ "longitude": 139.825351,
+ "polygon": [
+ [
+ 139.82524110989013,
+ 35.70516809009009
+ ],
+ [
+ 139.8254608901099,
+ 35.70516809009009
+ ],
+ [
+ 139.8254608901099,
+ 35.70498790990991
+ ],
+ [
+ 139.82524110989013,
+ 35.70498790990991
+ ],
+ [
+ 139.82524110989013,
+ 35.70516809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaShako.1362.4",
+ "name": "深川車庫前",
+ "latitude": 35.643281,
+ "longitude": 139.802619,
+ "polygon": [
+ [
+ 139.8025091098901,
+ 35.64337109009009
+ ],
+ [
+ 139.80272889010988,
+ 35.64337109009009
+ ],
+ [
+ 139.80272889010988,
+ 35.64319090990991
+ ],
+ [
+ 139.8025091098901,
+ 35.64319090990991
+ ],
+ [
+ 139.8025091098901,
+ 35.64337109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaDaihachiChugakko.1363.1",
+ "name": "深川第八中学校前",
+ "latitude": 35.663924,
+ "longitude": 139.811531,
+ "polygon": [
+ [
+ 139.81142110989012,
+ 35.66401409009009
+ ],
+ [
+ 139.81164089010989,
+ 35.66401409009009
+ ],
+ [
+ 139.81164089010989,
+ 35.66383390990991
+ ],
+ [
+ 139.81142110989012,
+ 35.66383390990991
+ ],
+ [
+ 139.81142110989012,
+ 35.66401409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaDaihachiChugakko.1363.2",
+ "name": "深川第八中学校前",
+ "latitude": 35.664187,
+ "longitude": 139.810773,
+ "polygon": [
+ [
+ 139.81066310989013,
+ 35.66427709009009
+ ],
+ [
+ 139.8108828901099,
+ 35.66427709009009
+ ],
+ [
+ 139.8108828901099,
+ 35.66409690990991
+ ],
+ [
+ 139.81066310989013,
+ 35.66409690990991
+ ],
+ [
+ 139.81066310989013,
+ 35.66427709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaItchome.1364.2",
+ "name": "深川一丁目",
+ "latitude": 35.675189,
+ "longitude": 139.797111,
+ "polygon": [
+ [
+ 139.79700110989012,
+ 35.67527909009009
+ ],
+ [
+ 139.79722089010988,
+ 35.67527909009009
+ ],
+ [
+ 139.79722089010988,
+ 35.67509890990991
+ ],
+ [
+ 139.79700110989012,
+ 35.67509890990991
+ ],
+ [
+ 139.79700110989012,
+ 35.67527909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaItchome.1364.3",
+ "name": "深川一丁目",
+ "latitude": 35.675528,
+ "longitude": 139.796335,
+ "polygon": [
+ [
+ 139.79622510989012,
+ 35.67561809009009
+ ],
+ [
+ 139.79644489010988,
+ 35.67561809009009
+ ],
+ [
+ 139.79644489010988,
+ 35.67543790990991
+ ],
+ [
+ 139.79622510989012,
+ 35.67543790990991
+ ],
+ [
+ 139.79622510989012,
+ 35.67561809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaItchome.1364.4",
+ "name": "深川一丁目",
+ "latitude": 35.675039,
+ "longitude": 139.79738,
+ "polygon": [
+ [
+ 139.79727010989012,
+ 35.67512909009009
+ ],
+ [
+ 139.7974898901099,
+ 35.67512909009009
+ ],
+ [
+ 139.7974898901099,
+ 35.67494890990991
+ ],
+ [
+ 139.79727010989012,
+ 35.67494890990991
+ ],
+ [
+ 139.79727010989012,
+ 35.67512909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaNichome.1365.1",
+ "name": "深川二丁目",
+ "latitude": 35.676728,
+ "longitude": 139.796667,
+ "polygon": [
+ [
+ 139.79655710989013,
+ 35.67681809009009
+ ],
+ [
+ 139.7967768901099,
+ 35.67681809009009
+ ],
+ [
+ 139.7967768901099,
+ 35.67663790990991
+ ],
+ [
+ 139.79655710989013,
+ 35.67663790990991
+ ],
+ [
+ 139.79655710989013,
+ 35.67681809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaNichome.1365.2",
+ "name": "深川二丁目",
+ "latitude": 35.676814,
+ "longitude": 139.796991,
+ "polygon": [
+ [
+ 139.7968811098901,
+ 35.67690409009009
+ ],
+ [
+ 139.79710089010987,
+ 35.67690409009009
+ ],
+ [
+ 139.79710089010987,
+ 35.67672390990991
+ ],
+ [
+ 139.7968811098901,
+ 35.67672390990991
+ ],
+ [
+ 139.7968811098901,
+ 35.67690409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaNichome.1365.3",
+ "name": "深川二丁目",
+ "latitude": 35.675073,
+ "longitude": 139.798756,
+ "polygon": [
+ [
+ 139.79864610989011,
+ 35.67516309009009
+ ],
+ [
+ 139.79886589010988,
+ 35.67516309009009
+ ],
+ [
+ 139.79886589010988,
+ 35.67498290990991
+ ],
+ [
+ 139.79864610989011,
+ 35.67498290990991
+ ],
+ [
+ 139.79864610989011,
+ 35.67516309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaNichome.1365.4",
+ "name": "深川二丁目",
+ "latitude": 35.675299,
+ "longitude": 139.800419,
+ "polygon": [
+ [
+ 139.80030910989012,
+ 35.67538909009009
+ ],
+ [
+ 139.8005288901099,
+ 35.67538909009009
+ ],
+ [
+ 139.8005288901099,
+ 35.67520890990991
+ ],
+ [
+ 139.80030910989012,
+ 35.67520890990991
+ ],
+ [
+ 139.80030910989012,
+ 35.67538909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fukiage.1368.1",
+ "name": "吹上",
+ "latitude": 35.798379,
+ "longitude": 139.281194,
+ "polygon": [
+ [
+ 139.28108410989012,
+ 35.79846909009009
+ ],
+ [
+ 139.28130389010988,
+ 35.79846909009009
+ ],
+ [
+ 139.28130389010988,
+ 35.79828890990991
+ ],
+ [
+ 139.28108410989012,
+ 35.79828890990991
+ ],
+ [
+ 139.28108410989012,
+ 35.79846909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fukiage.1368.2",
+ "name": "吹上",
+ "latitude": 35.798339,
+ "longitude": 139.281336,
+ "polygon": [
+ [
+ 139.28122610989013,
+ 35.79842909009009
+ ],
+ [
+ 139.2814458901099,
+ 35.79842909009009
+ ],
+ [
+ 139.2814458901099,
+ 35.79824890990991
+ ],
+ [
+ 139.28122610989013,
+ 35.79824890990991
+ ],
+ [
+ 139.28122610989013,
+ 35.79842909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fukujimbashi.1371.2",
+ "name": "福神橋",
+ "latitude": 35.704383,
+ "longitude": 139.825882,
+ "polygon": [
+ [
+ 139.82577210989012,
+ 35.70447309009009
+ ],
+ [
+ 139.8259918901099,
+ 35.70447309009009
+ ],
+ [
+ 139.8259918901099,
+ 35.70429290990991
+ ],
+ [
+ 139.82577210989012,
+ 35.70429290990991
+ ],
+ [
+ 139.82577210989012,
+ 35.70447309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FujimichoToeiJutaku.1373.1",
+ "name": "富士見町都営住宅前",
+ "latitude": 35.760128,
+ "longitude": 139.70062,
+ "polygon": [
+ [
+ 139.7005101098901,
+ 35.76021809009009
+ ],
+ [
+ 139.70072989010987,
+ 35.76021809009009
+ ],
+ [
+ 139.70072989010987,
+ 35.76003790990991
+ ],
+ [
+ 139.7005101098901,
+ 35.76003790990991
+ ],
+ [
+ 139.7005101098901,
+ 35.76021809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FujimichoToeiJutaku.1373.2",
+ "name": "富士見町都営住宅前",
+ "latitude": 35.759839,
+ "longitude": 139.699967,
+ "polygon": [
+ [
+ 139.6998571098901,
+ 35.75992909009009
+ ],
+ [
+ 139.70007689010987,
+ 35.75992909009009
+ ],
+ [
+ 139.70007689010987,
+ 35.75974890990991
+ ],
+ [
+ 139.6998571098901,
+ 35.75974890990991
+ ],
+ [
+ 139.6998571098901,
+ 35.75992909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FutoDori.1375.1",
+ "name": "埠頭通り",
+ "latitude": 35.624605,
+ "longitude": 139.756243,
+ "polygon": [
+ [
+ 139.75613310989013,
+ 35.62469509009009
+ ],
+ [
+ 139.7563528901099,
+ 35.62469509009009
+ ],
+ [
+ 139.7563528901099,
+ 35.62451490990991
+ ],
+ [
+ 139.75613310989013,
+ 35.62451490990991
+ ],
+ [
+ 139.75613310989013,
+ 35.62469509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Furukawabashi.1380.1",
+ "name": "古川橋",
+ "latitude": 35.64716,
+ "longitude": 139.736061,
+ "polygon": [
+ [
+ 139.73595110989012,
+ 35.64725009009009
+ ],
+ [
+ 139.7361708901099,
+ 35.64725009009009
+ ],
+ [
+ 139.7361708901099,
+ 35.64706990990991
+ ],
+ [
+ 139.73595110989012,
+ 35.64706990990991
+ ],
+ [
+ 139.73595110989012,
+ 35.64725009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hokima.1391.2",
+ "name": "保木間",
+ "latitude": 35.79781,
+ "longitude": 139.802129,
+ "polygon": [
+ [
+ 139.80201910989013,
+ 35.79790009009009
+ ],
+ [
+ 139.8022388901099,
+ 35.79790009009009
+ ],
+ [
+ 139.8022388901099,
+ 35.79771990990991
+ ],
+ [
+ 139.80201910989013,
+ 35.79771990990991
+ ],
+ [
+ 139.80201910989013,
+ 35.79790009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fudoson.1376.1",
+ "name": "不動尊前",
+ "latitude": 35.671379,
+ "longitude": 139.79694,
+ "polygon": [
+ [
+ 139.79683010989012,
+ 35.67146909009009
+ ],
+ [
+ 139.7970498901099,
+ 35.67146909009009
+ ],
+ [
+ 139.7970498901099,
+ 35.67128890990991
+ ],
+ [
+ 139.79683010989012,
+ 35.67128890990991
+ ],
+ [
+ 139.79683010989012,
+ 35.67146909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fudoson.1376.2",
+ "name": "不動尊前",
+ "latitude": 35.67125,
+ "longitude": 139.797789,
+ "polygon": [
+ [
+ 139.7976791098901,
+ 35.67134009009009
+ ],
+ [
+ 139.79789889010988,
+ 35.67134009009009
+ ],
+ [
+ 139.79789889010988,
+ 35.67115990990991
+ ],
+ [
+ 139.7976791098901,
+ 35.67115990990991
+ ],
+ [
+ 139.7976791098901,
+ 35.67134009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriShogakko.1377.1",
+ "name": "船堀小学校前",
+ "latitude": 35.682429,
+ "longitude": 139.862852,
+ "polygon": [
+ [
+ 139.86274210989012,
+ 35.68251909009009
+ ],
+ [
+ 139.8629618901099,
+ 35.68251909009009
+ ],
+ [
+ 139.8629618901099,
+ 35.68233890990991
+ ],
+ [
+ 139.86274210989012,
+ 35.68233890990991
+ ],
+ [
+ 139.86274210989012,
+ 35.68251909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriShogakko.1377.2",
+ "name": "船堀小学校前",
+ "latitude": 35.681947,
+ "longitude": 139.862765,
+ "polygon": [
+ [
+ 139.8626551098901,
+ 35.68203709009009
+ ],
+ [
+ 139.86287489010988,
+ 35.68203709009009
+ ],
+ [
+ 139.86287489010988,
+ 35.68185690990991
+ ],
+ [
+ 139.8626551098901,
+ 35.68185690990991
+ ],
+ [
+ 139.8626551098901,
+ 35.68203709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriNakagumi.1378.1",
+ "name": "船堀中組",
+ "latitude": 35.680243,
+ "longitude": 139.864776,
+ "polygon": [
+ [
+ 139.86466610989012,
+ 35.68033309009009
+ ],
+ [
+ 139.8648858901099,
+ 35.68033309009009
+ ],
+ [
+ 139.8648858901099,
+ 35.68015290990991
+ ],
+ [
+ 139.86466610989012,
+ 35.68015290990991
+ ],
+ [
+ 139.86466610989012,
+ 35.68033309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriNakagumi.1378.2",
+ "name": "船堀中組",
+ "latitude": 35.680129,
+ "longitude": 139.86518,
+ "polygon": [
+ [
+ 139.86507010989013,
+ 35.68021909009009
+ ],
+ [
+ 139.8652898901099,
+ 35.68021909009009
+ ],
+ [
+ 139.8652898901099,
+ 35.68003890990991
+ ],
+ [
+ 139.86507010989013,
+ 35.68003890990991
+ ],
+ [
+ 139.86507010989013,
+ 35.68021909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Furukawabashi.1380.2",
+ "name": "古川橋",
+ "latitude": 35.646781,
+ "longitude": 139.735015,
+ "polygon": [
+ [
+ 139.73490510989012,
+ 35.64687109009009
+ ],
+ [
+ 139.7351248901099,
+ 35.64687109009009
+ ],
+ [
+ 139.7351248901099,
+ 35.64669090990991
+ ],
+ [
+ 139.73490510989012,
+ 35.64669090990991
+ ],
+ [
+ 139.73490510989012,
+ 35.64687109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Furukawabashi.1380.3",
+ "name": "古川橋",
+ "latitude": 35.64657,
+ "longitude": 139.735061,
+ "polygon": [
+ [
+ 139.73495110989012,
+ 35.64666009009009
+ ],
+ [
+ 139.73517089010988,
+ 35.64666009009009
+ ],
+ [
+ 139.73517089010988,
+ 35.64647990990991
+ ],
+ [
+ 139.73495110989012,
+ 35.64647990990991
+ ],
+ [
+ 139.73495110989012,
+ 35.64666009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Furukawabashi.1380.4",
+ "name": "古川橋",
+ "latitude": 35.647466,
+ "longitude": 139.736625,
+ "polygon": [
+ [
+ 139.73651510989012,
+ 35.64755609009009
+ ],
+ [
+ 139.7367348901099,
+ 35.64755609009009
+ ],
+ [
+ 139.7367348901099,
+ 35.64737590990991
+ ],
+ [
+ 139.73651510989012,
+ 35.64737590990991
+ ],
+ [
+ 139.73651510989012,
+ 35.64755609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.BunkaNichome.1382.1",
+ "name": "文花二丁目",
+ "latitude": 35.70968,
+ "longitude": 139.827987,
+ "polygon": [
+ [
+ 139.82787710989012,
+ 35.70977009009009
+ ],
+ [
+ 139.8280968901099,
+ 35.70977009009009
+ ],
+ [
+ 139.8280968901099,
+ 35.70958990990991
+ ],
+ [
+ 139.82787710989012,
+ 35.70958990990991
+ ],
+ [
+ 139.82787710989012,
+ 35.70977009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.BunkaNichome.1382.2",
+ "name": "文花二丁目",
+ "latitude": 35.709275,
+ "longitude": 139.827998,
+ "polygon": [
+ [
+ 139.82788810989013,
+ 35.70936509009009
+ ],
+ [
+ 139.8281078901099,
+ 35.70936509009009
+ ],
+ [
+ 139.8281078901099,
+ 35.70918490990991
+ ],
+ [
+ 139.82788810989013,
+ 35.70918490990991
+ ],
+ [
+ 139.82788810989013,
+ 35.70936509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.BunkaSanchome.1383.1",
+ "name": "文花三丁目",
+ "latitude": 35.712279,
+ "longitude": 139.824333,
+ "polygon": [
+ [
+ 139.8242231098901,
+ 35.71236909009009
+ ],
+ [
+ 139.82444289010988,
+ 35.71236909009009
+ ],
+ [
+ 139.82444289010988,
+ 35.71218890990991
+ ],
+ [
+ 139.8242231098901,
+ 35.71218890990991
+ ],
+ [
+ 139.8242231098901,
+ 35.71236909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.BunkaSanchome.1383.2",
+ "name": "文花三丁目",
+ "latitude": 35.712326,
+ "longitude": 139.824726,
+ "polygon": [
+ [
+ 139.82461610989012,
+ 35.71241609009009
+ ],
+ [
+ 139.82483589010988,
+ 35.71241609009009
+ ],
+ [
+ 139.82483589010988,
+ 35.71223590990991
+ ],
+ [
+ 139.82461610989012,
+ 35.71223590990991
+ ],
+ [
+ 139.82461610989012,
+ 35.71241609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasugaStation.1384.1",
+ "name": "春日駅前",
+ "latitude": 35.708579,
+ "longitude": 139.752475,
+ "polygon": [
+ [
+ 139.75236510989012,
+ 35.70866909009009
+ ],
+ [
+ 139.7525848901099,
+ 35.70866909009009
+ ],
+ [
+ 139.7525848901099,
+ 35.70848890990991
+ ],
+ [
+ 139.75236510989012,
+ 35.70848890990991
+ ],
+ [
+ 139.75236510989012,
+ 35.70866909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasugaStation.1384.2",
+ "name": "春日駅前",
+ "latitude": 35.708366,
+ "longitude": 139.752526,
+ "polygon": [
+ [
+ 139.7524161098901,
+ 35.70845609009009
+ ],
+ [
+ 139.75263589010987,
+ 35.70845609009009
+ ],
+ [
+ 139.75263589010987,
+ 35.70827590990991
+ ],
+ [
+ 139.7524161098901,
+ 35.70827590990991
+ ],
+ [
+ 139.7524161098901,
+ 35.70845609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasugaStation.1384.3",
+ "name": "春日駅前",
+ "latitude": 35.708359,
+ "longitude": 139.752762,
+ "polygon": [
+ [
+ 139.7526521098901,
+ 35.70844909009009
+ ],
+ [
+ 139.75287189010987,
+ 35.70844909009009
+ ],
+ [
+ 139.75287189010987,
+ 35.70826890990991
+ ],
+ [
+ 139.7526521098901,
+ 35.70826890990991
+ ],
+ [
+ 139.7526521098901,
+ 35.70844909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasugaStation.1384.4",
+ "name": "春日駅前",
+ "latitude": 35.70776,
+ "longitude": 139.751933,
+ "polygon": [
+ [
+ 139.75182310989013,
+ 35.70785009009009
+ ],
+ [
+ 139.7520428901099,
+ 35.70785009009009
+ ],
+ [
+ 139.7520428901099,
+ 35.70766990990991
+ ],
+ [
+ 139.75182310989013,
+ 35.70766990990991
+ ],
+ [
+ 139.75182310989013,
+ 35.70785009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiGochomeJichiKaikan.1385.1",
+ "name": "成木五丁目自治会館前",
+ "latitude": 35.827611,
+ "longitude": 139.242656,
+ "polygon": [
+ [
+ 139.24254610989013,
+ 35.82770109009009
+ ],
+ [
+ 139.2427658901099,
+ 35.82770109009009
+ ],
+ [
+ 139.2427658901099,
+ 35.82752090990991
+ ],
+ [
+ 139.24254610989013,
+ 35.82752090990991
+ ],
+ [
+ 139.24254610989013,
+ 35.82770109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NarikiGochomeJichiKaikan.1385.2",
+ "name": "成木五丁目自治会館前",
+ "latitude": 35.827695,
+ "longitude": 139.242732,
+ "polygon": [
+ [
+ 139.2426221098901,
+ 35.82778509009009
+ ],
+ [
+ 139.24284189010987,
+ 35.82778509009009
+ ],
+ [
+ 139.24284189010987,
+ 35.82760490990991
+ ],
+ [
+ 139.2426221098901,
+ 35.82760490990991
+ ],
+ [
+ 139.2426221098901,
+ 35.82778509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HosuiroDoteShita.1387.1",
+ "name": "放水路土手下",
+ "latitude": 35.76186,
+ "longitude": 139.791667,
+ "polygon": [
+ [
+ 139.7915571098901,
+ 35.76195009009009
+ ],
+ [
+ 139.79177689010987,
+ 35.76195009009009
+ ],
+ [
+ 139.79177689010987,
+ 35.76176990990991
+ ],
+ [
+ 139.7915571098901,
+ 35.76176990990991
+ ],
+ [
+ 139.7915571098901,
+ 35.76195009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HosuiroDoteShita.1387.2",
+ "name": "放水路土手下",
+ "latitude": 35.76208,
+ "longitude": 139.791673,
+ "polygon": [
+ [
+ 139.79156310989012,
+ 35.76217009009009
+ ],
+ [
+ 139.79178289010989,
+ 35.76217009009009
+ ],
+ [
+ 139.79178289010989,
+ 35.76198990990991
+ ],
+ [
+ 139.79156310989012,
+ 35.76198990990991
+ ],
+ [
+ 139.79156310989012,
+ 35.76217009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hosenji.1388.1",
+ "name": "宝仙寺前",
+ "latitude": 35.697562,
+ "longitude": 139.67858,
+ "polygon": [
+ [
+ 139.67847010989013,
+ 35.69765209009009
+ ],
+ [
+ 139.6786898901099,
+ 35.69765209009009
+ ],
+ [
+ 139.6786898901099,
+ 35.69747190990991
+ ],
+ [
+ 139.67847010989013,
+ 35.69747190990991
+ ],
+ [
+ 139.67847010989013,
+ 35.69765209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hosenji.1388.2",
+ "name": "宝仙寺前",
+ "latitude": 35.697273,
+ "longitude": 139.679505,
+ "polygon": [
+ [
+ 139.67939510989012,
+ 35.69736309009009
+ ],
+ [
+ 139.6796148901099,
+ 35.69736309009009
+ ],
+ [
+ 139.6796148901099,
+ 35.69718290990991
+ ],
+ [
+ 139.67939510989012,
+ 35.69718290990991
+ ],
+ [
+ 139.67939510989012,
+ 35.69736309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HosoCenterNishiguchi.1389.1",
+ "name": "放送センター西口",
+ "latitude": 35.664963,
+ "longitude": 139.694389,
+ "polygon": [
+ [
+ 139.69427910989012,
+ 35.66505309009009
+ ],
+ [
+ 139.69449889010988,
+ 35.66505309009009
+ ],
+ [
+ 139.69449889010988,
+ 35.66487290990991
+ ],
+ [
+ 139.69427910989012,
+ 35.66487290990991
+ ],
+ [
+ 139.69427910989012,
+ 35.66505309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonanHachimanDori.1390.1",
+ "name": "方南八幡通り",
+ "latitude": 35.682891,
+ "longitude": 139.656688,
+ "polygon": [
+ [
+ 139.65657810989012,
+ 35.68298109009009
+ ],
+ [
+ 139.65679789010989,
+ 35.68298109009009
+ ],
+ [
+ 139.65679789010989,
+ 35.68280090990991
+ ],
+ [
+ 139.65657810989012,
+ 35.68280090990991
+ ],
+ [
+ 139.65657810989012,
+ 35.68298109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonanHachimanDori.1390.2",
+ "name": "方南八幡通り",
+ "latitude": 35.682446,
+ "longitude": 139.657077,
+ "polygon": [
+ [
+ 139.6569671098901,
+ 35.68253609009009
+ ],
+ [
+ 139.65718689010987,
+ 35.68253609009009
+ ],
+ [
+ 139.65718689010987,
+ 35.68235590990991
+ ],
+ [
+ 139.6569671098901,
+ 35.68235590990991
+ ],
+ [
+ 139.6569671098901,
+ 35.68253609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hokima.1391.1",
+ "name": "保木間",
+ "latitude": 35.797059,
+ "longitude": 139.801946,
+ "polygon": [
+ [
+ 139.8018361098901,
+ 35.79714909009009
+ ],
+ [
+ 139.80205589010987,
+ 35.79714909009009
+ ],
+ [
+ 139.80205589010987,
+ 35.79696890990991
+ ],
+ [
+ 139.8018361098901,
+ 35.79696890990991
+ ],
+ [
+ 139.8018361098901,
+ 35.79714909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HorieDanchiIriguchi.1395.1",
+ "name": "堀江団地入口",
+ "latitude": 35.649457,
+ "longitude": 139.869193,
+ "polygon": [
+ [
+ 139.8690831098901,
+ 35.64954709009009
+ ],
+ [
+ 139.86930289010988,
+ 35.64954709009009
+ ],
+ [
+ 139.86930289010988,
+ 35.64936690990991
+ ],
+ [
+ 139.8690831098901,
+ 35.64936690990991
+ ],
+ [
+ 139.8690831098901,
+ 35.64954709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HokimaNakadori.1392.1",
+ "name": "保木間仲通り",
+ "latitude": 35.792728,
+ "longitude": 139.801407,
+ "polygon": [
+ [
+ 139.80129710989013,
+ 35.79281809009009
+ ],
+ [
+ 139.8015168901099,
+ 35.79281809009009
+ ],
+ [
+ 139.8015168901099,
+ 35.79263790990991
+ ],
+ [
+ 139.80129710989013,
+ 35.79263790990991
+ ],
+ [
+ 139.80129710989013,
+ 35.79281809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HokimaNakadori.1392.2",
+ "name": "保木間仲通り",
+ "latitude": 35.792804,
+ "longitude": 139.801439,
+ "polygon": [
+ [
+ 139.8013291098901,
+ 35.79289409009009
+ ],
+ [
+ 139.80154889010987,
+ 35.79289409009009
+ ],
+ [
+ 139.80154889010987,
+ 35.79271390990991
+ ],
+ [
+ 139.8013291098901,
+ 35.79271390990991
+ ],
+ [
+ 139.8013291098901,
+ 35.79289409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HokimaNakadori.1392.3",
+ "name": "保木間仲通り",
+ "latitude": 35.792728,
+ "longitude": 139.801396,
+ "polygon": [
+ [
+ 139.80128610989013,
+ 35.79281809009009
+ ],
+ [
+ 139.8015058901099,
+ 35.79281809009009
+ ],
+ [
+ 139.8015058901099,
+ 35.79263790990991
+ ],
+ [
+ 139.80128610989013,
+ 35.79263790990991
+ ],
+ [
+ 139.80128610989013,
+ 35.79281809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HokimaNakadori.1392.4",
+ "name": "保木間仲通り",
+ "latitude": 35.792804,
+ "longitude": 139.80145,
+ "polygon": [
+ [
+ 139.8013401098901,
+ 35.79289409009009
+ ],
+ [
+ 139.80155989010987,
+ 35.79289409009009
+ ],
+ [
+ 139.80155989010987,
+ 35.79271390990991
+ ],
+ [
+ 139.8013401098901,
+ 35.79271390990991
+ ],
+ [
+ 139.8013401098901,
+ 35.79289409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HorieDanchiIriguchi.1395.2",
+ "name": "堀江団地入口",
+ "latitude": 35.6492,
+ "longitude": 139.869282,
+ "polygon": [
+ [
+ 139.86917210989012,
+ 35.64929009009009
+ ],
+ [
+ 139.86939189010988,
+ 35.64929009009009
+ ],
+ [
+ 139.86939189010988,
+ 35.64910990990991
+ ],
+ [
+ 139.86917210989012,
+ 35.64910990990991
+ ],
+ [
+ 139.86917210989012,
+ 35.64929009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horidomecho.1397.1",
+ "name": "堀留町",
+ "latitude": 35.687509,
+ "longitude": 139.781086,
+ "polygon": [
+ [
+ 139.7809761098901,
+ 35.68759909009009
+ ],
+ [
+ 139.78119589010987,
+ 35.68759909009009
+ ],
+ [
+ 139.78119589010987,
+ 35.68741890990991
+ ],
+ [
+ 139.7809761098901,
+ 35.68741890990991
+ ],
+ [
+ 139.7809761098901,
+ 35.68759909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HokimaItchome.1393.1",
+ "name": "保木間一丁目",
+ "latitude": 35.790937,
+ "longitude": 139.802532,
+ "polygon": [
+ [
+ 139.80242210989013,
+ 35.79102709009009
+ ],
+ [
+ 139.8026418901099,
+ 35.79102709009009
+ ],
+ [
+ 139.8026418901099,
+ 35.79084690990991
+ ],
+ [
+ 139.80242210989013,
+ 35.79084690990991
+ ],
+ [
+ 139.80242210989013,
+ 35.79102709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HokimaItchome.1393.2",
+ "name": "保木間一丁目",
+ "latitude": 35.792336,
+ "longitude": 139.802664,
+ "polygon": [
+ [
+ 139.8025541098901,
+ 35.79242609009009
+ ],
+ [
+ 139.80277389010988,
+ 35.79242609009009
+ ],
+ [
+ 139.80277389010988,
+ 35.79224590990991
+ ],
+ [
+ 139.8025541098901,
+ 35.79224590990991
+ ],
+ [
+ 139.8025541098901,
+ 35.79242609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HorieDanchi.1394.1",
+ "name": "堀江団地",
+ "latitude": 35.647981,
+ "longitude": 139.871586,
+ "polygon": [
+ [
+ 139.87147610989012,
+ 35.64807109009009
+ ],
+ [
+ 139.8716958901099,
+ 35.64807109009009
+ ],
+ [
+ 139.8716958901099,
+ 35.64789090990991
+ ],
+ [
+ 139.87147610989012,
+ 35.64789090990991
+ ],
+ [
+ 139.87147610989012,
+ 35.64807109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HorieDanchi.1394.2",
+ "name": "堀江団地",
+ "latitude": 35.647812,
+ "longitude": 139.871935,
+ "polygon": [
+ [
+ 139.87182510989012,
+ 35.64790209009009
+ ],
+ [
+ 139.8720448901099,
+ 35.64790209009009
+ ],
+ [
+ 139.8720448901099,
+ 35.64772190990991
+ ],
+ [
+ 139.87182510989012,
+ 35.64772190990991
+ ],
+ [
+ 139.87182510989012,
+ 35.64790209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HorieDanchi.1394.3",
+ "name": "堀江団地",
+ "latitude": 35.64769,
+ "longitude": 139.870536,
+ "polygon": [
+ [
+ 139.8704261098901,
+ 35.64778009009009
+ ],
+ [
+ 139.87064589010987,
+ 35.64778009009009
+ ],
+ [
+ 139.87064589010987,
+ 35.64759990990991
+ ],
+ [
+ 139.8704261098901,
+ 35.64759990990991
+ ],
+ [
+ 139.8704261098901,
+ 35.64778009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HorieDanchi.1394.4",
+ "name": "堀江団地",
+ "latitude": 35.647722,
+ "longitude": 139.870785,
+ "polygon": [
+ [
+ 139.87067510989013,
+ 35.64781209009009
+ ],
+ [
+ 139.8708948901099,
+ 35.64781209009009
+ ],
+ [
+ 139.8708948901099,
+ 35.64763190990991
+ ],
+ [
+ 139.87067510989013,
+ 35.64763190990991
+ ],
+ [
+ 139.87067510989013,
+ 35.64781209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horinouchi.1398.1",
+ "name": "堀ノ内",
+ "latitude": 35.69236,
+ "longitude": 139.65436,
+ "polygon": [
+ [
+ 139.6542501098901,
+ 35.69245009009009
+ ],
+ [
+ 139.65446989010988,
+ 35.69245009009009
+ ],
+ [
+ 139.65446989010988,
+ 35.69226990990991
+ ],
+ [
+ 139.6542501098901,
+ 35.69226990990991
+ ],
+ [
+ 139.6542501098901,
+ 35.69245009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horinouchi.1398.2",
+ "name": "堀ノ内",
+ "latitude": 35.692923,
+ "longitude": 139.654236,
+ "polygon": [
+ [
+ 139.65412610989011,
+ 35.69301309009009
+ ],
+ [
+ 139.65434589010988,
+ 35.69301309009009
+ ],
+ [
+ 139.65434589010988,
+ 35.69283290990991
+ ],
+ [
+ 139.65412610989011,
+ 35.69283290990991
+ ],
+ [
+ 139.65412610989011,
+ 35.69301309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horinouchi.1398.3",
+ "name": "堀ノ内",
+ "latitude": 35.691263,
+ "longitude": 139.654799,
+ "polygon": [
+ [
+ 139.6546891098901,
+ 35.69135309009009
+ ],
+ [
+ 139.65490889010988,
+ 35.69135309009009
+ ],
+ [
+ 139.65490889010988,
+ 35.69117290990991
+ ],
+ [
+ 139.6546891098901,
+ 35.69117290990991
+ ],
+ [
+ 139.6546891098901,
+ 35.69135309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HorinouchiNichome.1399.1",
+ "name": "杏林大学杉並病院前",
+ "latitude": 35.688879,
+ "longitude": 139.65498,
+ "polygon": [
+ [
+ 139.6548701098901,
+ 35.68896909009009
+ ],
+ [
+ 139.65508989010988,
+ 35.68896909009009
+ ],
+ [
+ 139.65508989010988,
+ 35.68878890990991
+ ],
+ [
+ 139.6548701098901,
+ 35.68878890990991
+ ],
+ [
+ 139.6548701098901,
+ 35.68896909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horiwari.1402.2",
+ "name": "堀割",
+ "latitude": 35.74181,
+ "longitude": 139.726107,
+ "polygon": [
+ [
+ 139.72599710989013,
+ 35.74190009009009
+ ],
+ [
+ 139.7262168901099,
+ 35.74190009009009
+ ],
+ [
+ 139.7262168901099,
+ 35.74171990990991
+ ],
+ [
+ 139.72599710989013,
+ 35.74171990990991
+ ],
+ [
+ 139.72599710989013,
+ 35.74190009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HorinouchiNichome.1399.2",
+ "name": "杏林大学杉並病院前",
+ "latitude": 35.689644,
+ "longitude": 139.655137,
+ "polygon": [
+ [
+ 139.6550271098901,
+ 35.68973409009009
+ ],
+ [
+ 139.65524689010988,
+ 35.68973409009009
+ ],
+ [
+ 139.65524689010988,
+ 35.68955390990991
+ ],
+ [
+ 139.6550271098901,
+ 35.68955390990991
+ ],
+ [
+ 139.6550271098901,
+ 35.68973409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kajiwara.1400.1",
+ "name": "梶原",
+ "latitude": 35.750719,
+ "longitude": 139.748153,
+ "polygon": [
+ [
+ 139.74804310989012,
+ 35.75080909009009
+ ],
+ [
+ 139.74826289010988,
+ 35.75080909009009
+ ],
+ [
+ 139.74826289010988,
+ 35.750628909909906
+ ],
+ [
+ 139.74804310989012,
+ 35.750628909909906
+ ],
+ [
+ 139.74804310989012,
+ 35.75080909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kajiwara.1400.2",
+ "name": "梶原",
+ "latitude": 35.751458,
+ "longitude": 139.747489,
+ "polygon": [
+ [
+ 139.74737910989012,
+ 35.75154809009009
+ ],
+ [
+ 139.74759889010988,
+ 35.75154809009009
+ ],
+ [
+ 139.74759889010988,
+ 35.75136790990991
+ ],
+ [
+ 139.74737910989012,
+ 35.75136790990991
+ ],
+ [
+ 139.74737910989012,
+ 35.75154809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horifune.1401.1",
+ "name": "堀船",
+ "latitude": 35.754099,
+ "longitude": 139.743731,
+ "polygon": [
+ [
+ 139.7436211098901,
+ 35.75418909009009
+ ],
+ [
+ 139.74384089010988,
+ 35.75418909009009
+ ],
+ [
+ 139.74384089010988,
+ 35.754008909909906
+ ],
+ [
+ 139.7436211098901,
+ 35.754008909909906
+ ],
+ [
+ 139.7436211098901,
+ 35.75418909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horifune.1401.2",
+ "name": "堀船",
+ "latitude": 35.754393,
+ "longitude": 139.743691,
+ "polygon": [
+ [
+ 139.74358110989013,
+ 35.75448309009009
+ ],
+ [
+ 139.7438008901099,
+ 35.75448309009009
+ ],
+ [
+ 139.7438008901099,
+ 35.75430290990991
+ ],
+ [
+ 139.74358110989013,
+ 35.75430290990991
+ ],
+ [
+ 139.74358110989013,
+ 35.75448309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horiwari.1402.1",
+ "name": "堀割",
+ "latitude": 35.741899,
+ "longitude": 139.725958,
+ "polygon": [
+ [
+ 139.7258481098901,
+ 35.74198909009009
+ ],
+ [
+ 139.72606789010987,
+ 35.74198909009009
+ ],
+ [
+ 139.72606789010987,
+ 35.741808909909906
+ ],
+ [
+ 139.7258481098901,
+ 35.741808909909906
+ ],
+ [
+ 139.7258481098901,
+ 35.74198909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonIsshiki.1403.1",
+ "name": "本一色",
+ "latitude": 35.719313,
+ "longitude": 139.867799,
+ "polygon": [
+ [
+ 139.8676891098901,
+ 35.71940309009009
+ ],
+ [
+ 139.86790889010987,
+ 35.71940309009009
+ ],
+ [
+ 139.86790889010987,
+ 35.71922290990991
+ ],
+ [
+ 139.8676891098901,
+ 35.71922290990991
+ ],
+ [
+ 139.8676891098901,
+ 35.71940309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonIsshiki.1403.2",
+ "name": "本一色",
+ "latitude": 35.718896,
+ "longitude": 139.868424,
+ "polygon": [
+ [
+ 139.86831410989012,
+ 35.71898609009009
+ ],
+ [
+ 139.8685338901099,
+ 35.71898609009009
+ ],
+ [
+ 139.8685338901099,
+ 35.71880590990991
+ ],
+ [
+ 139.86831410989012,
+ 35.71880590990991
+ ],
+ [
+ 139.86831410989012,
+ 35.71898609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeNichome.1404.1",
+ "name": "本駒込二丁目",
+ "latitude": 35.726722,
+ "longitude": 139.746634,
+ "polygon": [
+ [
+ 139.74652410989012,
+ 35.72681209009009
+ ],
+ [
+ 139.74674389010988,
+ 35.72681209009009
+ ],
+ [
+ 139.74674389010988,
+ 35.72663190990991
+ ],
+ [
+ 139.74652410989012,
+ 35.72663190990991
+ ],
+ [
+ 139.74652410989012,
+ 35.72681209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeNichome.1404.2",
+ "name": "本駒込二丁目",
+ "latitude": 35.726848,
+ "longitude": 139.746703,
+ "polygon": [
+ [
+ 139.7465931098901,
+ 35.72693809009009
+ ],
+ [
+ 139.74681289010988,
+ 35.72693809009009
+ ],
+ [
+ 139.74681289010988,
+ 35.72675790990991
+ ],
+ [
+ 139.7465931098901,
+ 35.72675790990991
+ ],
+ [
+ 139.7465931098901,
+ 35.72693809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeSanchome.1405.3",
+ "name": "本駒込三丁目",
+ "latitude": 35.725249,
+ "longitude": 139.754541,
+ "polygon": [
+ [
+ 139.7544311098901,
+ 35.72533909009009
+ ],
+ [
+ 139.75465089010987,
+ 35.72533909009009
+ ],
+ [
+ 139.75465089010987,
+ 35.72515890990991
+ ],
+ [
+ 139.7544311098901,
+ 35.72515890990991
+ ],
+ [
+ 139.7544311098901,
+ 35.72533909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoAzumabashi.1414.6",
+ "name": "本所吾妻橋",
+ "latitude": 35.707996,
+ "longitude": 139.804487,
+ "polygon": [
+ [
+ 139.8043771098901,
+ 35.70808609009009
+ ],
+ [
+ 139.80459689010988,
+ 35.70808609009009
+ ],
+ [
+ 139.80459689010988,
+ 35.70790590990991
+ ],
+ [
+ 139.8043771098901,
+ 35.70790590990991
+ ],
+ [
+ 139.8043771098901,
+ 35.70808609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeSanchome.1405.4",
+ "name": "本駒込三丁目",
+ "latitude": 35.724764,
+ "longitude": 139.754152,
+ "polygon": [
+ [
+ 139.75404210989012,
+ 35.72485409009009
+ ],
+ [
+ 139.7542618901099,
+ 35.72485409009009
+ ],
+ [
+ 139.7542618901099,
+ 35.72467390990991
+ ],
+ [
+ 139.75404210989012,
+ 35.72467390990991
+ ],
+ [
+ 139.75404210989012,
+ 35.72485409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeYonchome.1406.1",
+ "name": "本駒込四丁目",
+ "latitude": 35.733485,
+ "longitude": 139.754983,
+ "polygon": [
+ [
+ 139.75487310989013,
+ 35.73357509009009
+ ],
+ [
+ 139.7550928901099,
+ 35.73357509009009
+ ],
+ [
+ 139.7550928901099,
+ 35.73339490990991
+ ],
+ [
+ 139.75487310989013,
+ 35.73339490990991
+ ],
+ [
+ 139.75487310989013,
+ 35.73357509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeYonchome.1406.2",
+ "name": "本駒込四丁目",
+ "latitude": 35.733254,
+ "longitude": 139.756988,
+ "polygon": [
+ [
+ 139.75687810989012,
+ 35.73334409009009
+ ],
+ [
+ 139.7570978901099,
+ 35.73334409009009
+ ],
+ [
+ 139.7570978901099,
+ 35.73316390990991
+ ],
+ [
+ 139.75687810989012,
+ 35.73316390990991
+ ],
+ [
+ 139.75687810989012,
+ 35.73334409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeRokuchome.1407.1",
+ "name": "本駒込六丁目",
+ "latitude": 35.730893,
+ "longitude": 139.741254,
+ "polygon": [
+ [
+ 139.74114410989012,
+ 35.73098309009009
+ ],
+ [
+ 139.74136389010988,
+ 35.73098309009009
+ ],
+ [
+ 139.74136389010988,
+ 35.73080290990991
+ ],
+ [
+ 139.74114410989012,
+ 35.73080290990991
+ ],
+ [
+ 139.74114410989012,
+ 35.73098309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeRokuchome.1407.2",
+ "name": "本駒込六丁目",
+ "latitude": 35.730873,
+ "longitude": 139.741784,
+ "polygon": [
+ [
+ 139.7416741098901,
+ 35.73096309009009
+ ],
+ [
+ 139.74189389010988,
+ 35.73096309009009
+ ],
+ [
+ 139.74189389010988,
+ 35.73078290990991
+ ],
+ [
+ 139.7416741098901,
+ 35.73078290990991
+ ],
+ [
+ 139.7416741098901,
+ 35.73096309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomagataSanchome.1415.1",
+ "name": "東駒形三丁目",
+ "latitude": 35.7061,
+ "longitude": 139.80448,
+ "polygon": [
+ [
+ 139.80437010989013,
+ 35.70619009009009
+ ],
+ [
+ 139.8045898901099,
+ 35.70619009009009
+ ],
+ [
+ 139.8045898901099,
+ 35.70600990990991
+ ],
+ [
+ 139.80437010989013,
+ 35.70600990990991
+ ],
+ [
+ 139.80437010989013,
+ 35.70619009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoOiwake.1408.1",
+ "name": "本郷追分",
+ "latitude": 35.718764,
+ "longitude": 139.757367,
+ "polygon": [
+ [
+ 139.7572571098901,
+ 35.71885409009009
+ ],
+ [
+ 139.75747689010987,
+ 35.71885409009009
+ ],
+ [
+ 139.75747689010987,
+ 35.71867390990991
+ ],
+ [
+ 139.7572571098901,
+ 35.71867390990991
+ ],
+ [
+ 139.7572571098901,
+ 35.71885409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoOiwake.1408.2",
+ "name": "本郷追分",
+ "latitude": 35.71897,
+ "longitude": 139.757462,
+ "polygon": [
+ [
+ 139.75735210989012,
+ 35.71906009009009
+ ],
+ [
+ 139.7575718901099,
+ 35.71906009009009
+ ],
+ [
+ 139.7575718901099,
+ 35.71887990990991
+ ],
+ [
+ 139.75735210989012,
+ 35.71887990990991
+ ],
+ [
+ 139.75735210989012,
+ 35.71906009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoNichome.1409.1",
+ "name": "本郷二丁目",
+ "latitude": 35.705166,
+ "longitude": 139.760909,
+ "polygon": [
+ [
+ 139.76079910989012,
+ 35.70525609009009
+ ],
+ [
+ 139.76101889010988,
+ 35.70525609009009
+ ],
+ [
+ 139.76101889010988,
+ 35.70507590990991
+ ],
+ [
+ 139.76079910989012,
+ 35.70507590990991
+ ],
+ [
+ 139.76079910989012,
+ 35.70525609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoNichome.1409.2",
+ "name": "本郷二丁目",
+ "latitude": 35.705104,
+ "longitude": 139.761169,
+ "polygon": [
+ [
+ 139.7610591098901,
+ 35.70519409009009
+ ],
+ [
+ 139.76127889010988,
+ 35.70519409009009
+ ],
+ [
+ 139.76127889010988,
+ 35.70501390990991
+ ],
+ [
+ 139.7610591098901,
+ 35.70501390990991
+ ],
+ [
+ 139.7610591098901,
+ 35.70519409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoSanchomeStation.1410.1",
+ "name": "本郷三丁目駅前",
+ "latitude": 35.706602,
+ "longitude": 139.76083,
+ "polygon": [
+ [
+ 139.76072010989012,
+ 35.70669209009009
+ ],
+ [
+ 139.76093989010988,
+ 35.70669209009009
+ ],
+ [
+ 139.76093989010988,
+ 35.706511909909906
+ ],
+ [
+ 139.76072010989012,
+ 35.706511909909906
+ ],
+ [
+ 139.76072010989012,
+ 35.70669209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoItchome.1416.1",
+ "name": "本所一丁目",
+ "latitude": 35.702846,
+ "longitude": 139.797046,
+ "polygon": [
+ [
+ 139.7969361098901,
+ 35.70293609009009
+ ],
+ [
+ 139.79715589010988,
+ 35.70293609009009
+ ],
+ [
+ 139.79715589010988,
+ 35.70275590990991
+ ],
+ [
+ 139.7969361098901,
+ 35.70275590990991
+ ],
+ [
+ 139.7969361098901,
+ 35.70293609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoSanchomeStation.1410.2",
+ "name": "本郷三丁目駅前",
+ "latitude": 35.706603,
+ "longitude": 139.760606,
+ "polygon": [
+ [
+ 139.7604961098901,
+ 35.70669309009009
+ ],
+ [
+ 139.76071589010988,
+ 35.70669309009009
+ ],
+ [
+ 139.76071589010988,
+ 35.70651290990991
+ ],
+ [
+ 139.7604961098901,
+ 35.70651290990991
+ ],
+ [
+ 139.7604961098901,
+ 35.70669309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoSanchomeStation.1410.3",
+ "name": "本郷三丁目駅前",
+ "latitude": 35.707545,
+ "longitude": 139.759698,
+ "polygon": [
+ [
+ 139.7595881098901,
+ 35.70763509009009
+ ],
+ [
+ 139.75980789010987,
+ 35.70763509009009
+ ],
+ [
+ 139.75980789010987,
+ 35.70745490990991
+ ],
+ [
+ 139.7595881098901,
+ 35.70745490990991
+ ],
+ [
+ 139.7595881098901,
+ 35.70763509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoSanchomeStation.1410.4",
+ "name": "本郷三丁目駅前",
+ "latitude": 35.707467,
+ "longitude": 139.761212,
+ "polygon": [
+ [
+ 139.76110210989012,
+ 35.70755709009009
+ ],
+ [
+ 139.76132189010988,
+ 35.70755709009009
+ ],
+ [
+ 139.76132189010988,
+ 35.70737690990991
+ ],
+ [
+ 139.76110210989012,
+ 35.70737690990991
+ ],
+ [
+ 139.76110210989012,
+ 35.70755709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoRokuchome.1411.1",
+ "name": "本郷六丁目",
+ "latitude": 35.713244,
+ "longitude": 139.756604,
+ "polygon": [
+ [
+ 139.75649410989013,
+ 35.71333409009009
+ ],
+ [
+ 139.7567138901099,
+ 35.71333409009009
+ ],
+ [
+ 139.7567138901099,
+ 35.71315390990991
+ ],
+ [
+ 139.75649410989013,
+ 35.71315390990991
+ ],
+ [
+ 139.75649410989013,
+ 35.71333409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HongoRokuchome.1411.2",
+ "name": "本郷六丁目",
+ "latitude": 35.713342,
+ "longitude": 139.756859,
+ "polygon": [
+ [
+ 139.7567491098901,
+ 35.71343209009009
+ ],
+ [
+ 139.75696889010987,
+ 35.71343209009009
+ ],
+ [
+ 139.75696889010987,
+ 35.71325190990991
+ ],
+ [
+ 139.7567491098901,
+ 35.71325190990991
+ ],
+ [
+ 139.7567491098901,
+ 35.71343209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomagataSanchome.1415.2",
+ "name": "東駒形三丁目",
+ "latitude": 35.70543,
+ "longitude": 139.8047,
+ "polygon": [
+ [
+ 139.8045901098901,
+ 35.70552009009009
+ ],
+ [
+ 139.80480989010988,
+ 35.70552009009009
+ ],
+ [
+ 139.80480989010988,
+ 35.70533990990991
+ ],
+ [
+ 139.8045901098901,
+ 35.70533990990991
+ ],
+ [
+ 139.8045901098901,
+ 35.70552009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoAzumabashi.1414.1",
+ "name": "本所吾妻橋",
+ "latitude": 35.708631,
+ "longitude": 139.802973,
+ "polygon": [
+ [
+ 139.80286310989013,
+ 35.70872109009009
+ ],
+ [
+ 139.8030828901099,
+ 35.70872109009009
+ ],
+ [
+ 139.8030828901099,
+ 35.70854090990991
+ ],
+ [
+ 139.80286310989013,
+ 35.70854090990991
+ ],
+ [
+ 139.80286310989013,
+ 35.70872109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoAzumabashi.1414.2",
+ "name": "本所吾妻橋",
+ "latitude": 35.708758,
+ "longitude": 139.80522,
+ "polygon": [
+ [
+ 139.8051101098901,
+ 35.70884809009009
+ ],
+ [
+ 139.80532989010987,
+ 35.70884809009009
+ ],
+ [
+ 139.80532989010987,
+ 35.70866790990991
+ ],
+ [
+ 139.8051101098901,
+ 35.70866790990991
+ ],
+ [
+ 139.8051101098901,
+ 35.70884809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoAzumabashi.1414.3",
+ "name": "本所吾妻橋",
+ "latitude": 35.708414,
+ "longitude": 139.802965,
+ "polygon": [
+ [
+ 139.80285510989012,
+ 35.70850409009009
+ ],
+ [
+ 139.80307489010988,
+ 35.70850409009009
+ ],
+ [
+ 139.80307489010988,
+ 35.70832390990991
+ ],
+ [
+ 139.80285510989012,
+ 35.70832390990991
+ ],
+ [
+ 139.80285510989012,
+ 35.70850409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoAzumabashi.1414.4",
+ "name": "本所吾妻橋",
+ "latitude": 35.708438,
+ "longitude": 139.803502,
+ "polygon": [
+ [
+ 139.80339210989013,
+ 35.70852809009009
+ ],
+ [
+ 139.8036118901099,
+ 35.70852809009009
+ ],
+ [
+ 139.8036118901099,
+ 35.70834790990991
+ ],
+ [
+ 139.80339210989013,
+ 35.70834790990991
+ ],
+ [
+ 139.80339210989013,
+ 35.70852809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoAzumabashi.1414.5",
+ "name": "本所吾妻橋",
+ "latitude": 35.708524,
+ "longitude": 139.805122,
+ "polygon": [
+ [
+ 139.80501210989013,
+ 35.70861409009009
+ ],
+ [
+ 139.8052318901099,
+ 35.70861409009009
+ ],
+ [
+ 139.8052318901099,
+ 35.70843390990991
+ ],
+ [
+ 139.80501210989013,
+ 35.70843390990991
+ ],
+ [
+ 139.80501210989013,
+ 35.70861409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoItchome.1416.2",
+ "name": "本所一丁目",
+ "latitude": 35.703708,
+ "longitude": 139.797543,
+ "polygon": [
+ [
+ 139.7974331098901,
+ 35.70379809009009
+ ],
+ [
+ 139.79765289010987,
+ 35.70379809009009
+ ],
+ [
+ 139.79765289010987,
+ 35.70361790990991
+ ],
+ [
+ 139.7974331098901,
+ 35.70361790990991
+ ],
+ [
+ 139.7974331098901,
+ 35.70379809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoItchome.1416.3",
+ "name": "本所一丁目",
+ "latitude": 35.704042,
+ "longitude": 139.796956,
+ "polygon": [
+ [
+ 139.7968461098901,
+ 35.70413209009009
+ ],
+ [
+ 139.79706589010988,
+ 35.70413209009009
+ ],
+ [
+ 139.79706589010988,
+ 35.70395190990991
+ ],
+ [
+ 139.7968461098901,
+ 35.70395190990991
+ ],
+ [
+ 139.7968461098901,
+ 35.70413209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoItchome.1416.4",
+ "name": "本所一丁目",
+ "latitude": 35.703008,
+ "longitude": 139.796829,
+ "polygon": [
+ [
+ 139.79671910989012,
+ 35.70309809009009
+ ],
+ [
+ 139.79693889010989,
+ 35.70309809009009
+ ],
+ [
+ 139.79693889010989,
+ 35.70291790990991
+ ],
+ [
+ 139.79671910989012,
+ 35.70291790990991
+ ],
+ [
+ 139.79671910989012,
+ 35.70309809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoItchome.1416.5",
+ "name": "本所一丁目",
+ "latitude": 35.704236,
+ "longitude": 139.796287,
+ "polygon": [
+ [
+ 139.79617710989012,
+ 35.70432609009009
+ ],
+ [
+ 139.7963968901099,
+ 35.70432609009009
+ ],
+ [
+ 139.7963968901099,
+ 35.70414590990991
+ ],
+ [
+ 139.79617710989012,
+ 35.70414590990991
+ ],
+ [
+ 139.79617710989012,
+ 35.70432609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoYonchome.1418.4",
+ "name": "本所四丁目",
+ "latitude": 35.703535,
+ "longitude": 139.804903,
+ "polygon": [
+ [
+ 139.8047931098901,
+ 35.70362509009009
+ ],
+ [
+ 139.80501289010988,
+ 35.70362509009009
+ ],
+ [
+ 139.80501289010988,
+ 35.70344490990991
+ ],
+ [
+ 139.8047931098901,
+ 35.70344490990991
+ ],
+ [
+ 139.8047931098901,
+ 35.70362509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoNichome.1417.1",
+ "name": "本所二丁目",
+ "latitude": 35.703764,
+ "longitude": 139.801233,
+ "polygon": [
+ [
+ 139.8011231098901,
+ 35.70385409009009
+ ],
+ [
+ 139.80134289010988,
+ 35.70385409009009
+ ],
+ [
+ 139.80134289010988,
+ 35.70367390990991
+ ],
+ [
+ 139.8011231098901,
+ 35.70367390990991
+ ],
+ [
+ 139.8011231098901,
+ 35.70385409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoNichome.1417.2",
+ "name": "本所二丁目",
+ "latitude": 35.703639,
+ "longitude": 139.800658,
+ "polygon": [
+ [
+ 139.80054810989012,
+ 35.70372909009009
+ ],
+ [
+ 139.80076789010988,
+ 35.70372909009009
+ ],
+ [
+ 139.80076789010988,
+ 35.70354890990991
+ ],
+ [
+ 139.80054810989012,
+ 35.70354890990991
+ ],
+ [
+ 139.80054810989012,
+ 35.70372909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoYonchome.1418.1",
+ "name": "本所四丁目",
+ "latitude": 35.703888,
+ "longitude": 139.804241,
+ "polygon": [
+ [
+ 139.8041311098901,
+ 35.70397809009009
+ ],
+ [
+ 139.80435089010987,
+ 35.70397809009009
+ ],
+ [
+ 139.80435089010987,
+ 35.70379790990991
+ ],
+ [
+ 139.8041311098901,
+ 35.70379790990991
+ ],
+ [
+ 139.8041311098901,
+ 35.70397809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoYonchome.1418.2",
+ "name": "本所四丁目",
+ "latitude": 35.704296,
+ "longitude": 139.804631,
+ "polygon": [
+ [
+ 139.80452110989012,
+ 35.70438609009009
+ ],
+ [
+ 139.80474089010988,
+ 35.70438609009009
+ ],
+ [
+ 139.80474089010988,
+ 35.70420590990991
+ ],
+ [
+ 139.80452110989012,
+ 35.70420590990991
+ ],
+ [
+ 139.80452110989012,
+ 35.70438609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonjoYonchome.1418.3",
+ "name": "本所四丁目",
+ "latitude": 35.703838,
+ "longitude": 139.805107,
+ "polygon": [
+ [
+ 139.8049971098901,
+ 35.70392809009009
+ ],
+ [
+ 139.80521689010988,
+ 35.70392809009009
+ ],
+ [
+ 139.80521689010988,
+ 35.70374790990991
+ ],
+ [
+ 139.8049971098901,
+ 35.70374790990991
+ ],
+ [
+ 139.8049971098901,
+ 35.70392809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonchoSanchome.1419.1",
+ "name": "本町三丁目(ほんちょうさんちょうめ(ちゅうおうく))",
+ "latitude": 35.689687,
+ "longitude": 139.776684,
+ "polygon": [
+ [
+ 139.7765741098901,
+ 35.68977709009009
+ ],
+ [
+ 139.77679389010987,
+ 35.68977709009009
+ ],
+ [
+ 139.77679389010987,
+ 35.68959690990991
+ ],
+ [
+ 139.7765741098901,
+ 35.68959690990991
+ ],
+ [
+ 139.7765741098901,
+ 35.68977709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonchoSanchome.1419.2",
+ "name": "本町三丁目(ほんちょうさんちょうめ(ちゅうおうく))",
+ "latitude": 35.689273,
+ "longitude": 139.774789,
+ "polygon": [
+ [
+ 139.77467910989012,
+ 35.68936309009009
+ ],
+ [
+ 139.77489889010988,
+ 35.68936309009009
+ ],
+ [
+ 139.77489889010988,
+ 35.68918290990991
+ ],
+ [
+ 139.77467910989012,
+ 35.68918290990991
+ ],
+ [
+ 139.77467910989012,
+ 35.68936309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonchoRokuchome.1421.1",
+ "name": "本町六丁目",
+ "latitude": 35.697511,
+ "longitude": 139.664105,
+ "polygon": [
+ [
+ 139.66399510989012,
+ 35.69760109009009
+ ],
+ [
+ 139.6642148901099,
+ 35.69760109009009
+ ],
+ [
+ 139.6642148901099,
+ 35.69742090990991
+ ],
+ [
+ 139.66399510989012,
+ 35.69742090990991
+ ],
+ [
+ 139.66399510989012,
+ 35.69760109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonchoRokuchome.1421.2",
+ "name": "本町六丁目",
+ "latitude": 35.697289,
+ "longitude": 139.665822,
+ "polygon": [
+ [
+ 139.6657121098901,
+ 35.69737909009009
+ ],
+ [
+ 139.66593189010987,
+ 35.69737909009009
+ ],
+ [
+ 139.66593189010987,
+ 35.69719890990991
+ ],
+ [
+ 139.6657121098901,
+ 35.69719890990991
+ ],
+ [
+ 139.6657121098901,
+ 35.69737909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KatsushikaKeisatsusho.1422.1",
+ "name": "葛飾警察署前",
+ "latitude": 35.737721,
+ "longitude": 139.83711,
+ "polygon": [
+ [
+ 139.8370001098901,
+ 35.73781109009009
+ ],
+ [
+ 139.83721989010988,
+ 35.73781109009009
+ ],
+ [
+ 139.83721989010988,
+ 35.73763090990991
+ ],
+ [
+ 139.8370001098901,
+ 35.73763090990991
+ ],
+ [
+ 139.8370001098901,
+ 35.73781109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KatsushikaKeisatsusho.1422.2",
+ "name": "葛飾警察署前",
+ "latitude": 35.739399,
+ "longitude": 139.838493,
+ "polygon": [
+ [
+ 139.83838310989012,
+ 35.73948909009009
+ ],
+ [
+ 139.83860289010988,
+ 35.73948909009009
+ ],
+ [
+ 139.83860289010988,
+ 35.73930890990991
+ ],
+ [
+ 139.83838310989012,
+ 35.73930890990991
+ ],
+ [
+ 139.83838310989012,
+ 35.73948909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Boshiba.1424.1",
+ "name": "棒茅場",
+ "latitude": 35.67929,
+ "longitude": 139.856401,
+ "polygon": [
+ [
+ 139.85629110989012,
+ 35.67938009009009
+ ],
+ [
+ 139.8565108901099,
+ 35.67938009009009
+ ],
+ [
+ 139.8565108901099,
+ 35.67919990990991
+ ],
+ [
+ 139.85629110989012,
+ 35.67919990990991
+ ],
+ [
+ 139.85629110989012,
+ 35.67938009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Boshiba.1424.2",
+ "name": "棒茅場",
+ "latitude": 35.679377,
+ "longitude": 139.856962,
+ "polygon": [
+ [
+ 139.85685210989013,
+ 35.67946709009009
+ ],
+ [
+ 139.8570718901099,
+ 35.67946709009009
+ ],
+ [
+ 139.8570718901099,
+ 35.67928690990991
+ ],
+ [
+ 139.85685210989013,
+ 35.67928690990991
+ ],
+ [
+ 139.85685210989013,
+ 35.67946709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.BochiShita.1425.1",
+ "name": "墓地下",
+ "latitude": 35.6623,
+ "longitude": 139.72358,
+ "polygon": [
+ [
+ 139.72347010989012,
+ 35.66239009009009
+ ],
+ [
+ 139.72368989010988,
+ 35.66239009009009
+ ],
+ [
+ 139.72368989010988,
+ 35.66220990990991
+ ],
+ [
+ 139.72347010989012,
+ 35.66220990990991
+ ],
+ [
+ 139.72347010989012,
+ 35.66239009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.BochiShita.1425.2",
+ "name": "墓地下",
+ "latitude": 35.662458,
+ "longitude": 139.723838,
+ "polygon": [
+ [
+ 139.72372810989012,
+ 35.66254809009009
+ ],
+ [
+ 139.72394789010988,
+ 35.66254809009009
+ ],
+ [
+ 139.72394789010988,
+ 35.66236790990991
+ ],
+ [
+ 139.72372810989012,
+ 35.66236790990991
+ ],
+ [
+ 139.72372810989012,
+ 35.66254809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MachiyaItchome.1431.2",
+ "name": "町屋一丁目",
+ "latitude": 35.744947,
+ "longitude": 139.782081,
+ "polygon": [
+ [
+ 139.78197110989012,
+ 35.745037090090094
+ ],
+ [
+ 139.7821908901099,
+ 35.745037090090094
+ ],
+ [
+ 139.7821908901099,
+ 35.74485690990991
+ ],
+ [
+ 139.78197110989012,
+ 35.74485690990991
+ ],
+ [
+ 139.78197110989012,
+ 35.745037090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MasagoSakaUe.1429.1",
+ "name": "真砂坂上",
+ "latitude": 35.707208,
+ "longitude": 139.756771,
+ "polygon": [
+ [
+ 139.7566611098901,
+ 35.70729809009009
+ ],
+ [
+ 139.75688089010987,
+ 35.70729809009009
+ ],
+ [
+ 139.75688089010987,
+ 35.70711790990991
+ ],
+ [
+ 139.7566611098901,
+ 35.70711790990991
+ ],
+ [
+ 139.7566611098901,
+ 35.70729809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MasagoSakaUe.1429.2",
+ "name": "真砂坂上",
+ "latitude": 35.707454,
+ "longitude": 139.757401,
+ "polygon": [
+ [
+ 139.7572911098901,
+ 35.70754409009009
+ ],
+ [
+ 139.75751089010987,
+ 35.70754409009009
+ ],
+ [
+ 139.75751089010987,
+ 35.70736390990991
+ ],
+ [
+ 139.7572911098901,
+ 35.70736390990991
+ ],
+ [
+ 139.7572911098901,
+ 35.70754409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MachiyaStation.1430.1",
+ "name": "町屋駅前",
+ "latitude": 35.742189,
+ "longitude": 139.780088,
+ "polygon": [
+ [
+ 139.77997810989012,
+ 35.74227909009009
+ ],
+ [
+ 139.7801978901099,
+ 35.74227909009009
+ ],
+ [
+ 139.7801978901099,
+ 35.74209890990991
+ ],
+ [
+ 139.77997810989012,
+ 35.74209890990991
+ ],
+ [
+ 139.77997810989012,
+ 35.74227909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MachiyaStation.1430.2",
+ "name": "町屋駅前",
+ "latitude": 35.742367,
+ "longitude": 139.78035,
+ "polygon": [
+ [
+ 139.78024010989012,
+ 35.74245709009009
+ ],
+ [
+ 139.78045989010988,
+ 35.74245709009009
+ ],
+ [
+ 139.78045989010988,
+ 35.74227690990991
+ ],
+ [
+ 139.78024010989012,
+ 35.74227690990991
+ ],
+ [
+ 139.78024010989012,
+ 35.74245709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MachiyaItchome.1431.1",
+ "name": "町屋一丁目",
+ "latitude": 35.745167,
+ "longitude": 139.782063,
+ "polygon": [
+ [
+ 139.7819531098901,
+ 35.74525709009009
+ ],
+ [
+ 139.78217289010988,
+ 35.74525709009009
+ ],
+ [
+ 139.78217289010988,
+ 35.74507690990991
+ ],
+ [
+ 139.7819531098901,
+ 35.74507690990991
+ ],
+ [
+ 139.7819531098901,
+ 35.74525709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinowaStation.1493.1",
+ "name": "三ノ輪駅前",
+ "latitude": 35.729425,
+ "longitude": 139.791064,
+ "polygon": [
+ [
+ 139.79095410989012,
+ 35.72951509009009
+ ],
+ [
+ 139.7911738901099,
+ 35.72951509009009
+ ],
+ [
+ 139.7911738901099,
+ 35.72933490990991
+ ],
+ [
+ 139.79095410989012,
+ 35.72933490990991
+ ],
+ [
+ 139.79095410989012,
+ 35.72951509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MachiyaSanchome.1432.1",
+ "name": "町屋三丁目",
+ "latitude": 35.749342,
+ "longitude": 139.784818,
+ "polygon": [
+ [
+ 139.78470810989012,
+ 35.74943209009009
+ ],
+ [
+ 139.78492789010988,
+ 35.74943209009009
+ ],
+ [
+ 139.78492789010988,
+ 35.74925190990991
+ ],
+ [
+ 139.78470810989012,
+ 35.74925190990991
+ ],
+ [
+ 139.78470810989012,
+ 35.74943209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MachiyaSanchome.1432.2",
+ "name": "町屋三丁目",
+ "latitude": 35.749691,
+ "longitude": 139.784257,
+ "polygon": [
+ [
+ 139.7841471098901,
+ 35.74978109009009
+ ],
+ [
+ 139.78436689010988,
+ 35.74978109009009
+ ],
+ [
+ 139.78436689010988,
+ 35.74960090990991
+ ],
+ [
+ 139.7841471098901,
+ 35.74960090990991
+ ],
+ [
+ 139.7841471098901,
+ 35.74978109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MachiyaSanchome.1432.3",
+ "name": "町屋三丁目",
+ "latitude": 35.750008,
+ "longitude": 139.78548,
+ "polygon": [
+ [
+ 139.78537010989012,
+ 35.75009809009009
+ ],
+ [
+ 139.7855898901099,
+ 35.75009809009009
+ ],
+ [
+ 139.7855898901099,
+ 35.74991790990991
+ ],
+ [
+ 139.78537010989012,
+ 35.74991790990991
+ ],
+ [
+ 139.78537010989012,
+ 35.75009809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Matsue.1433.1",
+ "name": "松江",
+ "latitude": 35.696469,
+ "longitude": 139.870607,
+ "polygon": [
+ [
+ 139.87049710989012,
+ 35.69655909009009
+ ],
+ [
+ 139.8707168901099,
+ 35.69655909009009
+ ],
+ [
+ 139.8707168901099,
+ 35.69637890990991
+ ],
+ [
+ 139.87049710989012,
+ 35.69637890990991
+ ],
+ [
+ 139.87049710989012,
+ 35.69655909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Matsue.1433.3",
+ "name": "松江",
+ "latitude": 35.695842,
+ "longitude": 139.871309,
+ "polygon": [
+ [
+ 139.8711991098901,
+ 35.69593209009009
+ ],
+ [
+ 139.87141889010988,
+ 35.69593209009009
+ ],
+ [
+ 139.87141889010988,
+ 35.69575190990991
+ ],
+ [
+ 139.8711991098901,
+ 35.69575190990991
+ ],
+ [
+ 139.8711991098901,
+ 35.69593209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Matsue.1433.4",
+ "name": "松江",
+ "latitude": 35.696579,
+ "longitude": 139.871292,
+ "polygon": [
+ [
+ 139.87118210989013,
+ 35.69666909009009
+ ],
+ [
+ 139.8714018901099,
+ 35.69666909009009
+ ],
+ [
+ 139.8714018901099,
+ 35.69648890990991
+ ],
+ [
+ 139.87118210989013,
+ 35.69648890990991
+ ],
+ [
+ 139.87118210989013,
+ 35.69666909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Matsue.1433.5",
+ "name": "松江",
+ "latitude": 35.696813,
+ "longitude": 139.871342,
+ "polygon": [
+ [
+ 139.87123210989012,
+ 35.69690309009009
+ ],
+ [
+ 139.87145189010988,
+ 35.69690309009009
+ ],
+ [
+ 139.87145189010988,
+ 35.69672290990991
+ ],
+ [
+ 139.87123210989012,
+ 35.69672290990991
+ ],
+ [
+ 139.87123210989012,
+ 35.69690309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueDaiichiChugakko.1434.2",
+ "name": "松江第一中学校前",
+ "latitude": 35.689283,
+ "longitude": 139.866706,
+ "polygon": [
+ [
+ 139.8665961098901,
+ 35.68937309009009
+ ],
+ [
+ 139.86681589010988,
+ 35.68937309009009
+ ],
+ [
+ 139.86681589010988,
+ 35.68919290990991
+ ],
+ [
+ 139.8665961098901,
+ 35.68919290990991
+ ],
+ [
+ 139.8665961098901,
+ 35.68937309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsushimaSanchome.1435.1",
+ "name": "松島三丁目",
+ "latitude": 35.712532,
+ "longitude": 139.864239,
+ "polygon": [
+ [
+ 139.86412910989011,
+ 35.71262209009009
+ ],
+ [
+ 139.86434889010988,
+ 35.71262209009009
+ ],
+ [
+ 139.86434889010988,
+ 35.71244190990991
+ ],
+ [
+ 139.86412910989011,
+ 35.71244190990991
+ ],
+ [
+ 139.86412910989011,
+ 35.71262209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsushimaSanchome.1435.2",
+ "name": "松島三丁目",
+ "latitude": 35.712723,
+ "longitude": 139.863842,
+ "polygon": [
+ [
+ 139.86373210989012,
+ 35.71281309009009
+ ],
+ [
+ 139.8639518901099,
+ 35.71281309009009
+ ],
+ [
+ 139.8639518901099,
+ 35.71263290990991
+ ],
+ [
+ 139.86373210989012,
+ 35.71263290990991
+ ],
+ [
+ 139.86373210989012,
+ 35.71281309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Matsubara.1437.1",
+ "name": "松原",
+ "latitude": 35.775912,
+ "longitude": 139.339801,
+ "polygon": [
+ [
+ 139.3396911098901,
+ 35.77600209009009
+ ],
+ [
+ 139.33991089010988,
+ 35.77600209009009
+ ],
+ [
+ 139.33991089010988,
+ 35.77582190990991
+ ],
+ [
+ 139.3396911098901,
+ 35.77582190990991
+ ],
+ [
+ 139.3396911098901,
+ 35.77600209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Matsubara.1437.2",
+ "name": "松原",
+ "latitude": 35.775764,
+ "longitude": 139.339667,
+ "polygon": [
+ [
+ 139.3395571098901,
+ 35.77585409009009
+ ],
+ [
+ 139.33977689010987,
+ 35.77585409009009
+ ],
+ [
+ 139.33977689010987,
+ 35.77567390990991
+ ],
+ [
+ 139.3395571098901,
+ 35.77567390990991
+ ],
+ [
+ 139.3395571098901,
+ 35.77585409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaitaRokuchome.1438.1",
+ "name": "代田六丁目",
+ "latitude": 35.665393,
+ "longitude": 139.660891,
+ "polygon": [
+ [
+ 139.6607811098901,
+ 35.66548309009009
+ ],
+ [
+ 139.66100089010988,
+ 35.66548309009009
+ ],
+ [
+ 139.66100089010988,
+ 35.66530290990991
+ ],
+ [
+ 139.6607811098901,
+ 35.66530290990991
+ ],
+ [
+ 139.6607811098901,
+ 35.66548309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MitaGochome.1453.1",
+ "name": "三田五丁目",
+ "latitude": 35.646169,
+ "longitude": 139.739867,
+ "polygon": [
+ [
+ 139.73975710989012,
+ 35.64625909009009
+ ],
+ [
+ 139.7399768901099,
+ 35.64625909009009
+ ],
+ [
+ 139.7399768901099,
+ 35.64607890990991
+ ],
+ [
+ 139.73975710989012,
+ 35.64607890990991
+ ],
+ [
+ 139.73975710989012,
+ 35.64625909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaitaRokuchome.1438.2",
+ "name": "代田六丁目",
+ "latitude": 35.665126,
+ "longitude": 139.660608,
+ "polygon": [
+ [
+ 139.6604981098901,
+ 35.66521609009009
+ ],
+ [
+ 139.66071789010988,
+ 35.66521609009009
+ ],
+ [
+ 139.66071789010988,
+ 35.66503590990991
+ ],
+ [
+ 139.6604981098901,
+ 35.66503590990991
+ ],
+ [
+ 139.6604981098901,
+ 35.66521609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Manseibashi.1440.1",
+ "name": "万世橋",
+ "latitude": 35.698363,
+ "longitude": 139.769873,
+ "polygon": [
+ [
+ 139.7697631098901,
+ 35.69845309009009
+ ],
+ [
+ 139.76998289010987,
+ 35.69845309009009
+ ],
+ [
+ 139.76998289010987,
+ 35.69827290990991
+ ],
+ [
+ 139.7697631098901,
+ 35.69827290990991
+ ],
+ [
+ 139.7697631098901,
+ 35.69845309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Manseibashi.1440.2",
+ "name": "万世橋",
+ "latitude": 35.697948,
+ "longitude": 139.770295,
+ "polygon": [
+ [
+ 139.77018510989012,
+ 35.69803809009009
+ ],
+ [
+ 139.7704048901099,
+ 35.69803809009009
+ ],
+ [
+ 139.7704048901099,
+ 35.69785790990991
+ ],
+ [
+ 139.77018510989012,
+ 35.69785790990991
+ ],
+ [
+ 139.77018510989012,
+ 35.69803809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mannembashi.1441.1",
+ "name": "万年橋",
+ "latitude": 35.785639,
+ "longitude": 139.24981,
+ "polygon": [
+ [
+ 139.2497001098901,
+ 35.78572909009009
+ ],
+ [
+ 139.24991989010988,
+ 35.78572909009009
+ ],
+ [
+ 139.24991989010988,
+ 35.78554890990991
+ ],
+ [
+ 139.2497001098901,
+ 35.78554890990991
+ ],
+ [
+ 139.2497001098901,
+ 35.78572909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MizuhomachiyakubaIriguchi.1448.2",
+ "name": "瑞穂町役場入口",
+ "latitude": 35.770307,
+ "longitude": 139.352661,
+ "polygon": [
+ [
+ 139.35255110989013,
+ 35.77039709009009
+ ],
+ [
+ 139.3527708901099,
+ 35.77039709009009
+ ],
+ [
+ 139.3527708901099,
+ 35.77021690990991
+ ],
+ [
+ 139.35255110989013,
+ 35.77021690990991
+ ],
+ [
+ 139.35255110989013,
+ 35.77039709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MitaGochome.1453.2",
+ "name": "三田五丁目",
+ "latitude": 35.646424,
+ "longitude": 139.739786,
+ "polygon": [
+ [
+ 139.73967610989013,
+ 35.64651409009009
+ ],
+ [
+ 139.7398958901099,
+ 35.64651409009009
+ ],
+ [
+ 139.7398958901099,
+ 35.64633390990991
+ ],
+ [
+ 139.73967610989013,
+ 35.64633390990991
+ ],
+ [
+ 139.73967610989013,
+ 35.64651409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mannembashi.1441.2",
+ "name": "万年橋",
+ "latitude": 35.785713,
+ "longitude": 139.249676,
+ "polygon": [
+ [
+ 139.2495661098901,
+ 35.78580309009009
+ ],
+ [
+ 139.24978589010988,
+ 35.78580309009009
+ ],
+ [
+ 139.24978589010988,
+ 35.78562290990991
+ ],
+ [
+ 139.2495661098901,
+ 35.78562290990991
+ ],
+ [
+ 139.2495661098901,
+ 35.78580309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MikawashimaStation.1442.1",
+ "name": "三河島駅前",
+ "latitude": 35.73331,
+ "longitude": 139.778747,
+ "polygon": [
+ [
+ 139.77863710989013,
+ 35.73340009009009
+ ],
+ [
+ 139.7788568901099,
+ 35.73340009009009
+ ],
+ [
+ 139.7788568901099,
+ 35.73321990990991
+ ],
+ [
+ 139.77863710989013,
+ 35.73321990990991
+ ],
+ [
+ 139.77863710989013,
+ 35.73340009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MikawashimaStation.1442.2",
+ "name": "三河島駅前",
+ "latitude": 35.732795,
+ "longitude": 139.778578,
+ "polygon": [
+ [
+ 139.77846810989013,
+ 35.73288509009009
+ ],
+ [
+ 139.7786878901099,
+ 35.73288509009009
+ ],
+ [
+ 139.7786878901099,
+ 35.73270490990991
+ ],
+ [
+ 139.77846810989013,
+ 35.73270490990991
+ ],
+ [
+ 139.77846810989013,
+ 35.73288509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MisujiNichome.1444.1",
+ "name": "三筋二丁目",
+ "latitude": 35.706218,
+ "longitude": 139.78873,
+ "polygon": [
+ [
+ 139.7886201098901,
+ 35.70630809009009
+ ],
+ [
+ 139.78883989010987,
+ 35.70630809009009
+ ],
+ [
+ 139.78883989010987,
+ 35.70612790990991
+ ],
+ [
+ 139.7886201098901,
+ 35.70612790990991
+ ],
+ [
+ 139.7886201098901,
+ 35.70630809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MisujiNichome.1444.2",
+ "name": "三筋二丁目",
+ "latitude": 35.706506,
+ "longitude": 139.787619,
+ "polygon": [
+ [
+ 139.78750910989012,
+ 35.70659609009009
+ ],
+ [
+ 139.7877288901099,
+ 35.70659609009009
+ ],
+ [
+ 139.7877288901099,
+ 35.70641590990991
+ ],
+ [
+ 139.78750910989012,
+ 35.70641590990991
+ ],
+ [
+ 139.78750910989012,
+ 35.70659609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeStation.1445.1",
+ "name": "一之江駅前",
+ "latitude": 35.686131,
+ "longitude": 139.883525,
+ "polygon": [
+ [
+ 139.8834151098901,
+ 35.68622109009009
+ ],
+ [
+ 139.88363489010987,
+ 35.68622109009009
+ ],
+ [
+ 139.88363489010987,
+ 35.68604090990991
+ ],
+ [
+ 139.8834151098901,
+ 35.68604090990991
+ ],
+ [
+ 139.8834151098901,
+ 35.68622109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeStation.1445.2",
+ "name": "一之江駅前",
+ "latitude": 35.685966,
+ "longitude": 139.883569,
+ "polygon": [
+ [
+ 139.8834591098901,
+ 35.68605609009009
+ ],
+ [
+ 139.88367889010988,
+ 35.68605609009009
+ ],
+ [
+ 139.88367889010988,
+ 35.68587590990991
+ ],
+ [
+ 139.8834591098901,
+ 35.68587590990991
+ ],
+ [
+ 139.8834591098901,
+ 35.68605609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeStation.1445.3",
+ "name": "一之江駅前",
+ "latitude": 35.685932,
+ "longitude": 139.883756,
+ "polygon": [
+ [
+ 139.88364610989012,
+ 35.68602209009009
+ ],
+ [
+ 139.8838658901099,
+ 35.68602209009009
+ ],
+ [
+ 139.8838658901099,
+ 35.68584190990991
+ ],
+ [
+ 139.88364610989012,
+ 35.68584190990991
+ ],
+ [
+ 139.88364610989012,
+ 35.68602209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeStation.1445.5",
+ "name": "一之江駅前",
+ "latitude": 35.686156,
+ "longitude": 139.88401,
+ "polygon": [
+ [
+ 139.8839001098901,
+ 35.68624609009009
+ ],
+ [
+ 139.88411989010987,
+ 35.68624609009009
+ ],
+ [
+ 139.88411989010987,
+ 35.68606590990991
+ ],
+ [
+ 139.8839001098901,
+ 35.68606590990991
+ ],
+ [
+ 139.8839001098901,
+ 35.68624609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeStation.1445.7",
+ "name": "一之江駅前",
+ "latitude": 35.685884,
+ "longitude": 139.882585,
+ "polygon": [
+ [
+ 139.88247510989012,
+ 35.68597409009009
+ ],
+ [
+ 139.8826948901099,
+ 35.68597409009009
+ ],
+ [
+ 139.8826948901099,
+ 35.68579390990991
+ ],
+ [
+ 139.88247510989012,
+ 35.68579390990991
+ ],
+ [
+ 139.88247510989012,
+ 35.68597409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mitatebashi.1450.1",
+ "name": "御楯橋",
+ "latitude": 35.629686,
+ "longitude": 139.746817,
+ "polygon": [
+ [
+ 139.7467071098901,
+ 35.62977609009009
+ ],
+ [
+ 139.74692689010988,
+ 35.62977609009009
+ ],
+ [
+ 139.74692689010988,
+ 35.62959590990991
+ ],
+ [
+ 139.7467071098901,
+ 35.62959590990991
+ ],
+ [
+ 139.7467071098901,
+ 35.62977609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchinoeStation.1445.8",
+ "name": "一之江駅前",
+ "latitude": 35.685992,
+ "longitude": 139.882106,
+ "polygon": [
+ [
+ 139.8819961098901,
+ 35.68608209009009
+ ],
+ [
+ 139.88221589010988,
+ 35.68608209009009
+ ],
+ [
+ 139.88221589010988,
+ 35.68590190990991
+ ],
+ [
+ 139.8819961098901,
+ 35.68590190990991
+ ],
+ [
+ 139.8819961098901,
+ 35.68608209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MizueChugakko.1446.1",
+ "name": "瑞江中学校前",
+ "latitude": 35.679443,
+ "longitude": 139.885243,
+ "polygon": [
+ [
+ 139.88513310989012,
+ 35.67953309009009
+ ],
+ [
+ 139.88535289010989,
+ 35.67953309009009
+ ],
+ [
+ 139.88535289010989,
+ 35.67935290990991
+ ],
+ [
+ 139.88513310989012,
+ 35.67935290990991
+ ],
+ [
+ 139.88513310989012,
+ 35.67953309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MizuhoDaiichiShogakko.1447.1",
+ "name": "瑞穂第一小学校前",
+ "latitude": 35.768377,
+ "longitude": 139.354937,
+ "polygon": [
+ [
+ 139.35482710989012,
+ 35.76846709009009
+ ],
+ [
+ 139.3550468901099,
+ 35.76846709009009
+ ],
+ [
+ 139.3550468901099,
+ 35.76828690990991
+ ],
+ [
+ 139.35482710989012,
+ 35.76828690990991
+ ],
+ [
+ 139.35482710989012,
+ 35.76846709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MizuhoDaiichiShogakko.1447.2",
+ "name": "瑞穂第一小学校前",
+ "latitude": 35.768121,
+ "longitude": 139.355075,
+ "polygon": [
+ [
+ 139.35496510989012,
+ 35.76821109009009
+ ],
+ [
+ 139.35518489010988,
+ 35.76821109009009
+ ],
+ [
+ 139.35518489010988,
+ 35.76803090990991
+ ],
+ [
+ 139.35496510989012,
+ 35.76803090990991
+ ],
+ [
+ 139.35496510989012,
+ 35.76821109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MizuhomachiyakubaIriguchi.1448.1",
+ "name": "瑞穂町役場入口",
+ "latitude": 35.770112,
+ "longitude": 139.352922,
+ "polygon": [
+ [
+ 139.35281210989012,
+ 35.77020209009009
+ ],
+ [
+ 139.3530318901099,
+ 35.77020209009009
+ ],
+ [
+ 139.3530318901099,
+ 35.77002190990991
+ ],
+ [
+ 139.35281210989012,
+ 35.77002190990991
+ ],
+ [
+ 139.35281210989012,
+ 35.77020209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mitsugi.1454.1",
+ "name": "三ツ木",
+ "latitude": 35.759101,
+ "longitude": 139.375282,
+ "polygon": [
+ [
+ 139.37517210989012,
+ 35.75919109009009
+ ],
+ [
+ 139.37539189010988,
+ 35.75919109009009
+ ],
+ [
+ 139.37539189010988,
+ 35.75901090990991
+ ],
+ [
+ 139.37517210989012,
+ 35.75901090990991
+ ],
+ [
+ 139.37517210989012,
+ 35.75919109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mitsugi.1454.2",
+ "name": "三ツ木",
+ "latitude": 35.75908,
+ "longitude": 139.374411,
+ "polygon": [
+ [
+ 139.37430110989013,
+ 35.75917009009009
+ ],
+ [
+ 139.3745208901099,
+ 35.75917009009009
+ ],
+ [
+ 139.3745208901099,
+ 35.75898990990991
+ ],
+ [
+ 139.37430110989013,
+ 35.75898990990991
+ ],
+ [
+ 139.37430110989013,
+ 35.75917009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MitsugiYakushi.1455.1",
+ "name": "三ツ木薬師前",
+ "latitude": 35.760109,
+ "longitude": 139.3717,
+ "polygon": [
+ [
+ 139.37159010989012,
+ 35.76019909009009
+ ],
+ [
+ 139.3718098901099,
+ 35.76019909009009
+ ],
+ [
+ 139.3718098901099,
+ 35.76001890990991
+ ],
+ [
+ 139.37159010989012,
+ 35.76001890990991
+ ],
+ [
+ 139.37159010989012,
+ 35.76019909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyakobashiJutaku.1502.1",
+ "name": "都橋住宅前",
+ "latitude": 35.642839,
+ "longitude": 139.796844,
+ "polygon": [
+ [
+ 139.7967341098901,
+ 35.64292909009009
+ ],
+ [
+ 139.79695389010988,
+ 35.64292909009009
+ ],
+ [
+ 139.79695389010988,
+ 35.64274890990991
+ ],
+ [
+ 139.7967341098901,
+ 35.64274890990991
+ ],
+ [
+ 139.7967341098901,
+ 35.64292909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MitsugiYakushi.1455.2",
+ "name": "三ツ木薬師前",
+ "latitude": 35.759958,
+ "longitude": 139.371826,
+ "polygon": [
+ [
+ 139.37171610989012,
+ 35.76004809009009
+ ],
+ [
+ 139.37193589010988,
+ 35.76004809009009
+ ],
+ [
+ 139.37193589010988,
+ 35.75986790990991
+ ],
+ [
+ 139.37171610989012,
+ 35.75986790990991
+ ],
+ [
+ 139.37171610989012,
+ 35.76004809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaGochome.1467.2",
+ "name": "南青山五丁目",
+ "latitude": 35.662744,
+ "longitude": 139.711467,
+ "polygon": [
+ [
+ 139.71135710989012,
+ 35.662834090090094
+ ],
+ [
+ 139.71157689010988,
+ 35.662834090090094
+ ],
+ [
+ 139.71157689010988,
+ 35.66265390990991
+ ],
+ [
+ 139.71135710989012,
+ 35.66265390990991
+ ],
+ [
+ 139.71135710989012,
+ 35.662834090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriItchome.1458.3",
+ "name": "緑一丁目",
+ "latitude": 35.694695,
+ "longitude": 139.798581,
+ "polygon": [
+ [
+ 139.79847110989013,
+ 35.69478509009009
+ ],
+ [
+ 139.7986908901099,
+ 35.69478509009009
+ ],
+ [
+ 139.7986908901099,
+ 35.69460490990991
+ ],
+ [
+ 139.79847110989013,
+ 35.69460490990991
+ ],
+ [
+ 139.79847110989013,
+ 35.69478509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriItchome.1458.4",
+ "name": "緑一丁目",
+ "latitude": 35.694511,
+ "longitude": 139.798478,
+ "polygon": [
+ [
+ 139.7983681098901,
+ 35.69460109009009
+ ],
+ [
+ 139.79858789010987,
+ 35.69460109009009
+ ],
+ [
+ 139.79858789010987,
+ 35.69442090990991
+ ],
+ [
+ 139.7983681098901,
+ 35.69442090990991
+ ],
+ [
+ 139.7983681098901,
+ 35.69460109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriItchome.1458.5",
+ "name": "緑一丁目",
+ "latitude": 35.693792,
+ "longitude": 139.797609,
+ "polygon": [
+ [
+ 139.7974991098901,
+ 35.69388209009009
+ ],
+ [
+ 139.79771889010988,
+ 35.69388209009009
+ ],
+ [
+ 139.79771889010988,
+ 35.69370190990991
+ ],
+ [
+ 139.7974991098901,
+ 35.69370190990991
+ ],
+ [
+ 139.7974991098901,
+ 35.69388209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriItchome.1458.6",
+ "name": "緑一丁目",
+ "latitude": 35.693911,
+ "longitude": 139.797814,
+ "polygon": [
+ [
+ 139.7977041098901,
+ 35.69400109009009
+ ],
+ [
+ 139.79792389010987,
+ 35.69400109009009
+ ],
+ [
+ 139.79792389010987,
+ 35.69382090990991
+ ],
+ [
+ 139.7977041098901,
+ 35.69382090990991
+ ],
+ [
+ 139.7977041098901,
+ 35.69400109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriNichome.1459.1",
+ "name": "緑二丁目",
+ "latitude": 35.694595,
+ "longitude": 139.800987,
+ "polygon": [
+ [
+ 139.8008771098901,
+ 35.69468509009009
+ ],
+ [
+ 139.80109689010987,
+ 35.69468509009009
+ ],
+ [
+ 139.80109689010987,
+ 35.69450490990991
+ ],
+ [
+ 139.8008771098901,
+ 35.69450490990991
+ ],
+ [
+ 139.8008771098901,
+ 35.69468509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriNichome.1459.2",
+ "name": "緑二丁目",
+ "latitude": 35.69487,
+ "longitude": 139.802098,
+ "polygon": [
+ [
+ 139.80198810989012,
+ 35.69496009009009
+ ],
+ [
+ 139.80220789010988,
+ 35.69496009009009
+ ],
+ [
+ 139.80220789010988,
+ 35.69477990990991
+ ],
+ [
+ 139.80198810989012,
+ 35.69477990990991
+ ],
+ [
+ 139.80198810989012,
+ 35.69496009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriSanchome.1460.1",
+ "name": "緑三丁目",
+ "latitude": 35.69487,
+ "longitude": 139.804714,
+ "polygon": [
+ [
+ 139.8046041098901,
+ 35.69496009009009
+ ],
+ [
+ 139.80482389010987,
+ 35.69496009009009
+ ],
+ [
+ 139.80482389010987,
+ 35.69477990990991
+ ],
+ [
+ 139.8046041098901,
+ 35.69477990990991
+ ],
+ [
+ 139.8046041098901,
+ 35.69496009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriSanchome.1460.2",
+ "name": "緑三丁目",
+ "latitude": 35.69536,
+ "longitude": 139.805375,
+ "polygon": [
+ [
+ 139.80526510989012,
+ 35.69545009009009
+ ],
+ [
+ 139.80548489010988,
+ 35.69545009009009
+ ],
+ [
+ 139.80548489010988,
+ 35.69526990990991
+ ],
+ [
+ 139.80526510989012,
+ 35.69526990990991
+ ],
+ [
+ 139.80526510989012,
+ 35.69545009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriSanchome.1460.3",
+ "name": "緑三丁目",
+ "latitude": 35.694572,
+ "longitude": 139.80564,
+ "polygon": [
+ [
+ 139.80553010989013,
+ 35.69466209009009
+ ],
+ [
+ 139.8057498901099,
+ 35.69466209009009
+ ],
+ [
+ 139.8057498901099,
+ 35.69448190990991
+ ],
+ [
+ 139.80553010989013,
+ 35.69448190990991
+ ],
+ [
+ 139.80553010989013,
+ 35.69466209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaNichome.1466.2",
+ "name": "南青山二丁目",
+ "latitude": 35.667463,
+ "longitude": 139.718817,
+ "polygon": [
+ [
+ 139.71870710989012,
+ 35.66755309009009
+ ],
+ [
+ 139.71892689010988,
+ 35.66755309009009
+ ],
+ [
+ 139.71892689010988,
+ 35.66737290990991
+ ],
+ [
+ 139.71870710989012,
+ 35.66737290990991
+ ],
+ [
+ 139.71870710989012,
+ 35.66755309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MidoriSanchome.1460.4",
+ "name": "緑三丁目",
+ "latitude": 35.695131,
+ "longitude": 139.806443,
+ "polygon": [
+ [
+ 139.80633310989012,
+ 35.695221090090094
+ ],
+ [
+ 139.80655289010988,
+ 35.695221090090094
+ ],
+ [
+ 139.80655289010988,
+ 35.69504090990991
+ ],
+ [
+ 139.80633310989012,
+ 35.69504090990991
+ ],
+ [
+ 139.80633310989012,
+ 35.695221090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaiganDori.1462.2",
+ "name": "海岸通り",
+ "latitude": 35.63994,
+ "longitude": 139.753914,
+ "polygon": [
+ [
+ 139.75380410989013,
+ 35.64003009009009
+ ],
+ [
+ 139.7540238901099,
+ 35.64003009009009
+ ],
+ [
+ 139.7540238901099,
+ 35.63984990990991
+ ],
+ [
+ 139.75380410989013,
+ 35.63984990990991
+ ],
+ [
+ 139.75380410989013,
+ 35.64003009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinatoSanchome.1464.1",
+ "name": "湊三丁目",
+ "latitude": 35.670963,
+ "longitude": 139.779455,
+ "polygon": [
+ [
+ 139.77934510989013,
+ 35.67105309009009
+ ],
+ [
+ 139.7795648901099,
+ 35.67105309009009
+ ],
+ [
+ 139.7795648901099,
+ 35.67087290990991
+ ],
+ [
+ 139.77934510989013,
+ 35.67087290990991
+ ],
+ [
+ 139.77934510989013,
+ 35.67105309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinatoSanchome.1464.2",
+ "name": "湊三丁目",
+ "latitude": 35.670569,
+ "longitude": 139.779105,
+ "polygon": [
+ [
+ 139.7789951098901,
+ 35.67065909009009
+ ],
+ [
+ 139.77921489010987,
+ 35.67065909009009
+ ],
+ [
+ 139.77921489010987,
+ 35.67047890990991
+ ],
+ [
+ 139.7789951098901,
+ 35.67047890990991
+ ],
+ [
+ 139.7789951098901,
+ 35.67065909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaNichome.1466.1",
+ "name": "南青山二丁目",
+ "latitude": 35.667713,
+ "longitude": 139.718461,
+ "polygon": [
+ [
+ 139.7183511098901,
+ 35.66780309009009
+ ],
+ [
+ 139.71857089010987,
+ 35.66780309009009
+ ],
+ [
+ 139.71857089010987,
+ 35.66762290990991
+ ],
+ [
+ 139.7183511098901,
+ 35.66762290990991
+ ],
+ [
+ 139.7183511098901,
+ 35.66780309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuShako.1478.2",
+ "name": "南千住車庫前",
+ "latitude": 35.73082,
+ "longitude": 139.798447,
+ "polygon": [
+ [
+ 139.79833710989013,
+ 35.73091009009009
+ ],
+ [
+ 139.7985568901099,
+ 35.73091009009009
+ ],
+ [
+ 139.7985568901099,
+ 35.73072990990991
+ ],
+ [
+ 139.79833710989013,
+ 35.73072990990991
+ ],
+ [
+ 139.79833710989013,
+ 35.73091009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaRokuchome.1468.1",
+ "name": "南青山六丁目",
+ "latitude": 35.661228,
+ "longitude": 139.714412,
+ "polygon": [
+ [
+ 139.71430210989013,
+ 35.66131809009009
+ ],
+ [
+ 139.7145218901099,
+ 35.66131809009009
+ ],
+ [
+ 139.7145218901099,
+ 35.66113790990991
+ ],
+ [
+ 139.71430210989013,
+ 35.66113790990991
+ ],
+ [
+ 139.71430210989013,
+ 35.66131809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaRokuchome.1468.2",
+ "name": "南青山六丁目",
+ "latitude": 35.660699,
+ "longitude": 139.715337,
+ "polygon": [
+ [
+ 139.71522710989012,
+ 35.66078909009009
+ ],
+ [
+ 139.7154468901099,
+ 35.66078909009009
+ ],
+ [
+ 139.7154468901099,
+ 35.66060890990991
+ ],
+ [
+ 139.71522710989012,
+ 35.66060890990991
+ ],
+ [
+ 139.71522710989012,
+ 35.66078909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaNanachome.1469.1",
+ "name": "南青山七丁目",
+ "latitude": 35.659204,
+ "longitude": 139.720376,
+ "polygon": [
+ [
+ 139.7202661098901,
+ 35.65929409009009
+ ],
+ [
+ 139.72048589010987,
+ 35.65929409009009
+ ],
+ [
+ 139.72048589010987,
+ 35.65911390990991
+ ],
+ [
+ 139.7202661098901,
+ 35.65911390990991
+ ],
+ [
+ 139.7202661098901,
+ 35.65929409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaNanachome.1469.2",
+ "name": "南青山七丁目",
+ "latitude": 35.659798,
+ "longitude": 139.718101,
+ "polygon": [
+ [
+ 139.7179911098901,
+ 35.65988809009009
+ ],
+ [
+ 139.71821089010987,
+ 35.65988809009009
+ ],
+ [
+ 139.71821089010987,
+ 35.65970790990991
+ ],
+ [
+ 139.7179911098901,
+ 35.65970790990991
+ ],
+ [
+ 139.7179911098901,
+ 35.65988809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaNanachome.1469.3",
+ "name": "南青山七丁目",
+ "latitude": 35.659137,
+ "longitude": 139.718075,
+ "polygon": [
+ [
+ 139.71796510989012,
+ 35.65922709009009
+ ],
+ [
+ 139.71818489010988,
+ 35.65922709009009
+ ],
+ [
+ 139.71818489010988,
+ 35.65904690990991
+ ],
+ [
+ 139.71796510989012,
+ 35.65904690990991
+ ],
+ [
+ 139.71796510989012,
+ 35.65922709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiAoyamaNanachome.1469.4",
+ "name": "南青山七丁目",
+ "latitude": 35.659406,
+ "longitude": 139.718211,
+ "polygon": [
+ [
+ 139.7181011098901,
+ 35.65949609009009
+ ],
+ [
+ 139.71832089010988,
+ 35.65949609009009
+ ],
+ [
+ 139.71832089010988,
+ 35.65931590990991
+ ],
+ [
+ 139.7181011098901,
+ 35.65931590990991
+ ],
+ [
+ 139.7181011098901,
+ 35.65949609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiIkebukuroSanchome.1470.2",
+ "name": "南池袋三丁目",
+ "latitude": 35.727313,
+ "longitude": 139.71238,
+ "polygon": [
+ [
+ 139.7122701098901,
+ 35.72740309009009
+ ],
+ [
+ 139.71248989010988,
+ 35.72740309009009
+ ],
+ [
+ 139.71248989010988,
+ 35.72722290990991
+ ],
+ [
+ 139.7122701098901,
+ 35.72722290990991
+ ],
+ [
+ 139.7122701098901,
+ 35.72740309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiIkebukuroSanchome.1470.3",
+ "name": "南池袋三丁目",
+ "latitude": 35.725926,
+ "longitude": 139.711637,
+ "polygon": [
+ [
+ 139.7115271098901,
+ 35.72601609009009
+ ],
+ [
+ 139.71174689010988,
+ 35.72601609009009
+ ],
+ [
+ 139.71174689010988,
+ 35.72583590990991
+ ],
+ [
+ 139.7115271098901,
+ 35.72583590990991
+ ],
+ [
+ 139.7115271098901,
+ 35.72601609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiOtsukaItchome.1471.1",
+ "name": "南大塚一丁目",
+ "latitude": 35.725682,
+ "longitude": 139.735365,
+ "polygon": [
+ [
+ 139.73525510989012,
+ 35.72577209009009
+ ],
+ [
+ 139.73547489010988,
+ 35.72577209009009
+ ],
+ [
+ 139.73547489010988,
+ 35.72559190990991
+ ],
+ [
+ 139.73525510989012,
+ 35.72559190990991
+ ],
+ [
+ 139.73525510989012,
+ 35.72577209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiOtsukaItchome.1471.2",
+ "name": "南大塚一丁目",
+ "latitude": 35.726032,
+ "longitude": 139.734886,
+ "polygon": [
+ [
+ 139.7347761098901,
+ 35.72612209009009
+ ],
+ [
+ 139.73499589010987,
+ 35.72612209009009
+ ],
+ [
+ 139.73499589010987,
+ 35.725941909909906
+ ],
+ [
+ 139.7347761098901,
+ 35.725941909909906
+ ],
+ [
+ 139.7347761098901,
+ 35.72612209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiShogakko.1472.1",
+ "name": "南葛西小学校前",
+ "latitude": 35.647095,
+ "longitude": 139.87502,
+ "polygon": [
+ [
+ 139.87491010989012,
+ 35.64718509009009
+ ],
+ [
+ 139.8751298901099,
+ 35.64718509009009
+ ],
+ [
+ 139.8751298901099,
+ 35.64700490990991
+ ],
+ [
+ 139.87491010989012,
+ 35.64700490990991
+ ],
+ [
+ 139.87491010989012,
+ 35.64718509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiShogakko.1472.2",
+ "name": "南葛西小学校前",
+ "latitude": 35.647029,
+ "longitude": 139.874754,
+ "polygon": [
+ [
+ 139.8746441098901,
+ 35.647119090090094
+ ],
+ [
+ 139.87486389010988,
+ 35.647119090090094
+ ],
+ [
+ 139.87486389010988,
+ 35.64693890990991
+ ],
+ [
+ 139.8746441098901,
+ 35.64693890990991
+ ],
+ [
+ 139.8746441098901,
+ 35.647119090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiShinagawaNichome.1473.1",
+ "name": "南品川二丁目",
+ "latitude": 35.614606,
+ "longitude": 139.743695,
+ "polygon": [
+ [
+ 139.74358510989012,
+ 35.61469609009009
+ ],
+ [
+ 139.74380489010989,
+ 35.61469609009009
+ ],
+ [
+ 139.74380489010989,
+ 35.61451590990991
+ ],
+ [
+ 139.74358510989012,
+ 35.61451590990991
+ ],
+ [
+ 139.74358510989012,
+ 35.61469609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaItchome.1474.1",
+ "name": "南砂一丁目",
+ "latitude": 35.678703,
+ "longitude": 139.824375,
+ "polygon": [
+ [
+ 139.82426510989012,
+ 35.67879309009009
+ ],
+ [
+ 139.8244848901099,
+ 35.67879309009009
+ ],
+ [
+ 139.8244848901099,
+ 35.67861290990991
+ ],
+ [
+ 139.82426510989012,
+ 35.67861290990991
+ ],
+ [
+ 139.82426510989012,
+ 35.67879309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaItchome.1474.2",
+ "name": "南砂一丁目",
+ "latitude": 35.67878,
+ "longitude": 139.824077,
+ "polygon": [
+ [
+ 139.8239671098901,
+ 35.67887009009009
+ ],
+ [
+ 139.82418689010987,
+ 35.67887009009009
+ ],
+ [
+ 139.82418689010987,
+ 35.67868990990991
+ ],
+ [
+ 139.8239671098901,
+ 35.67868990990991
+ ],
+ [
+ 139.8239671098901,
+ 35.67887009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoUntenMenkyoShikenjo.1475.1",
+ "name": "江東運転免許試験場前",
+ "latitude": 35.669647,
+ "longitude": 139.821512,
+ "polygon": [
+ [
+ 139.82140210989013,
+ 35.66973709009009
+ ],
+ [
+ 139.8216218901099,
+ 35.66973709009009
+ ],
+ [
+ 139.8216218901099,
+ 35.66955690990991
+ ],
+ [
+ 139.82140210989013,
+ 35.66955690990991
+ ],
+ [
+ 139.82140210989013,
+ 35.66973709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoUntenMenkyoShikenjo.1475.2",
+ "name": "江東運転免許試験場前",
+ "latitude": 35.669892,
+ "longitude": 139.821475,
+ "polygon": [
+ [
+ 139.8213651098901,
+ 35.66998209009009
+ ],
+ [
+ 139.82158489010988,
+ 35.66998209009009
+ ],
+ [
+ 139.82158489010988,
+ 35.66980190990991
+ ],
+ [
+ 139.8213651098901,
+ 35.66980190990991
+ ],
+ [
+ 139.8213651098901,
+ 35.66998209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaSanchome.1476.1",
+ "name": "南砂三丁目",
+ "latitude": 35.672727,
+ "longitude": 139.826296,
+ "polygon": [
+ [
+ 139.82618610989013,
+ 35.67281709009009
+ ],
+ [
+ 139.8264058901099,
+ 35.67281709009009
+ ],
+ [
+ 139.8264058901099,
+ 35.67263690990991
+ ],
+ [
+ 139.82618610989013,
+ 35.67263690990991
+ ],
+ [
+ 139.82618610989013,
+ 35.67281709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiShogakko.1497.2",
+ "name": "宮城小学校前",
+ "latitude": 35.760579,
+ "longitude": 139.756737,
+ "polygon": [
+ [
+ 139.7566271098901,
+ 35.76066909009009
+ ],
+ [
+ 139.75684689010987,
+ 35.76066909009009
+ ],
+ [
+ 139.75684689010987,
+ 35.76048890990991
+ ],
+ [
+ 139.7566271098901,
+ 35.76048890990991
+ ],
+ [
+ 139.7566271098901,
+ 35.76066909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaSanchome.1476.2",
+ "name": "南砂三丁目",
+ "latitude": 35.673352,
+ "longitude": 139.826626,
+ "polygon": [
+ [
+ 139.82651610989012,
+ 35.67344209009009
+ ],
+ [
+ 139.8267358901099,
+ 35.67344209009009
+ ],
+ [
+ 139.8267358901099,
+ 35.67326190990991
+ ],
+ [
+ 139.82651610989012,
+ 35.67326190990991
+ ],
+ [
+ 139.82651610989012,
+ 35.67344209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaRokuchome.1477.7",
+ "name": "南砂六丁目",
+ "latitude": 35.671092,
+ "longitude": 139.834175,
+ "polygon": [
+ [
+ 139.8340651098901,
+ 35.67118209009009
+ ],
+ [
+ 139.83428489010987,
+ 35.67118209009009
+ ],
+ [
+ 139.83428489010987,
+ 35.67100190990991
+ ],
+ [
+ 139.8340651098901,
+ 35.67100190990991
+ ],
+ [
+ 139.8340651098901,
+ 35.67118209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaRokuchome.1477.8",
+ "name": "南砂六丁目",
+ "latitude": 35.670924,
+ "longitude": 139.83442,
+ "polygon": [
+ [
+ 139.8343101098901,
+ 35.67101409009009
+ ],
+ [
+ 139.83452989010988,
+ 35.67101409009009
+ ],
+ [
+ 139.83452989010988,
+ 35.67083390990991
+ ],
+ [
+ 139.8343101098901,
+ 35.67083390990991
+ ],
+ [
+ 139.8343101098901,
+ 35.67101409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuShako.1478.1",
+ "name": "南千住車庫前",
+ "latitude": 35.731309,
+ "longitude": 139.798424,
+ "polygon": [
+ [
+ 139.79831410989013,
+ 35.73139909009009
+ ],
+ [
+ 139.7985338901099,
+ 35.73139909009009
+ ],
+ [
+ 139.7985338901099,
+ 35.73121890990991
+ ],
+ [
+ 139.79831410989013,
+ 35.73121890990991
+ ],
+ [
+ 139.79831410989013,
+ 35.73139909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidagawaKamotsueki.1479.1",
+ "name": "隅田川貨物駅前",
+ "latitude": 35.730311,
+ "longitude": 139.800673,
+ "polygon": [
+ [
+ 139.8005631098901,
+ 35.73040109009009
+ ],
+ [
+ 139.80078289010987,
+ 35.73040109009009
+ ],
+ [
+ 139.80078289010987,
+ 35.73022090990991
+ ],
+ [
+ 139.8005631098901,
+ 35.73022090990991
+ ],
+ [
+ 139.8005631098901,
+ 35.73040109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidagawaKamotsueki.1479.2",
+ "name": "隅田川貨物駅前",
+ "latitude": 35.730236,
+ "longitude": 139.800169,
+ "polygon": [
+ [
+ 139.80005910989013,
+ 35.73032609009009
+ ],
+ [
+ 139.8002788901099,
+ 35.73032609009009
+ ],
+ [
+ 139.8002788901099,
+ 35.73014590990991
+ ],
+ [
+ 139.80005910989013,
+ 35.73014590990991
+ ],
+ [
+ 139.80005910989013,
+ 35.73032609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuSanchome.1480.1",
+ "name": "南千住三丁目",
+ "latitude": 35.732666,
+ "longitude": 139.808368,
+ "polygon": [
+ [
+ 139.80825810989012,
+ 35.73275609009009
+ ],
+ [
+ 139.80847789010988,
+ 35.73275609009009
+ ],
+ [
+ 139.80847789010988,
+ 35.73257590990991
+ ],
+ [
+ 139.80825810989012,
+ 35.73257590990991
+ ],
+ [
+ 139.80825810989012,
+ 35.73275609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuSanchome.1480.2",
+ "name": "南千住三丁目",
+ "latitude": 35.732402,
+ "longitude": 139.807446,
+ "polygon": [
+ [
+ 139.80733610989012,
+ 35.73249209009009
+ ],
+ [
+ 139.80755589010988,
+ 35.73249209009009
+ ],
+ [
+ 139.80755589010988,
+ 35.73231190990991
+ ],
+ [
+ 139.80733610989012,
+ 35.73231190990991
+ ],
+ [
+ 139.80733610989012,
+ 35.73249209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuRokuchome.1481.1",
+ "name": "南千住六丁目",
+ "latitude": 35.735199,
+ "longitude": 139.795299,
+ "polygon": [
+ [
+ 139.79518910989012,
+ 35.73528909009009
+ ],
+ [
+ 139.79540889010988,
+ 35.73528909009009
+ ],
+ [
+ 139.79540889010988,
+ 35.73510890990991
+ ],
+ [
+ 139.79518910989012,
+ 35.73510890990991
+ ],
+ [
+ 139.79518910989012,
+ 35.73528909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuRokuchome.1481.2",
+ "name": "南千住六丁目",
+ "latitude": 35.736024,
+ "longitude": 139.795744,
+ "polygon": [
+ [
+ 139.79563410989013,
+ 35.73611409009009
+ ],
+ [
+ 139.7958538901099,
+ 35.73611409009009
+ ],
+ [
+ 139.7958538901099,
+ 35.73593390990991
+ ],
+ [
+ 139.79563410989013,
+ 35.73593390990991
+ ],
+ [
+ 139.79563410989013,
+ 35.73611409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuHatchome.1482.1",
+ "name": "南千住八丁目",
+ "latitude": 35.736213,
+ "longitude": 139.807887,
+ "polygon": [
+ [
+ 139.8077771098901,
+ 35.73630309009009
+ ],
+ [
+ 139.80799689010988,
+ 35.73630309009009
+ ],
+ [
+ 139.80799689010988,
+ 35.73612290990991
+ ],
+ [
+ 139.8077771098901,
+ 35.73612290990991
+ ],
+ [
+ 139.8077771098901,
+ 35.73630309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuHatchome.1482.2",
+ "name": "南千住八丁目",
+ "latitude": 35.73648,
+ "longitude": 139.807748,
+ "polygon": [
+ [
+ 139.80763810989012,
+ 35.73657009009009
+ ],
+ [
+ 139.8078578901099,
+ 35.73657009009009
+ ],
+ [
+ 139.8078578901099,
+ 35.73638990990991
+ ],
+ [
+ 139.80763810989012,
+ 35.73638990990991
+ ],
+ [
+ 139.80763810989012,
+ 35.73657009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiTakabashi.1483.1",
+ "name": "南高橋",
+ "latitude": 35.673588,
+ "longitude": 139.782594,
+ "polygon": [
+ [
+ 139.7824841098901,
+ 35.67367809009009
+ ],
+ [
+ 139.78270389010987,
+ 35.67367809009009
+ ],
+ [
+ 139.78270389010987,
+ 35.67349790990991
+ ],
+ [
+ 139.7824841098901,
+ 35.67349790990991
+ ],
+ [
+ 139.7824841098901,
+ 35.67367809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiTokiwadai.1485.1",
+ "name": "南常盤台",
+ "latitude": 35.756534,
+ "longitude": 139.690057,
+ "polygon": [
+ [
+ 139.6899471098901,
+ 35.75662409009009
+ ],
+ [
+ 139.69016689010988,
+ 35.75662409009009
+ ],
+ [
+ 139.69016689010988,
+ 35.75644390990991
+ ],
+ [
+ 139.6899471098901,
+ 35.75644390990991
+ ],
+ [
+ 139.6899471098901,
+ 35.75662409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiNagasakiGochome.1488.1",
+ "name": "南長崎五丁目",
+ "latitude": 35.727012,
+ "longitude": 139.681416,
+ "polygon": [
+ [
+ 139.68130610989013,
+ 35.72710209009009
+ ],
+ [
+ 139.6815258901099,
+ 35.72710209009009
+ ],
+ [
+ 139.6815258901099,
+ 35.72692190990991
+ ],
+ [
+ 139.68130610989013,
+ 35.72692190990991
+ ],
+ [
+ 139.68130610989013,
+ 35.72710209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiTokiwadai.1485.2",
+ "name": "南常盤台",
+ "latitude": 35.756404,
+ "longitude": 139.690337,
+ "polygon": [
+ [
+ 139.69022710989012,
+ 35.756494090090094
+ ],
+ [
+ 139.69044689010988,
+ 35.756494090090094
+ ],
+ [
+ 139.69044689010988,
+ 35.75631390990991
+ ],
+ [
+ 139.69022710989012,
+ 35.75631390990991
+ ],
+ [
+ 139.69022710989012,
+ 35.756494090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiNagasakiNichome.1486.1",
+ "name": "南長崎二丁目",
+ "latitude": 35.722782,
+ "longitude": 139.68888,
+ "polygon": [
+ [
+ 139.68877010989013,
+ 35.72287209009009
+ ],
+ [
+ 139.6889898901099,
+ 35.72287209009009
+ ],
+ [
+ 139.6889898901099,
+ 35.72269190990991
+ ],
+ [
+ 139.68877010989013,
+ 35.72269190990991
+ ],
+ [
+ 139.68877010989013,
+ 35.72287209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiNagasakiNichome.1486.3",
+ "name": "南長崎二丁目",
+ "latitude": 35.722807,
+ "longitude": 139.690185,
+ "polygon": [
+ [
+ 139.69007510989013,
+ 35.72289709009009
+ ],
+ [
+ 139.6902948901099,
+ 35.72289709009009
+ ],
+ [
+ 139.6902948901099,
+ 35.72271690990991
+ ],
+ [
+ 139.69007510989013,
+ 35.72271690990991
+ ],
+ [
+ 139.69007510989013,
+ 35.72289709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiNagasakiSanchome.1487.1",
+ "name": "南長崎三丁目",
+ "latitude": 35.724856,
+ "longitude": 139.686178,
+ "polygon": [
+ [
+ 139.68606810989013,
+ 35.72494609009009
+ ],
+ [
+ 139.6862878901099,
+ 35.72494609009009
+ ],
+ [
+ 139.6862878901099,
+ 35.72476590990991
+ ],
+ [
+ 139.68606810989013,
+ 35.72476590990991
+ ],
+ [
+ 139.68606810989013,
+ 35.72494609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiNagasakiSanchome.1487.2",
+ "name": "南長崎三丁目",
+ "latitude": 35.722886,
+ "longitude": 139.686542,
+ "polygon": [
+ [
+ 139.68643210989012,
+ 35.72297609009009
+ ],
+ [
+ 139.68665189010989,
+ 35.72297609009009
+ ],
+ [
+ 139.68665189010989,
+ 35.72279590990991
+ ],
+ [
+ 139.68643210989012,
+ 35.72279590990991
+ ],
+ [
+ 139.68643210989012,
+ 35.72297609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiNagasakiRokuchome.1489.2",
+ "name": "南長崎六丁目",
+ "latitude": 35.731338,
+ "longitude": 139.677969,
+ "polygon": [
+ [
+ 139.6778591098901,
+ 35.73142809009009
+ ],
+ [
+ 139.67807889010987,
+ 35.73142809009009
+ ],
+ [
+ 139.67807889010987,
+ 35.73124790990991
+ ],
+ [
+ 139.6778591098901,
+ 35.73124790990991
+ ],
+ [
+ 139.6778591098901,
+ 35.73142809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiHatsudai.1490.1",
+ "name": "南初台",
+ "latitude": 35.676449,
+ "longitude": 139.68767,
+ "polygon": [
+ [
+ 139.68756010989011,
+ 35.67653909009009
+ ],
+ [
+ 139.68777989010988,
+ 35.67653909009009
+ ],
+ [
+ 139.68777989010988,
+ 35.67635890990991
+ ],
+ [
+ 139.68756010989011,
+ 35.67635890990991
+ ],
+ [
+ 139.68756010989011,
+ 35.67653909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiHatsudai.1490.2",
+ "name": "南初台",
+ "latitude": 35.67617,
+ "longitude": 139.688037,
+ "polygon": [
+ [
+ 139.68792710989013,
+ 35.67626009009009
+ ],
+ [
+ 139.6881468901099,
+ 35.67626009009009
+ ],
+ [
+ 139.6881468901099,
+ 35.67607990990991
+ ],
+ [
+ 139.68792710989013,
+ 35.67607990990991
+ ],
+ [
+ 139.68792710989013,
+ 35.67626009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiBamba.1491.1",
+ "name": "南馬場",
+ "latitude": 35.613805,
+ "longitude": 139.741498,
+ "polygon": [
+ [
+ 139.74138810989012,
+ 35.61389509009009
+ ],
+ [
+ 139.7416078901099,
+ 35.61389509009009
+ ],
+ [
+ 139.7416078901099,
+ 35.61371490990991
+ ],
+ [
+ 139.74138810989012,
+ 35.61371490990991
+ ],
+ [
+ 139.74138810989012,
+ 35.61389509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mine.1492.1",
+ "name": "峰",
+ "latitude": 35.759251,
+ "longitude": 139.377415,
+ "polygon": [
+ [
+ 139.37730510989013,
+ 35.75934109009009
+ ],
+ [
+ 139.3775248901099,
+ 35.75934109009009
+ ],
+ [
+ 139.3775248901099,
+ 35.75916090990991
+ ],
+ [
+ 139.37730510989013,
+ 35.75916090990991
+ ],
+ [
+ 139.37730510989013,
+ 35.75934109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mine.1492.2",
+ "name": "峰",
+ "latitude": 35.759075,
+ "longitude": 139.377579,
+ "polygon": [
+ [
+ 139.37746910989011,
+ 35.75916509009009
+ ],
+ [
+ 139.37768889010988,
+ 35.75916509009009
+ ],
+ [
+ 139.37768889010988,
+ 35.75898490990991
+ ],
+ [
+ 139.37746910989011,
+ 35.75898490990991
+ ],
+ [
+ 139.37746910989011,
+ 35.75916509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinowaStation.1493.2",
+ "name": "三ノ輪駅前",
+ "latitude": 35.7293,
+ "longitude": 139.791279,
+ "polygon": [
+ [
+ 139.79116910989012,
+ 35.72939009009009
+ ],
+ [
+ 139.79138889010989,
+ 35.72939009009009
+ ],
+ [
+ 139.79138889010989,
+ 35.72920990990991
+ ],
+ [
+ 139.79116910989012,
+ 35.72920990990991
+ ],
+ [
+ 139.79116910989012,
+ 35.72939009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Minowabashi.1494.1",
+ "name": "三ノ輪橋",
+ "latitude": 35.732615,
+ "longitude": 139.792726,
+ "polygon": [
+ [
+ 139.7926161098901,
+ 35.73270509009009
+ ],
+ [
+ 139.79283589010987,
+ 35.73270509009009
+ ],
+ [
+ 139.79283589010987,
+ 35.73252490990991
+ ],
+ [
+ 139.7926161098901,
+ 35.73252490990991
+ ],
+ [
+ 139.7926161098901,
+ 35.73270509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiToeiJutaku.1498.1",
+ "name": "宮城都営住宅前",
+ "latitude": 35.757527,
+ "longitude": 139.757196,
+ "polygon": [
+ [
+ 139.7570861098901,
+ 35.75761709009009
+ ],
+ [
+ 139.75730589010988,
+ 35.75761709009009
+ ],
+ [
+ 139.75730589010988,
+ 35.75743690990991
+ ],
+ [
+ 139.7570861098901,
+ 35.75743690990991
+ ],
+ [
+ 139.7570861098901,
+ 35.75761709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Minowabashi.1494.2",
+ "name": "三ノ輪橋",
+ "latitude": 35.732383,
+ "longitude": 139.792816,
+ "polygon": [
+ [
+ 139.7927061098901,
+ 35.73247309009009
+ ],
+ [
+ 139.79292589010987,
+ 35.73247309009009
+ ],
+ [
+ 139.79292589010987,
+ 35.73229290990991
+ ],
+ [
+ 139.7927061098901,
+ 35.73229290990991
+ ],
+ [
+ 139.7927061098901,
+ 35.73247309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinowaNichome.1495.1",
+ "name": "三ノ輪二丁目",
+ "latitude": 35.728661,
+ "longitude": 139.794547,
+ "polygon": [
+ [
+ 139.7944371098901,
+ 35.72875109009009
+ ],
+ [
+ 139.79465689010988,
+ 35.72875109009009
+ ],
+ [
+ 139.79465689010988,
+ 35.72857090990991
+ ],
+ [
+ 139.7944371098901,
+ 35.72857090990991
+ ],
+ [
+ 139.7944371098901,
+ 35.72875109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinowaNichome.1495.2",
+ "name": "三ノ輪二丁目",
+ "latitude": 35.727991,
+ "longitude": 139.794458,
+ "polygon": [
+ [
+ 139.7943481098901,
+ 35.72808109009009
+ ],
+ [
+ 139.79456789010987,
+ 35.72808109009009
+ ],
+ [
+ 139.79456789010987,
+ 35.72790090990991
+ ],
+ [
+ 139.7943481098901,
+ 35.72790090990991
+ ],
+ [
+ 139.7943481098901,
+ 35.72808109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinowaNichome.1495.3",
+ "name": "三ノ輪二丁目",
+ "latitude": 35.727849,
+ "longitude": 139.794341,
+ "polygon": [
+ [
+ 139.79423110989012,
+ 35.72793909009009
+ ],
+ [
+ 139.79445089010989,
+ 35.72793909009009
+ ],
+ [
+ 139.79445089010989,
+ 35.72775890990991
+ ],
+ [
+ 139.79423110989012,
+ 35.72775890990991
+ ],
+ [
+ 139.79423110989012,
+ 35.72793909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinowaNichome.1495.4",
+ "name": "三ノ輪二丁目",
+ "latitude": 35.729194,
+ "longitude": 139.793183,
+ "polygon": [
+ [
+ 139.79307310989012,
+ 35.72928409009009
+ ],
+ [
+ 139.79329289010988,
+ 35.72928409009009
+ ],
+ [
+ 139.79329289010988,
+ 35.72910390990991
+ ],
+ [
+ 139.79307310989012,
+ 35.72910390990991
+ ],
+ [
+ 139.79307310989012,
+ 35.72928409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiShogakko.1497.1",
+ "name": "宮城小学校前",
+ "latitude": 35.76034,
+ "longitude": 139.756943,
+ "polygon": [
+ [
+ 139.75683310989012,
+ 35.76043009009009
+ ],
+ [
+ 139.7570528901099,
+ 35.76043009009009
+ ],
+ [
+ 139.7570528901099,
+ 35.76024990990991
+ ],
+ [
+ 139.75683310989012,
+ 35.76024990990991
+ ],
+ [
+ 139.75683310989012,
+ 35.76043009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiToeiJutaku.1498.2",
+ "name": "宮城都営住宅前",
+ "latitude": 35.75799,
+ "longitude": 139.75732,
+ "polygon": [
+ [
+ 139.7572101098901,
+ 35.75808009009009
+ ],
+ [
+ 139.75742989010988,
+ 35.75808009009009
+ ],
+ [
+ 139.75742989010988,
+ 35.75789990990991
+ ],
+ [
+ 139.7572101098901,
+ 35.75789990990991
+ ],
+ [
+ 139.7572101098901,
+ 35.75808009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiDoteUe.1499.1",
+ "name": "宮城土手上",
+ "latitude": 35.762362,
+ "longitude": 139.758293,
+ "polygon": [
+ [
+ 139.75818310989013,
+ 35.76245209009009
+ ],
+ [
+ 139.7584028901099,
+ 35.76245209009009
+ ],
+ [
+ 139.7584028901099,
+ 35.76227190990991
+ ],
+ [
+ 139.75818310989013,
+ 35.76227190990991
+ ],
+ [
+ 139.75818310989013,
+ 35.76245209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiDoteUe.1499.2",
+ "name": "宮城土手上",
+ "latitude": 35.762689,
+ "longitude": 139.758412,
+ "polygon": [
+ [
+ 139.7583021098901,
+ 35.76277909009009
+ ],
+ [
+ 139.75852189010988,
+ 35.76277909009009
+ ],
+ [
+ 139.75852189010988,
+ 35.76259890990991
+ ],
+ [
+ 139.7583021098901,
+ 35.76259890990991
+ ],
+ [
+ 139.7583021098901,
+ 35.76277909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiNichome.1500.2",
+ "name": "宮城二丁目",
+ "latitude": 35.76237,
+ "longitude": 139.755129,
+ "polygon": [
+ [
+ 139.75501910989013,
+ 35.76246009009009
+ ],
+ [
+ 139.7552388901099,
+ 35.76246009009009
+ ],
+ [
+ 139.7552388901099,
+ 35.76227990990991
+ ],
+ [
+ 139.75501910989013,
+ 35.76227990990991
+ ],
+ [
+ 139.75501910989013,
+ 35.76246009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiNichome.1500.3",
+ "name": "宮城二丁目",
+ "latitude": 35.762098,
+ "longitude": 139.756229,
+ "polygon": [
+ [
+ 139.7561191098901,
+ 35.76218809009009
+ ],
+ [
+ 139.75633889010987,
+ 35.76218809009009
+ ],
+ [
+ 139.75633889010987,
+ 35.76200790990991
+ ],
+ [
+ 139.7561191098901,
+ 35.76200790990991
+ ],
+ [
+ 139.7561191098901,
+ 35.76218809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiNichome.1500.4",
+ "name": "宮城二丁目",
+ "latitude": 35.761561,
+ "longitude": 139.756076,
+ "polygon": [
+ [
+ 139.75596610989012,
+ 35.76165109009009
+ ],
+ [
+ 139.7561858901099,
+ 35.76165109009009
+ ],
+ [
+ 139.7561858901099,
+ 35.76147090990991
+ ],
+ [
+ 139.75596610989012,
+ 35.76147090990991
+ ],
+ [
+ 139.75596610989012,
+ 35.76165109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Miyakezaka.1501.1",
+ "name": "三宅坂",
+ "latitude": 35.681529,
+ "longitude": 139.744977,
+ "polygon": [
+ [
+ 139.74486710989012,
+ 35.68161909009009
+ ],
+ [
+ 139.7450868901099,
+ 35.68161909009009
+ ],
+ [
+ 139.7450868901099,
+ 35.68143890990991
+ ],
+ [
+ 139.74486710989012,
+ 35.68143890990991
+ ],
+ [
+ 139.74486710989012,
+ 35.68161909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Miyakezaka.1501.2",
+ "name": "三宅坂",
+ "latitude": 35.682191,
+ "longitude": 139.74415,
+ "polygon": [
+ [
+ 139.7440401098901,
+ 35.68228109009009
+ ],
+ [
+ 139.74425989010987,
+ 35.68228109009009
+ ],
+ [
+ 139.74425989010987,
+ 35.68210090990991
+ ],
+ [
+ 139.7440401098901,
+ 35.68210090990991
+ ],
+ [
+ 139.7440401098901,
+ 35.68228109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Miyakezaka.1501.3",
+ "name": "三宅坂",
+ "latitude": 35.682201,
+ "longitude": 139.744175,
+ "polygon": [
+ [
+ 139.74406510989013,
+ 35.68229109009009
+ ],
+ [
+ 139.7442848901099,
+ 35.68229109009009
+ ],
+ [
+ 139.7442848901099,
+ 35.68211090990991
+ ],
+ [
+ 139.74406510989013,
+ 35.68211090990991
+ ],
+ [
+ 139.74406510989013,
+ 35.68229109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyakobashiJutaku.1502.2",
+ "name": "都橋住宅前",
+ "latitude": 35.643582,
+ "longitude": 139.797713,
+ "polygon": [
+ [
+ 139.7976031098901,
+ 35.64367209009009
+ ],
+ [
+ 139.79782289010987,
+ 35.64367209009009
+ ],
+ [
+ 139.79782289010987,
+ 35.64349190990991
+ ],
+ [
+ 139.7976031098901,
+ 35.64349190990991
+ ],
+ [
+ 139.7976031098901,
+ 35.64367209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyashitaKoen.1504.1",
+ "name": "宮下公園",
+ "latitude": 35.664052,
+ "longitude": 139.702156,
+ "polygon": [
+ [
+ 139.70204610989012,
+ 35.66414209009009
+ ],
+ [
+ 139.70226589010989,
+ 35.66414209009009
+ ],
+ [
+ 139.70226589010989,
+ 35.66396190990991
+ ],
+ [
+ 139.70204610989012,
+ 35.66396190990991
+ ],
+ [
+ 139.70204610989012,
+ 35.66414209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MyogadaniStation.1507.1",
+ "name": "茗荷谷駅前",
+ "latitude": 35.71765,
+ "longitude": 139.737208,
+ "polygon": [
+ [
+ 139.73709810989013,
+ 35.71774009009009
+ ],
+ [
+ 139.7373178901099,
+ 35.71774009009009
+ ],
+ [
+ 139.7373178901099,
+ 35.71755990990991
+ ],
+ [
+ 139.73709810989013,
+ 35.71755990990991
+ ],
+ [
+ 139.73709810989013,
+ 35.71774009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MyogadaniStation.1507.2",
+ "name": "茗荷谷駅前",
+ "latitude": 35.717361,
+ "longitude": 139.737215,
+ "polygon": [
+ [
+ 139.7371051098901,
+ 35.71745109009009
+ ],
+ [
+ 139.73732489010987,
+ 35.71745109009009
+ ],
+ [
+ 139.73732489010987,
+ 35.71727090990991
+ ],
+ [
+ 139.7371051098901,
+ 35.71727090990991
+ ],
+ [
+ 139.7371051098901,
+ 35.71745109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeijiGakuin.1520.2",
+ "name": "明治学院前",
+ "latitude": 35.635934,
+ "longitude": 139.730907,
+ "polygon": [
+ [
+ 139.73079710989012,
+ 35.63602409009009
+ ],
+ [
+ 139.73101689010988,
+ 35.63602409009009
+ ],
+ [
+ 139.73101689010988,
+ 35.63584390990991
+ ],
+ [
+ 139.73079710989012,
+ 35.63584390990991
+ ],
+ [
+ 139.73079710989012,
+ 35.63602409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Myokoin.1508.1",
+ "name": "妙光院",
+ "latitude": 35.794487,
+ "longitude": 139.276523,
+ "polygon": [
+ [
+ 139.27641310989011,
+ 35.79457709009009
+ ],
+ [
+ 139.27663289010988,
+ 35.79457709009009
+ ],
+ [
+ 139.27663289010988,
+ 35.794396909909906
+ ],
+ [
+ 139.27641310989011,
+ 35.794396909909906
+ ],
+ [
+ 139.27641310989011,
+ 35.79457709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Myokoin.1508.2",
+ "name": "妙光院",
+ "latitude": 35.794335,
+ "longitude": 139.276506,
+ "polygon": [
+ [
+ 139.27639610989013,
+ 35.79442509009009
+ ],
+ [
+ 139.2766158901099,
+ 35.79442509009009
+ ],
+ [
+ 139.2766158901099,
+ 35.79424490990991
+ ],
+ [
+ 139.27639610989013,
+ 35.79424490990991
+ ],
+ [
+ 139.27639610989013,
+ 35.79442509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyotoGendaiBijutsukan.1510.1",
+ "name": "東京都現代美術館前",
+ "latitude": 35.678743,
+ "longitude": 139.806983,
+ "polygon": [
+ [
+ 139.80687310989012,
+ 35.67883309009009
+ ],
+ [
+ 139.80709289010989,
+ 35.67883309009009
+ ],
+ [
+ 139.80709289010989,
+ 35.67865290990991
+ ],
+ [
+ 139.80687310989012,
+ 35.67865290990991
+ ],
+ [
+ 139.80687310989012,
+ 35.67883309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyotoGendaiBijutsukan.1510.2",
+ "name": "東京都現代美術館前",
+ "latitude": 35.679672,
+ "longitude": 139.806653,
+ "polygon": [
+ [
+ 139.80654310989013,
+ 35.67976209009009
+ ],
+ [
+ 139.8067628901099,
+ 35.67976209009009
+ ],
+ [
+ 139.8067628901099,
+ 35.679581909909906
+ ],
+ [
+ 139.80654310989013,
+ 35.679581909909906
+ ],
+ [
+ 139.80654310989013,
+ 35.67976209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukogaokaItchome.1511.1",
+ "name": "向丘一丁目",
+ "latitude": 35.720731,
+ "longitude": 139.755742,
+ "polygon": [
+ [
+ 139.75563210989012,
+ 35.72082109009009
+ ],
+ [
+ 139.75585189010988,
+ 35.72082109009009
+ ],
+ [
+ 139.75585189010988,
+ 35.72064090990991
+ ],
+ [
+ 139.75563210989012,
+ 35.72064090990991
+ ],
+ [
+ 139.75563210989012,
+ 35.72082109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukojimaGochome.1514.1",
+ "name": "向島五丁目",
+ "latitude": 35.717192,
+ "longitude": 139.812413,
+ "polygon": [
+ [
+ 139.8123031098901,
+ 35.71728209009009
+ ],
+ [
+ 139.81252289010988,
+ 35.71728209009009
+ ],
+ [
+ 139.81252289010988,
+ 35.71710190990991
+ ],
+ [
+ 139.8123031098901,
+ 35.71710190990991
+ ],
+ [
+ 139.8123031098901,
+ 35.71728209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukogaokaItchome.1511.2",
+ "name": "向丘一丁目",
+ "latitude": 35.721005,
+ "longitude": 139.755761,
+ "polygon": [
+ [
+ 139.75565110989012,
+ 35.72109509009009
+ ],
+ [
+ 139.7558708901099,
+ 35.72109509009009
+ ],
+ [
+ 139.7558708901099,
+ 35.72091490990991
+ ],
+ [
+ 139.75565110989012,
+ 35.72091490990991
+ ],
+ [
+ 139.75565110989012,
+ 35.72109509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukogaokaNichome.1512.1",
+ "name": "向丘二丁目",
+ "latitude": 35.722705,
+ "longitude": 139.754283,
+ "polygon": [
+ [
+ 139.7541731098901,
+ 35.72279509009009
+ ],
+ [
+ 139.75439289010987,
+ 35.72279509009009
+ ],
+ [
+ 139.75439289010987,
+ 35.72261490990991
+ ],
+ [
+ 139.7541731098901,
+ 35.72261490990991
+ ],
+ [
+ 139.7541731098901,
+ 35.72279509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukogaokaNichome.1512.2",
+ "name": "向丘二丁目",
+ "latitude": 35.72184,
+ "longitude": 139.755141,
+ "polygon": [
+ [
+ 139.75503110989013,
+ 35.72193009009009
+ ],
+ [
+ 139.7552508901099,
+ 35.72193009009009
+ ],
+ [
+ 139.7552508901099,
+ 35.72174990990991
+ ],
+ [
+ 139.75503110989013,
+ 35.72174990990991
+ ],
+ [
+ 139.75503110989013,
+ 35.72193009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukojimaNichome.1513.1",
+ "name": "向島二丁目",
+ "latitude": 35.71539,
+ "longitude": 139.809412,
+ "polygon": [
+ [
+ 139.80930210989013,
+ 35.71548009009009
+ ],
+ [
+ 139.8095218901099,
+ 35.71548009009009
+ ],
+ [
+ 139.8095218901099,
+ 35.71529990990991
+ ],
+ [
+ 139.80930210989013,
+ 35.71529990990991
+ ],
+ [
+ 139.80930210989013,
+ 35.71548009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukojimaNichome.1513.2",
+ "name": "向島二丁目",
+ "latitude": 35.715465,
+ "longitude": 139.809832,
+ "polygon": [
+ [
+ 139.80972210989012,
+ 35.71555509009009
+ ],
+ [
+ 139.80994189010988,
+ 35.71555509009009
+ ],
+ [
+ 139.80994189010988,
+ 35.71537490990991
+ ],
+ [
+ 139.80972210989012,
+ 35.71537490990991
+ ],
+ [
+ 139.80972210989012,
+ 35.71555509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukojimaGochome.1514.2",
+ "name": "向島五丁目",
+ "latitude": 35.717223,
+ "longitude": 139.812089,
+ "polygon": [
+ [
+ 139.8119791098901,
+ 35.71731309009009
+ ],
+ [
+ 139.81219889010987,
+ 35.71731309009009
+ ],
+ [
+ 139.81219889010987,
+ 35.71713290990991
+ ],
+ [
+ 139.8119791098901,
+ 35.71713290990991
+ ],
+ [
+ 139.8119791098901,
+ 35.71731309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mukohara.1515.1",
+ "name": "向原",
+ "latitude": 35.728676,
+ "longitude": 139.725391,
+ "polygon": [
+ [
+ 139.72528110989012,
+ 35.72876609009009
+ ],
+ [
+ 139.72550089010988,
+ 35.72876609009009
+ ],
+ [
+ 139.72550089010988,
+ 35.72858590990991
+ ],
+ [
+ 139.72528110989012,
+ 35.72858590990991
+ ],
+ [
+ 139.72528110989012,
+ 35.72876609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mukohara.1515.2",
+ "name": "向原",
+ "latitude": 35.728879,
+ "longitude": 139.725416,
+ "polygon": [
+ [
+ 139.7253061098901,
+ 35.72896909009009
+ ],
+ [
+ 139.72552589010988,
+ 35.72896909009009
+ ],
+ [
+ 139.72552589010988,
+ 35.72878890990991
+ ],
+ [
+ 139.7253061098901,
+ 35.72878890990991
+ ],
+ [
+ 139.7253061098901,
+ 35.72896909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MusashiDaigaku.1516.1",
+ "name": "武蔵大学前",
+ "latitude": 35.737485,
+ "longitude": 139.668887,
+ "polygon": [
+ [
+ 139.66877710989013,
+ 35.73757509009009
+ ],
+ [
+ 139.6689968901099,
+ 35.73757509009009
+ ],
+ [
+ 139.6689968901099,
+ 35.73739490990991
+ ],
+ [
+ 139.66877710989013,
+ 35.73739490990991
+ ],
+ [
+ 139.66877710989013,
+ 35.73757509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MusashiDaigaku.1516.2",
+ "name": "武蔵大学前",
+ "latitude": 35.737596,
+ "longitude": 139.668229,
+ "polygon": [
+ [
+ 139.6681191098901,
+ 35.737686090090094
+ ],
+ [
+ 139.66833889010988,
+ 35.737686090090094
+ ],
+ [
+ 139.66833889010988,
+ 35.73750590990991
+ ],
+ [
+ 139.6681191098901,
+ 35.73750590990991
+ ],
+ [
+ 139.6681191098901,
+ 35.737686090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MusashinoByoin.1517.1",
+ "name": "武蔵野病院前",
+ "latitude": 35.746049,
+ "longitude": 139.675651,
+ "polygon": [
+ [
+ 139.6755411098901,
+ 35.74613909009009
+ ],
+ [
+ 139.67576089010987,
+ 35.74613909009009
+ ],
+ [
+ 139.67576089010987,
+ 35.74595890990991
+ ],
+ [
+ 139.6755411098901,
+ 35.74595890990991
+ ],
+ [
+ 139.6755411098901,
+ 35.74613909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeijiGakuin.1520.1",
+ "name": "明治学院前",
+ "latitude": 35.636402,
+ "longitude": 139.731267,
+ "polygon": [
+ [
+ 139.73115710989012,
+ 35.63649209009009
+ ],
+ [
+ 139.73137689010989,
+ 35.63649209009009
+ ],
+ [
+ 139.73137689010989,
+ 35.63631190990991
+ ],
+ [
+ 139.73115710989012,
+ 35.63631190990991
+ ],
+ [
+ 139.73115710989012,
+ 35.63649209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MusashinoByoin.1517.2",
+ "name": "武蔵野病院前",
+ "latitude": 35.746218,
+ "longitude": 139.675651,
+ "polygon": [
+ [
+ 139.6755411098901,
+ 35.74630809009009
+ ],
+ [
+ 139.67576089010987,
+ 35.74630809009009
+ ],
+ [
+ 139.67576089010987,
+ 35.74612790990991
+ ],
+ [
+ 139.6755411098901,
+ 35.74612790990991
+ ],
+ [
+ 139.6755411098901,
+ 35.74630809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MusashiMurayamaShiyakusho.1518.1",
+ "name": "武蔵村山市役所前",
+ "latitude": 35.755474,
+ "longitude": 139.387205,
+ "polygon": [
+ [
+ 139.3870951098901,
+ 35.75556409009009
+ ],
+ [
+ 139.38731489010988,
+ 35.75556409009009
+ ],
+ [
+ 139.38731489010988,
+ 35.75538390990991
+ ],
+ [
+ 139.3870951098901,
+ 35.75538390990991
+ ],
+ [
+ 139.3870951098901,
+ 35.75556409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MusashiMurayamaShiyakusho.1518.2",
+ "name": "武蔵村山市役所前",
+ "latitude": 35.755222,
+ "longitude": 139.387623,
+ "polygon": [
+ [
+ 139.3875131098901,
+ 35.755312090090094
+ ],
+ [
+ 139.38773289010987,
+ 35.755312090090094
+ ],
+ [
+ 139.38773289010987,
+ 35.75513190990991
+ ],
+ [
+ 139.3875131098901,
+ 35.75513190990991
+ ],
+ [
+ 139.3875131098901,
+ 35.755312090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MuromachiSanchome.1519.1",
+ "name": "室町三丁目",
+ "latitude": 35.688773,
+ "longitude": 139.773876,
+ "polygon": [
+ [
+ 139.77376610989012,
+ 35.68886309009009
+ ],
+ [
+ 139.77398589010988,
+ 35.68886309009009
+ ],
+ [
+ 139.77398589010988,
+ 35.68868290990991
+ ],
+ [
+ 139.77376610989012,
+ 35.68868290990991
+ ],
+ [
+ 139.77376610989012,
+ 35.68886309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MuromachiSanchome.1519.2",
+ "name": "室町三丁目",
+ "latitude": 35.687807,
+ "longitude": 139.773205,
+ "polygon": [
+ [
+ 139.7730951098901,
+ 35.68789709009009
+ ],
+ [
+ 139.77331489010987,
+ 35.68789709009009
+ ],
+ [
+ 139.77331489010987,
+ 35.68771690990991
+ ],
+ [
+ 139.7730951098901,
+ 35.68771690990991
+ ],
+ [
+ 139.7730951098901,
+ 35.68789709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeijiGakuin.1520.3",
+ "name": "明治学院前",
+ "latitude": 35.635933,
+ "longitude": 139.730233,
+ "polygon": [
+ [
+ 139.73012310989012,
+ 35.63602309009009
+ ],
+ [
+ 139.73034289010988,
+ 35.63602309009009
+ ],
+ [
+ 139.73034289010988,
+ 35.63584290990991
+ ],
+ [
+ 139.73012310989012,
+ 35.63584290990991
+ ],
+ [
+ 139.73012310989012,
+ 35.63602309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeijiGakuin.1520.4",
+ "name": "明治学院前",
+ "latitude": 35.63549,
+ "longitude": 139.731464,
+ "polygon": [
+ [
+ 139.7313541098901,
+ 35.63558009009009
+ ],
+ [
+ 139.73157389010987,
+ 35.63558009009009
+ ],
+ [
+ 139.73157389010987,
+ 35.63539990990991
+ ],
+ [
+ 139.7313541098901,
+ 35.63539990990991
+ ],
+ [
+ 139.7313541098901,
+ 35.63558009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeijiKoen.1521.1",
+ "name": "明治公園前",
+ "latitude": 35.67739,
+ "longitude": 139.712753,
+ "polygon": [
+ [
+ 139.7126431098901,
+ 35.67748009009009
+ ],
+ [
+ 139.71286289010988,
+ 35.67748009009009
+ ],
+ [
+ 139.71286289010988,
+ 35.67729990990991
+ ],
+ [
+ 139.7126431098901,
+ 35.67729990990991
+ ],
+ [
+ 139.7126431098901,
+ 35.67748009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeijiKoen.1521.2",
+ "name": "明治公園前",
+ "latitude": 35.676446,
+ "longitude": 139.712492,
+ "polygon": [
+ [
+ 139.71238210989011,
+ 35.67653609009009
+ ],
+ [
+ 139.71260189010988,
+ 35.67653609009009
+ ],
+ [
+ 139.71260189010988,
+ 35.67635590990991
+ ],
+ [
+ 139.71238210989011,
+ 35.67635590990991
+ ],
+ [
+ 139.71238210989011,
+ 35.67653609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeijiDori.1522.1",
+ "name": "明治通り",
+ "latitude": 35.718365,
+ "longitude": 139.822098,
+ "polygon": [
+ [
+ 139.82198810989013,
+ 35.71845509009009
+ ],
+ [
+ 139.8222078901099,
+ 35.71845509009009
+ ],
+ [
+ 139.8222078901099,
+ 35.71827490990991
+ ],
+ [
+ 139.82198810989013,
+ 35.71827490990991
+ ],
+ [
+ 139.82198810989013,
+ 35.71845509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MorishitaGochome.1542.2",
+ "name": "森下五丁目",
+ "latitude": 35.685402,
+ "longitude": 139.806407,
+ "polygon": [
+ [
+ 139.80629710989012,
+ 35.685492090090094
+ ],
+ [
+ 139.8065168901099,
+ 35.685492090090094
+ ],
+ [
+ 139.8065168901099,
+ 35.68531190990991
+ ],
+ [
+ 139.80629710989012,
+ 35.68531190990991
+ ],
+ [
+ 139.80629710989012,
+ 35.685492090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeijiDori.1522.2",
+ "name": "明治通り",
+ "latitude": 35.718371,
+ "longitude": 139.822337,
+ "polygon": [
+ [
+ 139.82222710989012,
+ 35.71846109009009
+ ],
+ [
+ 139.8224468901099,
+ 35.71846109009009
+ ],
+ [
+ 139.8224468901099,
+ 35.71828090990991
+ ],
+ [
+ 139.82222710989012,
+ 35.71828090990991
+ ],
+ [
+ 139.82222710989012,
+ 35.71846109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Meijibashi.1523.1",
+ "name": "明治橋",
+ "latitude": 35.779127,
+ "longitude": 139.233623,
+ "polygon": [
+ [
+ 139.2335131098901,
+ 35.77921709009009
+ ],
+ [
+ 139.23373289010988,
+ 35.77921709009009
+ ],
+ [
+ 139.23373289010988,
+ 35.77903690990991
+ ],
+ [
+ 139.2335131098901,
+ 35.77903690990991
+ ],
+ [
+ 139.2335131098901,
+ 35.77921709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Meijibashi.1523.2",
+ "name": "明治橋",
+ "latitude": 35.779224,
+ "longitude": 139.233712,
+ "polygon": [
+ [
+ 139.2336021098901,
+ 35.77931409009009
+ ],
+ [
+ 139.23382189010988,
+ 35.77931409009009
+ ],
+ [
+ 139.23382189010988,
+ 35.77913390990991
+ ],
+ [
+ 139.2336021098901,
+ 35.77913390990991
+ ],
+ [
+ 139.2336021098901,
+ 35.77931409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeguroStation.1526.1",
+ "name": "目黒駅前",
+ "latitude": 35.633996,
+ "longitude": 139.716651,
+ "polygon": [
+ [
+ 139.71654110989013,
+ 35.63408609009009
+ ],
+ [
+ 139.7167608901099,
+ 35.63408609009009
+ ],
+ [
+ 139.7167608901099,
+ 35.63390590990991
+ ],
+ [
+ 139.71654110989013,
+ 35.63390590990991
+ ],
+ [
+ 139.71654110989013,
+ 35.63408609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeguroStation.1526.2",
+ "name": "目黒駅前",
+ "latitude": 35.634213,
+ "longitude": 139.716566,
+ "polygon": [
+ [
+ 139.71645610989012,
+ 35.63430309009009
+ ],
+ [
+ 139.71667589010988,
+ 35.63430309009009
+ ],
+ [
+ 139.71667589010988,
+ 35.63412290990991
+ ],
+ [
+ 139.71645610989012,
+ 35.63412290990991
+ ],
+ [
+ 139.71645610989012,
+ 35.63430309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeguroStation.1526.3",
+ "name": "目黒駅前",
+ "latitude": 35.634246,
+ "longitude": 139.716416,
+ "polygon": [
+ [
+ 139.71630610989013,
+ 35.63433609009009
+ ],
+ [
+ 139.7165258901099,
+ 35.63433609009009
+ ],
+ [
+ 139.7165258901099,
+ 35.63415590990991
+ ],
+ [
+ 139.71630610989013,
+ 35.63415590990991
+ ],
+ [
+ 139.71630610989013,
+ 35.63433609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroStation.1529.7",
+ "name": "目白駅前",
+ "latitude": 35.721144,
+ "longitude": 139.707875,
+ "polygon": [
+ [
+ 139.70776510989012,
+ 35.72123409009009
+ ],
+ [
+ 139.70798489010988,
+ 35.72123409009009
+ ],
+ [
+ 139.70798489010988,
+ 35.72105390990991
+ ],
+ [
+ 139.70776510989012,
+ 35.72105390990991
+ ],
+ [
+ 139.70776510989012,
+ 35.72123409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroStation.1529.1",
+ "name": "目白駅前",
+ "latitude": 35.72164,
+ "longitude": 139.706559,
+ "polygon": [
+ [
+ 139.70644910989012,
+ 35.72173009009009
+ ],
+ [
+ 139.70666889010988,
+ 35.72173009009009
+ ],
+ [
+ 139.70666889010988,
+ 35.72154990990991
+ ],
+ [
+ 139.70644910989012,
+ 35.72154990990991
+ ],
+ [
+ 139.70644910989012,
+ 35.72173009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroStation.1529.2",
+ "name": "目白駅前",
+ "latitude": 35.721648,
+ "longitude": 139.706544,
+ "polygon": [
+ [
+ 139.70643410989013,
+ 35.72173809009009
+ ],
+ [
+ 139.7066538901099,
+ 35.72173809009009
+ ],
+ [
+ 139.7066538901099,
+ 35.72155790990991
+ ],
+ [
+ 139.70643410989013,
+ 35.72155790990991
+ ],
+ [
+ 139.70643410989013,
+ 35.72173809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroStation.1529.3",
+ "name": "目白駅前",
+ "latitude": 35.72106,
+ "longitude": 139.707695,
+ "polygon": [
+ [
+ 139.70758510989012,
+ 35.72115009009009
+ ],
+ [
+ 139.70780489010988,
+ 35.72115009009009
+ ],
+ [
+ 139.70780489010988,
+ 35.72096990990991
+ ],
+ [
+ 139.70758510989012,
+ 35.72096990990991
+ ],
+ [
+ 139.70758510989012,
+ 35.72115009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroStation.1529.4",
+ "name": "目白駅前",
+ "latitude": 35.722008,
+ "longitude": 139.70615,
+ "polygon": [
+ [
+ 139.70604010989013,
+ 35.72209809009009
+ ],
+ [
+ 139.7062598901099,
+ 35.72209809009009
+ ],
+ [
+ 139.7062598901099,
+ 35.72191790990991
+ ],
+ [
+ 139.70604010989013,
+ 35.72191790990991
+ ],
+ [
+ 139.70604010989013,
+ 35.72209809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroStation.1529.5",
+ "name": "目白駅前",
+ "latitude": 35.721934,
+ "longitude": 139.706327,
+ "polygon": [
+ [
+ 139.7062171098901,
+ 35.72202409009009
+ ],
+ [
+ 139.70643689010987,
+ 35.72202409009009
+ ],
+ [
+ 139.70643689010987,
+ 35.72184390990991
+ ],
+ [
+ 139.7062171098901,
+ 35.72184390990991
+ ],
+ [
+ 139.7062171098901,
+ 35.72202409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroStation.1529.15",
+ "name": "目白駅前",
+ "latitude": 35.720962,
+ "longitude": 139.708224,
+ "polygon": [
+ [
+ 139.70811410989012,
+ 35.72105209009009
+ ],
+ [
+ 139.70833389010988,
+ 35.72105209009009
+ ],
+ [
+ 139.70833389010988,
+ 35.72087190990991
+ ],
+ [
+ 139.70811410989012,
+ 35.72087190990991
+ ],
+ [
+ 139.70811410989012,
+ 35.72105209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroKeisatsusho.1530.1",
+ "name": "目白警察署前",
+ "latitude": 35.719874,
+ "longitude": 139.711001,
+ "polygon": [
+ [
+ 139.71089110989013,
+ 35.71996409009009
+ ],
+ [
+ 139.7111108901099,
+ 35.71996409009009
+ ],
+ [
+ 139.7111108901099,
+ 35.71978390990991
+ ],
+ [
+ 139.71089110989013,
+ 35.71978390990991
+ ],
+ [
+ 139.71089110989013,
+ 35.71996409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroKeisatsusho.1530.2",
+ "name": "目白警察署前",
+ "latitude": 35.720035,
+ "longitude": 139.710851,
+ "polygon": [
+ [
+ 139.7107411098901,
+ 35.72012509009009
+ ],
+ [
+ 139.71096089010987,
+ 35.72012509009009
+ ],
+ [
+ 139.71096089010987,
+ 35.71994490990991
+ ],
+ [
+ 139.7107411098901,
+ 35.71994490990991
+ ],
+ [
+ 139.7107411098901,
+ 35.72012509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejirodaiSanchome.1531.1",
+ "name": "目白台三丁目",
+ "latitude": 35.715055,
+ "longitude": 139.724506,
+ "polygon": [
+ [
+ 139.7243961098901,
+ 35.71514509009009
+ ],
+ [
+ 139.72461589010987,
+ 35.71514509009009
+ ],
+ [
+ 139.72461589010987,
+ 35.71496490990991
+ ],
+ [
+ 139.7243961098901,
+ 35.71496490990991
+ ],
+ [
+ 139.7243961098901,
+ 35.71514509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejirodaiSanchome.1531.2",
+ "name": "目白台三丁目",
+ "latitude": 35.715206,
+ "longitude": 139.724495,
+ "polygon": [
+ [
+ 139.7243851098901,
+ 35.71529609009009
+ ],
+ [
+ 139.72460489010987,
+ 35.71529609009009
+ ],
+ [
+ 139.72460489010987,
+ 35.71511590990991
+ ],
+ [
+ 139.7243851098901,
+ 35.71511590990991
+ ],
+ [
+ 139.7243851098901,
+ 35.71529609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroGochome.1532.1",
+ "name": "目白五丁目",
+ "latitude": 35.72234,
+ "longitude": 139.693861,
+ "polygon": [
+ [
+ 139.69375110989012,
+ 35.72243009009009
+ ],
+ [
+ 139.69397089010988,
+ 35.72243009009009
+ ],
+ [
+ 139.69397089010988,
+ 35.72224990990991
+ ],
+ [
+ 139.69375110989012,
+ 35.72224990990991
+ ],
+ [
+ 139.69375110989012,
+ 35.72243009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MejiroGochome.1532.2",
+ "name": "目白五丁目",
+ "latitude": 35.722498,
+ "longitude": 139.693253,
+ "polygon": [
+ [
+ 139.69314310989012,
+ 35.72258809009009
+ ],
+ [
+ 139.69336289010988,
+ 35.72258809009009
+ ],
+ [
+ 139.69336289010988,
+ 35.72240790990991
+ ],
+ [
+ 139.69314310989012,
+ 35.72240790990991
+ ],
+ [
+ 139.69314310989012,
+ 35.72258809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MoriNichome.1533.1",
+ "name": "毛利二丁目",
+ "latitude": 35.691907,
+ "longitude": 139.815557,
+ "polygon": [
+ [
+ 139.81544710989013,
+ 35.69199709009009
+ ],
+ [
+ 139.8156668901099,
+ 35.69199709009009
+ ],
+ [
+ 139.8156668901099,
+ 35.69181690990991
+ ],
+ [
+ 139.81544710989013,
+ 35.69181690990991
+ ],
+ [
+ 139.81544710989013,
+ 35.69199709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MotoHachiman.1539.2",
+ "name": "元八幡",
+ "latitude": 35.669799,
+ "longitude": 139.837502,
+ "polygon": [
+ [
+ 139.83739210989012,
+ 35.66988909009009
+ ],
+ [
+ 139.83761189010988,
+ 35.66988909009009
+ ],
+ [
+ 139.83761189010988,
+ 35.66970890990991
+ ],
+ [
+ 139.83739210989012,
+ 35.66970890990991
+ ],
+ [
+ 139.83739210989012,
+ 35.66988909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MoriNichome.1533.2",
+ "name": "毛利二丁目",
+ "latitude": 35.691304,
+ "longitude": 139.81541,
+ "polygon": [
+ [
+ 139.81530010989013,
+ 35.69139409009009
+ ],
+ [
+ 139.8155198901099,
+ 35.69139409009009
+ ],
+ [
+ 139.8155198901099,
+ 35.69121390990991
+ ],
+ [
+ 139.81530010989013,
+ 35.69121390990991
+ ],
+ [
+ 139.81530010989013,
+ 35.69139409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Moshiobashi.1534.1",
+ "name": "藻塩橋",
+ "latitude": 35.643155,
+ "longitude": 139.746332,
+ "polygon": [
+ [
+ 139.7462221098901,
+ 35.64324509009009
+ ],
+ [
+ 139.74644189010988,
+ 35.64324509009009
+ ],
+ [
+ 139.74644189010988,
+ 35.64306490990991
+ ],
+ [
+ 139.7462221098901,
+ 35.64306490990991
+ ],
+ [
+ 139.7462221098901,
+ 35.64324509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Moshiobashi.1534.2",
+ "name": "藻塩橋",
+ "latitude": 35.643005,
+ "longitude": 139.746437,
+ "polygon": [
+ [
+ 139.7463271098901,
+ 35.64309509009009
+ ],
+ [
+ 139.74654689010987,
+ 35.64309509009009
+ ],
+ [
+ 139.74654689010987,
+ 35.64291490990991
+ ],
+ [
+ 139.7463271098901,
+ 35.64291490990991
+ ],
+ [
+ 139.7463271098901,
+ 35.64309509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOkachimachiStation.1535.1",
+ "name": "新御徒町駅前",
+ "latitude": 35.707211,
+ "longitude": 139.781074,
+ "polygon": [
+ [
+ 139.7809641098901,
+ 35.70730109009009
+ ],
+ [
+ 139.78118389010987,
+ 35.70730109009009
+ ],
+ [
+ 139.78118389010987,
+ 35.70712090990991
+ ],
+ [
+ 139.7809641098901,
+ 35.70712090990991
+ ],
+ [
+ 139.7809641098901,
+ 35.70730109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinOkachimachiStation.1535.2",
+ "name": "新御徒町駅前",
+ "latitude": 35.706892,
+ "longitude": 139.782518,
+ "polygon": [
+ [
+ 139.78240810989013,
+ 35.706982090090094
+ ],
+ [
+ 139.7826278901099,
+ 35.706982090090094
+ ],
+ [
+ 139.7826278901099,
+ 35.70680190990991
+ ],
+ [
+ 139.78240810989013,
+ 35.70680190990991
+ ],
+ [
+ 139.78240810989013,
+ 35.706982090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MotoAsakusaSanchome.1536.1",
+ "name": "元浅草三丁目",
+ "latitude": 35.706559,
+ "longitude": 139.78566,
+ "polygon": [
+ [
+ 139.78555010989012,
+ 35.70664909009009
+ ],
+ [
+ 139.7857698901099,
+ 35.70664909009009
+ ],
+ [
+ 139.7857698901099,
+ 35.70646890990991
+ ],
+ [
+ 139.78555010989012,
+ 35.70646890990991
+ ],
+ [
+ 139.78555010989012,
+ 35.70664909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MotoAsakusaSanchome.1536.2",
+ "name": "元浅草三丁目",
+ "latitude": 35.706835,
+ "longitude": 139.784563,
+ "polygon": [
+ [
+ 139.7844531098901,
+ 35.70692509009009
+ ],
+ [
+ 139.78467289010987,
+ 35.70692509009009
+ ],
+ [
+ 139.78467289010987,
+ 35.70674490990991
+ ],
+ [
+ 139.7844531098901,
+ 35.70674490990991
+ ],
+ [
+ 139.7844531098901,
+ 35.70692509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yumenoshima.1577.1",
+ "name": "夢の島",
+ "latitude": 35.649533,
+ "longitude": 139.82497,
+ "polygon": [
+ [
+ 139.82486010989012,
+ 35.64962309009009
+ ],
+ [
+ 139.8250798901099,
+ 35.64962309009009
+ ],
+ [
+ 139.8250798901099,
+ 35.64944290990991
+ ],
+ [
+ 139.82486010989012,
+ 35.64944290990991
+ ],
+ [
+ 139.82486010989012,
+ 35.64962309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MotoAzabuNichome.1537.1",
+ "name": "元麻布二丁目",
+ "latitude": 35.652584,
+ "longitude": 139.728548,
+ "polygon": [
+ [
+ 139.7284381098901,
+ 35.65267409009009
+ ],
+ [
+ 139.72865789010987,
+ 35.65267409009009
+ ],
+ [
+ 139.72865789010987,
+ 35.65249390990991
+ ],
+ [
+ 139.7284381098901,
+ 35.65249390990991
+ ],
+ [
+ 139.7284381098901,
+ 35.65267409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MotoAzabuNichome.1537.2",
+ "name": "元麻布二丁目",
+ "latitude": 35.652709,
+ "longitude": 139.728544,
+ "polygon": [
+ [
+ 139.72843410989012,
+ 35.65279909009009
+ ],
+ [
+ 139.72865389010988,
+ 35.65279909009009
+ ],
+ [
+ 139.72865389010988,
+ 35.65261890990991
+ ],
+ [
+ 139.72843410989012,
+ 35.65261890990991
+ ],
+ [
+ 139.72843410989012,
+ 35.65279909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MotoHachiman.1539.1",
+ "name": "元八幡",
+ "latitude": 35.669865,
+ "longitude": 139.837603,
+ "polygon": [
+ [
+ 139.83749310989012,
+ 35.66995509009009
+ ],
+ [
+ 139.83771289010988,
+ 35.66995509009009
+ ],
+ [
+ 139.83771289010988,
+ 35.66977490990991
+ ],
+ [
+ 139.83749310989012,
+ 35.66977490990991
+ ],
+ [
+ 139.83749310989012,
+ 35.66995509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MorishitaStation.1541.1",
+ "name": "森下駅前",
+ "latitude": 35.688138,
+ "longitude": 139.79911,
+ "polygon": [
+ [
+ 139.79900010989013,
+ 35.68822809009009
+ ],
+ [
+ 139.7992198901099,
+ 35.68822809009009
+ ],
+ [
+ 139.7992198901099,
+ 35.68804790990991
+ ],
+ [
+ 139.79900010989013,
+ 35.68804790990991
+ ],
+ [
+ 139.79900010989013,
+ 35.68822809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NiGoBerth.1622.1",
+ "name": "2号バース前",
+ "latitude": 35.608346,
+ "longitude": 139.758448,
+ "polygon": [
+ [
+ 139.7583381098901,
+ 35.60843609009009
+ ],
+ [
+ 139.75855789010987,
+ 35.60843609009009
+ ],
+ [
+ 139.75855789010987,
+ 35.60825590990991
+ ],
+ [
+ 139.7583381098901,
+ 35.60825590990991
+ ],
+ [
+ 139.7583381098901,
+ 35.60843609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MorishitaStation.1541.2",
+ "name": "森下駅前",
+ "latitude": 35.687951,
+ "longitude": 139.799042,
+ "polygon": [
+ [
+ 139.7989321098901,
+ 35.68804109009009
+ ],
+ [
+ 139.79915189010987,
+ 35.68804109009009
+ ],
+ [
+ 139.79915189010987,
+ 35.68786090990991
+ ],
+ [
+ 139.7989321098901,
+ 35.68786090990991
+ ],
+ [
+ 139.7989321098901,
+ 35.68804109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MorishitaStation.1541.3",
+ "name": "森下駅前",
+ "latitude": 35.688703,
+ "longitude": 139.798093,
+ "polygon": [
+ [
+ 139.7979831098901,
+ 35.68879309009009
+ ],
+ [
+ 139.79820289010988,
+ 35.68879309009009
+ ],
+ [
+ 139.79820289010988,
+ 35.68861290990991
+ ],
+ [
+ 139.7979831098901,
+ 35.68861290990991
+ ],
+ [
+ 139.7979831098901,
+ 35.68879309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MorishitaStation.1541.4",
+ "name": "森下駅前",
+ "latitude": 35.687618,
+ "longitude": 139.79839,
+ "polygon": [
+ [
+ 139.79828010989013,
+ 35.68770809009009
+ ],
+ [
+ 139.7984998901099,
+ 35.68770809009009
+ ],
+ [
+ 139.7984998901099,
+ 35.68752790990991
+ ],
+ [
+ 139.79828010989013,
+ 35.68752790990991
+ ],
+ [
+ 139.79828010989013,
+ 35.68770809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MorishitaGochome.1542.1",
+ "name": "森下五丁目",
+ "latitude": 35.685343,
+ "longitude": 139.806206,
+ "polygon": [
+ [
+ 139.80609610989012,
+ 35.68543309009009
+ ],
+ [
+ 139.8063158901099,
+ 35.68543309009009
+ ],
+ [
+ 139.8063158901099,
+ 35.68525290990991
+ ],
+ [
+ 139.80609610989012,
+ 35.68525290990991
+ ],
+ [
+ 139.80609610989012,
+ 35.68543309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShobosho.1543.1",
+ "name": "青梅消防署前",
+ "latitude": 35.788895,
+ "longitude": 139.282819,
+ "polygon": [
+ [
+ 139.2827091098901,
+ 35.78898509009009
+ ],
+ [
+ 139.28292889010987,
+ 35.78898509009009
+ ],
+ [
+ 139.28292889010987,
+ 35.788804909909906
+ ],
+ [
+ 139.2827091098901,
+ 35.788804909909906
+ ],
+ [
+ 139.2827091098901,
+ 35.78898509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShobosho.1543.2",
+ "name": "青梅消防署前",
+ "latitude": 35.788689,
+ "longitude": 139.282965,
+ "polygon": [
+ [
+ 139.2828551098901,
+ 35.78877909009009
+ ],
+ [
+ 139.28307489010987,
+ 35.78877909009009
+ ],
+ [
+ 139.28307489010987,
+ 35.78859890990991
+ ],
+ [
+ 139.2828551098901,
+ 35.78859890990991
+ ],
+ [
+ 139.2828551098901,
+ 35.78877909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakacho.1544.1",
+ "name": "門前仲町",
+ "latitude": 35.672039,
+ "longitude": 139.794775,
+ "polygon": [
+ [
+ 139.7946651098901,
+ 35.67212909009009
+ ],
+ [
+ 139.79488489010987,
+ 35.67212909009009
+ ],
+ [
+ 139.79488489010987,
+ 35.67194890990991
+ ],
+ [
+ 139.7946651098901,
+ 35.67194890990991
+ ],
+ [
+ 139.7946651098901,
+ 35.67212909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakacho.1544.3",
+ "name": "門前仲町",
+ "latitude": 35.672184,
+ "longitude": 139.79562,
+ "polygon": [
+ [
+ 139.79551010989013,
+ 35.67227409009009
+ ],
+ [
+ 139.7957298901099,
+ 35.67227409009009
+ ],
+ [
+ 139.7957298901099,
+ 35.67209390990991
+ ],
+ [
+ 139.79551010989013,
+ 35.67209390990991
+ ],
+ [
+ 139.79551010989013,
+ 35.67227409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakacho.1544.4",
+ "name": "門前仲町",
+ "latitude": 35.673969,
+ "longitude": 139.795738,
+ "polygon": [
+ [
+ 139.79562810989012,
+ 35.67405909009009
+ ],
+ [
+ 139.79584789010988,
+ 35.67405909009009
+ ],
+ [
+ 139.79584789010988,
+ 35.67387890990991
+ ],
+ [
+ 139.79562810989012,
+ 35.67387890990991
+ ],
+ [
+ 139.79562810989012,
+ 35.67405909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakacho.1544.5",
+ "name": "門前仲町",
+ "latitude": 35.673088,
+ "longitude": 139.79357,
+ "polygon": [
+ [
+ 139.7934601098901,
+ 35.67317809009009
+ ],
+ [
+ 139.79367989010987,
+ 35.67317809009009
+ ],
+ [
+ 139.79367989010987,
+ 35.67299790990991
+ ],
+ [
+ 139.7934601098901,
+ 35.67299790990991
+ ],
+ [
+ 139.7934601098901,
+ 35.67317809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakacho.1544.6",
+ "name": "門前仲町",
+ "latitude": 35.672974,
+ "longitude": 139.793854,
+ "polygon": [
+ [
+ 139.79374410989013,
+ 35.673064090090094
+ ],
+ [
+ 139.7939638901099,
+ 35.673064090090094
+ ],
+ [
+ 139.7939638901099,
+ 35.67288390990991
+ ],
+ [
+ 139.79374410989013,
+ 35.67288390990991
+ ],
+ [
+ 139.79374410989013,
+ 35.673064090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakacho.1544.7",
+ "name": "門前仲町",
+ "latitude": 35.672592,
+ "longitude": 139.794104,
+ "polygon": [
+ [
+ 139.79399410989012,
+ 35.67268209009009
+ ],
+ [
+ 139.7942138901099,
+ 35.67268209009009
+ ],
+ [
+ 139.7942138901099,
+ 35.67250190990991
+ ],
+ [
+ 139.79399410989012,
+ 35.67250190990991
+ ],
+ [
+ 139.79399410989012,
+ 35.67268209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakacho.1544.8",
+ "name": "門前仲町",
+ "latitude": 35.672969,
+ "longitude": 139.795071,
+ "polygon": [
+ [
+ 139.79496110989012,
+ 35.67305909009009
+ ],
+ [
+ 139.7951808901099,
+ 35.67305909009009
+ ],
+ [
+ 139.7951808901099,
+ 35.67287890990991
+ ],
+ [
+ 139.79496110989012,
+ 35.67287890990991
+ ],
+ [
+ 139.79496110989012,
+ 35.67305909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakacho.1544.9",
+ "name": "門前仲町",
+ "latitude": 35.673377,
+ "longitude": 139.795334,
+ "polygon": [
+ [
+ 139.7952241098901,
+ 35.67346709009009
+ ],
+ [
+ 139.79544389010988,
+ 35.67346709009009
+ ],
+ [
+ 139.79544389010988,
+ 35.67328690990991
+ ],
+ [
+ 139.7952241098901,
+ 35.67328690990991
+ ],
+ [
+ 139.7952241098901,
+ 35.67346709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YazaikeNichome.1551.3",
+ "name": "谷在家二丁目",
+ "latitude": 35.785381,
+ "longitude": 139.769888,
+ "polygon": [
+ [
+ 139.76977810989013,
+ 35.78547109009009
+ ],
+ [
+ 139.7699978901099,
+ 35.78547109009009
+ ],
+ [
+ 139.7699978901099,
+ 35.78529090990991
+ ],
+ [
+ 139.76977810989013,
+ 35.78529090990991
+ ],
+ [
+ 139.76977810989013,
+ 35.78547109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yakuojimachi.1547.1",
+ "name": "薬王寺町",
+ "latitude": 35.696049,
+ "longitude": 139.72509,
+ "polygon": [
+ [
+ 139.7249801098901,
+ 35.69613909009009
+ ],
+ [
+ 139.72519989010988,
+ 35.69613909009009
+ ],
+ [
+ 139.72519989010988,
+ 35.69595890990991
+ ],
+ [
+ 139.7249801098901,
+ 35.69595890990991
+ ],
+ [
+ 139.7249801098901,
+ 35.69613909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yumenoshima.1577.2",
+ "name": "夢の島",
+ "latitude": 35.649828,
+ "longitude": 139.825201,
+ "polygon": [
+ [
+ 139.8250911098901,
+ 35.64991809009009
+ ],
+ [
+ 139.82531089010988,
+ 35.64991809009009
+ ],
+ [
+ 139.82531089010988,
+ 35.64973790990991
+ ],
+ [
+ 139.8250911098901,
+ 35.64973790990991
+ ],
+ [
+ 139.8250911098901,
+ 35.64991809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yakuojimachi.1547.2",
+ "name": "薬王寺町",
+ "latitude": 35.697052,
+ "longitude": 139.72552,
+ "polygon": [
+ [
+ 139.7254101098901,
+ 35.69714209009009
+ ],
+ [
+ 139.72562989010987,
+ 35.69714209009009
+ ],
+ [
+ 139.72562989010987,
+ 35.69696190990991
+ ],
+ [
+ 139.7254101098901,
+ 35.69696190990991
+ ],
+ [
+ 139.7254101098901,
+ 35.69714209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YazaikeItchome.1550.1",
+ "name": "谷在家一丁目",
+ "latitude": 35.786848,
+ "longitude": 139.770124,
+ "polygon": [
+ [
+ 139.77001410989013,
+ 35.78693809009009
+ ],
+ [
+ 139.7702338901099,
+ 35.78693809009009
+ ],
+ [
+ 139.7702338901099,
+ 35.78675790990991
+ ],
+ [
+ 139.77001410989013,
+ 35.78675790990991
+ ],
+ [
+ 139.77001410989013,
+ 35.78693809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YazaikeItchome.1550.2",
+ "name": "谷在家一丁目",
+ "latitude": 35.787796,
+ "longitude": 139.769888,
+ "polygon": [
+ [
+ 139.76977810989013,
+ 35.78788609009009
+ ],
+ [
+ 139.7699978901099,
+ 35.78788609009009
+ ],
+ [
+ 139.7699978901099,
+ 35.78770590990991
+ ],
+ [
+ 139.76977810989013,
+ 35.78770590990991
+ ],
+ [
+ 139.76977810989013,
+ 35.78788609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YazaikeNichome.1551.1",
+ "name": "谷在家二丁目",
+ "latitude": 35.784615,
+ "longitude": 139.770144,
+ "polygon": [
+ [
+ 139.7700341098901,
+ 35.78470509009009
+ ],
+ [
+ 139.77025389010987,
+ 35.78470509009009
+ ],
+ [
+ 139.77025389010987,
+ 35.78452490990991
+ ],
+ [
+ 139.7700341098901,
+ 35.78452490990991
+ ],
+ [
+ 139.7700341098901,
+ 35.78470509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yachiyobashi.1552.1",
+ "name": "八千代橋",
+ "latitude": 35.640842,
+ "longitude": 139.747638,
+ "polygon": [
+ [
+ 139.7475281098901,
+ 35.64093209009009
+ ],
+ [
+ 139.74774789010988,
+ 35.64093209009009
+ ],
+ [
+ 139.74774789010988,
+ 35.64075190990991
+ ],
+ [
+ 139.7475281098901,
+ 35.64075190990991
+ ],
+ [
+ 139.7475281098901,
+ 35.64093209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Wadaboribashi.1620.1",
+ "name": "和田堀橋",
+ "latitude": 35.686923,
+ "longitude": 139.655694,
+ "polygon": [
+ [
+ 139.65558410989013,
+ 35.68701309009009
+ ],
+ [
+ 139.6558038901099,
+ 35.68701309009009
+ ],
+ [
+ 139.6558038901099,
+ 35.68683290990991
+ ],
+ [
+ 139.65558410989013,
+ 35.68683290990991
+ ],
+ [
+ 139.65558410989013,
+ 35.68701309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yachiyobashi.1552.2",
+ "name": "八千代橋",
+ "latitude": 35.640724,
+ "longitude": 139.747865,
+ "polygon": [
+ [
+ 139.7477551098901,
+ 35.64081409009009
+ ],
+ [
+ 139.74797489010987,
+ 35.64081409009009
+ ],
+ [
+ 139.74797489010987,
+ 35.64063390990991
+ ],
+ [
+ 139.7477551098901,
+ 35.64063390990991
+ ],
+ [
+ 139.7477551098901,
+ 35.64081409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yatsuyamabashi.1553.1",
+ "name": "八ツ山橋",
+ "latitude": 35.624237,
+ "longitude": 139.737901,
+ "polygon": [
+ [
+ 139.7377911098901,
+ 35.62432709009009
+ ],
+ [
+ 139.73801089010988,
+ 35.62432709009009
+ ],
+ [
+ 139.73801089010988,
+ 35.62414690990991
+ ],
+ [
+ 139.7377911098901,
+ 35.62414690990991
+ ],
+ [
+ 139.7377911098901,
+ 35.62432709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yanaka.1554.1",
+ "name": "谷中",
+ "latitude": 35.721114,
+ "longitude": 139.771049,
+ "polygon": [
+ [
+ 139.77093910989012,
+ 35.72120409009009
+ ],
+ [
+ 139.7711588901099,
+ 35.72120409009009
+ ],
+ [
+ 139.7711588901099,
+ 35.72102390990991
+ ],
+ [
+ 139.77093910989012,
+ 35.72102390990991
+ ],
+ [
+ 139.77093910989012,
+ 35.72120409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yanaka.1554.2",
+ "name": "谷中",
+ "latitude": 35.721028,
+ "longitude": 139.77066,
+ "polygon": [
+ [
+ 139.7705501098901,
+ 35.72111809009009
+ ],
+ [
+ 139.77076989010988,
+ 35.72111809009009
+ ],
+ [
+ 139.77076989010988,
+ 35.72093790990991
+ ],
+ [
+ 139.7705501098901,
+ 35.72093790990991
+ ],
+ [
+ 139.7705501098901,
+ 35.72111809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yanagawa.1555.1",
+ "name": "柳川",
+ "latitude": 35.809858,
+ "longitude": 139.259402,
+ "polygon": [
+ [
+ 139.2592921098901,
+ 35.80994809009009
+ ],
+ [
+ 139.25951189010988,
+ 35.80994809009009
+ ],
+ [
+ 139.25951189010988,
+ 35.80976790990991
+ ],
+ [
+ 139.2592921098901,
+ 35.80976790990991
+ ],
+ [
+ 139.2592921098901,
+ 35.80994809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yanagawa.1555.2",
+ "name": "柳川",
+ "latitude": 35.810304,
+ "longitude": 139.25932,
+ "polygon": [
+ [
+ 139.25921010989012,
+ 35.81039409009009
+ ],
+ [
+ 139.25942989010989,
+ 35.81039409009009
+ ],
+ [
+ 139.25942989010989,
+ 35.81021390990991
+ ],
+ [
+ 139.25921010989012,
+ 35.81021390990991
+ ],
+ [
+ 139.25921010989012,
+ 35.81039409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioParkTown.2013.1",
+ "name": "八潮パークタウン",
+ "latitude": 35.59966,
+ "longitude": 139.75078,
+ "polygon": [
+ [
+ 139.7506701098901,
+ 35.59975009009009
+ ],
+ [
+ 139.75088989010987,
+ 35.59975009009009
+ ],
+ [
+ 139.75088989010987,
+ 35.59956990990991
+ ],
+ [
+ 139.7506701098901,
+ 35.59956990990991
+ ],
+ [
+ 139.7506701098901,
+ 35.59975009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yanagishima.1556.1",
+ "name": "柳島",
+ "latitude": 35.707425,
+ "longitude": 139.819899,
+ "polygon": [
+ [
+ 139.8197891098901,
+ 35.70751509009009
+ ],
+ [
+ 139.82000889010988,
+ 35.70751509009009
+ ],
+ [
+ 139.82000889010988,
+ 35.70733490990991
+ ],
+ [
+ 139.8197891098901,
+ 35.70733490990991
+ ],
+ [
+ 139.8197891098901,
+ 35.70751509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yanagishima.1556.2",
+ "name": "柳島",
+ "latitude": 35.707225,
+ "longitude": 139.820013,
+ "polygon": [
+ [
+ 139.8199031098901,
+ 35.70731509009009
+ ],
+ [
+ 139.82012289010987,
+ 35.70731509009009
+ ],
+ [
+ 139.82012289010987,
+ 35.70713490990991
+ ],
+ [
+ 139.8199031098901,
+ 35.70713490990991
+ ],
+ [
+ 139.8199031098901,
+ 35.70731509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yahiro.1559.1",
+ "name": "八広",
+ "latitude": 35.725458,
+ "longitude": 139.828645,
+ "polygon": [
+ [
+ 139.8285351098901,
+ 35.72554809009009
+ ],
+ [
+ 139.82875489010988,
+ 35.72554809009009
+ ],
+ [
+ 139.82875489010988,
+ 35.72536790990991
+ ],
+ [
+ 139.8285351098901,
+ 35.72536790990991
+ ],
+ [
+ 139.8285351098901,
+ 35.72554809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yahiro.1559.2",
+ "name": "八広",
+ "latitude": 35.726476,
+ "longitude": 139.827688,
+ "polygon": [
+ [
+ 139.8275781098901,
+ 35.72656609009009
+ ],
+ [
+ 139.82779789010988,
+ 35.72656609009009
+ ],
+ [
+ 139.82779789010988,
+ 35.72638590990991
+ ],
+ [
+ 139.8275781098901,
+ 35.72638590990991
+ ],
+ [
+ 139.8275781098901,
+ 35.72656609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroNichome.1560.1",
+ "name": "八広二丁目",
+ "latitude": 35.716824,
+ "longitude": 139.828641,
+ "polygon": [
+ [
+ 139.82853110989012,
+ 35.71691409009009
+ ],
+ [
+ 139.8287508901099,
+ 35.71691409009009
+ ],
+ [
+ 139.8287508901099,
+ 35.71673390990991
+ ],
+ [
+ 139.82853110989012,
+ 35.71673390990991
+ ],
+ [
+ 139.82853110989012,
+ 35.71691409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroNichome.1560.2",
+ "name": "八広二丁目",
+ "latitude": 35.715553,
+ "longitude": 139.828299,
+ "polygon": [
+ [
+ 139.8281891098901,
+ 35.71564309009009
+ ],
+ [
+ 139.82840889010987,
+ 35.71564309009009
+ ],
+ [
+ 139.82840889010987,
+ 35.71546290990991
+ ],
+ [
+ 139.8281891098901,
+ 35.71546290990991
+ ],
+ [
+ 139.8281891098901,
+ 35.71564309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroNichome.1560.3",
+ "name": "八広二丁目",
+ "latitude": 35.71582,
+ "longitude": 139.828654,
+ "polygon": [
+ [
+ 139.82854410989012,
+ 35.71591009009009
+ ],
+ [
+ 139.82876389010988,
+ 35.71591009009009
+ ],
+ [
+ 139.82876389010988,
+ 35.71572990990991
+ ],
+ [
+ 139.82854410989012,
+ 35.71572990990991
+ ],
+ [
+ 139.82854410989012,
+ 35.71591009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroYonchome.1561.1",
+ "name": "八広四丁目",
+ "latitude": 35.720957,
+ "longitude": 139.829966,
+ "polygon": [
+ [
+ 139.82985610989013,
+ 35.72104709009009
+ ],
+ [
+ 139.8300758901099,
+ 35.72104709009009
+ ],
+ [
+ 139.8300758901099,
+ 35.72086690990991
+ ],
+ [
+ 139.82985610989013,
+ 35.72086690990991
+ ],
+ [
+ 139.82985610989013,
+ 35.72104709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroYonchome.1561.2",
+ "name": "八広四丁目",
+ "latitude": 35.721426,
+ "longitude": 139.830233,
+ "polygon": [
+ [
+ 139.8301231098901,
+ 35.72151609009009
+ ],
+ [
+ 139.83034289010988,
+ 35.72151609009009
+ ],
+ [
+ 139.83034289010988,
+ 35.72133590990991
+ ],
+ [
+ 139.8301231098901,
+ 35.72133590990991
+ ],
+ [
+ 139.8301231098901,
+ 35.72151609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YurakuchoStation.1570.1",
+ "name": "有楽町駅前",
+ "latitude": 35.675401,
+ "longitude": 139.762715,
+ "polygon": [
+ [
+ 139.7626051098901,
+ 35.67549109009009
+ ],
+ [
+ 139.76282489010987,
+ 35.67549109009009
+ ],
+ [
+ 139.76282489010987,
+ 35.67531090990991
+ ],
+ [
+ 139.7626051098901,
+ 35.67531090990991
+ ],
+ [
+ 139.7626051098901,
+ 35.67549109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroRokuchome.1562.1",
+ "name": "八広六丁目",
+ "latitude": 35.723733,
+ "longitude": 139.830434,
+ "polygon": [
+ [
+ 139.8303241098901,
+ 35.72382309009009
+ ],
+ [
+ 139.83054389010988,
+ 35.72382309009009
+ ],
+ [
+ 139.83054389010988,
+ 35.72364290990991
+ ],
+ [
+ 139.8303241098901,
+ 35.72364290990991
+ ],
+ [
+ 139.8303241098901,
+ 35.72382309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YahiroRokuchome.1562.2",
+ "name": "八広六丁目",
+ "latitude": 35.724038,
+ "longitude": 139.830319,
+ "polygon": [
+ [
+ 139.83020910989012,
+ 35.72412809009009
+ ],
+ [
+ 139.83042889010989,
+ 35.72412809009009
+ ],
+ [
+ 139.83042889010989,
+ 35.72394790990991
+ ],
+ [
+ 139.83020910989012,
+ 35.72394790990991
+ ],
+ [
+ 139.83020910989012,
+ 35.72412809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioKita.2012.1",
+ "name": "八潮北",
+ "latitude": 35.602289,
+ "longitude": 139.752307,
+ "polygon": [
+ [
+ 139.75219710989012,
+ 35.60237909009009
+ ],
+ [
+ 139.75241689010988,
+ 35.60237909009009
+ ],
+ [
+ 139.75241689010988,
+ 35.60219890990991
+ ],
+ [
+ 139.75219710989012,
+ 35.60219890990991
+ ],
+ [
+ 139.75219710989012,
+ 35.60237909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YamatoSoshajo.1563.1",
+ "name": "大和操車所前",
+ "latitude": 35.749319,
+ "longitude": 139.426652,
+ "polygon": [
+ [
+ 139.4265421098901,
+ 35.74940909009009
+ ],
+ [
+ 139.42676189010987,
+ 35.74940909009009
+ ],
+ [
+ 139.42676189010987,
+ 35.74922890990991
+ ],
+ [
+ 139.4265421098901,
+ 35.74922890990991
+ ],
+ [
+ 139.4265421098901,
+ 35.74940909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YamatoSoshajo.1563.2",
+ "name": "大和操車所前",
+ "latitude": 35.749696,
+ "longitude": 139.426435,
+ "polygon": [
+ [
+ 139.42632510989012,
+ 35.74978609009009
+ ],
+ [
+ 139.42654489010988,
+ 35.74978609009009
+ ],
+ [
+ 139.42654489010988,
+ 35.74960590990991
+ ],
+ [
+ 139.42632510989012,
+ 35.74960590990991
+ ],
+ [
+ 139.42632510989012,
+ 35.74978609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yamatocho.1564.1",
+ "name": "大和町",
+ "latitude": 35.761958,
+ "longitude": 139.708689,
+ "polygon": [
+ [
+ 139.7085791098901,
+ 35.76204809009009
+ ],
+ [
+ 139.70879889010988,
+ 35.76204809009009
+ ],
+ [
+ 139.70879889010988,
+ 35.76186790990991
+ ],
+ [
+ 139.7085791098901,
+ 35.76186790990991
+ ],
+ [
+ 139.7085791098901,
+ 35.76204809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yamatocho.1564.2",
+ "name": "大和町",
+ "latitude": 35.762052,
+ "longitude": 139.708386,
+ "polygon": [
+ [
+ 139.7082761098901,
+ 35.76214209009009
+ ],
+ [
+ 139.70849589010987,
+ 35.76214209009009
+ ],
+ [
+ 139.70849589010987,
+ 35.76196190990991
+ ],
+ [
+ 139.7082761098901,
+ 35.76196190990991
+ ],
+ [
+ 139.7082761098901,
+ 35.76214209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYamatoByoin.1565.1",
+ "name": "東大和病院前",
+ "latitude": 35.74126,
+ "longitude": 139.431176,
+ "polygon": [
+ [
+ 139.4310661098901,
+ 35.74135009009009
+ ],
+ [
+ 139.43128589010988,
+ 35.74135009009009
+ ],
+ [
+ 139.43128589010988,
+ 35.74116990990991
+ ],
+ [
+ 139.4310661098901,
+ 35.74116990990991
+ ],
+ [
+ 139.4310661098901,
+ 35.74135009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYamatoByoin.1565.2",
+ "name": "東大和病院前",
+ "latitude": 35.741303,
+ "longitude": 139.430999,
+ "polygon": [
+ [
+ 139.43088910989013,
+ 35.74139309009009
+ ],
+ [
+ 139.4311088901099,
+ 35.74139309009009
+ ],
+ [
+ 139.4311088901099,
+ 35.74121290990991
+ ],
+ [
+ 139.43088910989013,
+ 35.74121290990991
+ ],
+ [
+ 139.43088910989013,
+ 35.74139309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yamabukicho.1566.1",
+ "name": "山吹町",
+ "latitude": 35.707805,
+ "longitude": 139.731254,
+ "polygon": [
+ [
+ 139.73114410989012,
+ 35.70789509009009
+ ],
+ [
+ 139.7313638901099,
+ 35.70789509009009
+ ],
+ [
+ 139.7313638901099,
+ 35.70771490990991
+ ],
+ [
+ 139.73114410989012,
+ 35.70771490990991
+ ],
+ [
+ 139.73114410989012,
+ 35.70789509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yamabukicho.1566.2",
+ "name": "山吹町",
+ "latitude": 35.708751,
+ "longitude": 139.73157,
+ "polygon": [
+ [
+ 139.73146010989012,
+ 35.70884109009009
+ ],
+ [
+ 139.7316798901099,
+ 35.70884109009009
+ ],
+ [
+ 139.7316798901099,
+ 35.70866090990991
+ ],
+ [
+ 139.73146010989012,
+ 35.70866090990991
+ ],
+ [
+ 139.73146010989012,
+ 35.70884109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yamabushicho.1567.1",
+ "name": "山伏町",
+ "latitude": 35.699341,
+ "longitude": 139.728998,
+ "polygon": [
+ [
+ 139.7288881098901,
+ 35.69943109009009
+ ],
+ [
+ 139.72910789010987,
+ 35.69943109009009
+ ],
+ [
+ 139.72910789010987,
+ 35.69925090990991
+ ],
+ [
+ 139.7288881098901,
+ 35.69925090990991
+ ],
+ [
+ 139.7288881098901,
+ 35.69943109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YutatezakaShita.1576.2",
+ "name": "湯立坂下",
+ "latitude": 35.720937,
+ "longitude": 139.74025,
+ "polygon": [
+ [
+ 139.74014010989012,
+ 35.72102709009009
+ ],
+ [
+ 139.7403598901099,
+ 35.72102709009009
+ ],
+ [
+ 139.7403598901099,
+ 35.72084690990991
+ ],
+ [
+ 139.74014010989012,
+ 35.72084690990991
+ ],
+ [
+ 139.74014010989012,
+ 35.72102709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yamabushicho.1567.2",
+ "name": "山伏町",
+ "latitude": 35.699133,
+ "longitude": 139.729434,
+ "polygon": [
+ [
+ 139.72932410989011,
+ 35.69922309009009
+ ],
+ [
+ 139.72954389010988,
+ 35.69922309009009
+ ],
+ [
+ 139.72954389010988,
+ 35.69904290990991
+ ],
+ [
+ 139.72932410989011,
+ 35.69904290990991
+ ],
+ [
+ 139.72932410989011,
+ 35.69922309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yayoicho.1568.1",
+ "name": "弥生町",
+ "latitude": 35.772495,
+ "longitude": 139.803258,
+ "polygon": [
+ [
+ 139.80314810989012,
+ 35.77258509009009
+ ],
+ [
+ 139.80336789010988,
+ 35.77258509009009
+ ],
+ [
+ 139.80336789010988,
+ 35.77240490990991
+ ],
+ [
+ 139.80314810989012,
+ 35.77240490990991
+ ],
+ [
+ 139.80314810989012,
+ 35.77258509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yayoicho.1568.2",
+ "name": "弥生町",
+ "latitude": 35.772775,
+ "longitude": 139.803483,
+ "polygon": [
+ [
+ 139.80337310989012,
+ 35.77286509009009
+ ],
+ [
+ 139.80359289010988,
+ 35.77286509009009
+ ],
+ [
+ 139.80359289010988,
+ 35.77268490990991
+ ],
+ [
+ 139.80337310989012,
+ 35.77268490990991
+ ],
+ [
+ 139.80337310989012,
+ 35.77286509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YurakuchoStation.1570.2",
+ "name": "有楽町駅前",
+ "latitude": 35.675581,
+ "longitude": 139.762546,
+ "polygon": [
+ [
+ 139.7624361098901,
+ 35.67567109009009
+ ],
+ [
+ 139.76265589010987,
+ 35.67567109009009
+ ],
+ [
+ 139.76265589010987,
+ 35.67549090990991
+ ],
+ [
+ 139.7624361098901,
+ 35.67549090990991
+ ],
+ [
+ 139.7624361098901,
+ 35.67567109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yugi.1572.1",
+ "name": "柚木",
+ "latitude": 35.796631,
+ "longitude": 139.213583,
+ "polygon": [
+ [
+ 139.21347310989012,
+ 35.79672109009009
+ ],
+ [
+ 139.21369289010988,
+ 35.79672109009009
+ ],
+ [
+ 139.21369289010988,
+ 35.79654090990991
+ ],
+ [
+ 139.21347310989012,
+ 35.79654090990991
+ ],
+ [
+ 139.21347310989012,
+ 35.79672109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yugi.1572.2",
+ "name": "柚木",
+ "latitude": 35.796886,
+ "longitude": 139.213669,
+ "polygon": [
+ [
+ 139.21355910989013,
+ 35.79697609009009
+ ],
+ [
+ 139.2137788901099,
+ 35.79697609009009
+ ],
+ [
+ 139.2137788901099,
+ 35.79679590990991
+ ],
+ [
+ 139.21355910989013,
+ 35.79679590990991
+ ],
+ [
+ 139.21355910989013,
+ 35.79697609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YushimaItchome.1573.1",
+ "name": "湯島一丁目",
+ "latitude": 35.702442,
+ "longitude": 139.764738,
+ "polygon": [
+ [
+ 139.7646281098901,
+ 35.70253209009009
+ ],
+ [
+ 139.76484789010988,
+ 35.70253209009009
+ ],
+ [
+ 139.76484789010988,
+ 35.70235190990991
+ ],
+ [
+ 139.7646281098901,
+ 35.70235190990991
+ ],
+ [
+ 139.7646281098901,
+ 35.70253209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YushimaSanchome.1574.1",
+ "name": "湯島三丁目",
+ "latitude": 35.708194,
+ "longitude": 139.769409,
+ "polygon": [
+ [
+ 139.7692991098901,
+ 35.70828409009009
+ ],
+ [
+ 139.76951889010988,
+ 35.70828409009009
+ ],
+ [
+ 139.76951889010988,
+ 35.70810390990991
+ ],
+ [
+ 139.7692991098901,
+ 35.70810390990991
+ ],
+ [
+ 139.7692991098901,
+ 35.70828409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YushimaSanchome.1574.2",
+ "name": "湯島三丁目",
+ "latitude": 35.708415,
+ "longitude": 139.768288,
+ "polygon": [
+ [
+ 139.76817810989013,
+ 35.70850509009009
+ ],
+ [
+ 139.7683978901099,
+ 35.70850509009009
+ ],
+ [
+ 139.7683978901099,
+ 35.70832490990991
+ ],
+ [
+ 139.76817810989013,
+ 35.70832490990991
+ ],
+ [
+ 139.76817810989013,
+ 35.70850509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ryusen.1599.1",
+ "name": "竜泉",
+ "latitude": 35.724205,
+ "longitude": 139.790886,
+ "polygon": [
+ [
+ 139.79077610989012,
+ 35.72429509009009
+ ],
+ [
+ 139.79099589010988,
+ 35.72429509009009
+ ],
+ [
+ 139.79099589010988,
+ 35.72411490990991
+ ],
+ [
+ 139.79077610989012,
+ 35.72411490990991
+ ],
+ [
+ 139.79077610989012,
+ 35.72429509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YushimaYonchome.1575.1",
+ "name": "湯島四丁目",
+ "latitude": 35.707363,
+ "longitude": 139.7645,
+ "polygon": [
+ [
+ 139.76439010989012,
+ 35.70745309009009
+ ],
+ [
+ 139.76460989010988,
+ 35.70745309009009
+ ],
+ [
+ 139.76460989010988,
+ 35.70727290990991
+ ],
+ [
+ 139.76439010989012,
+ 35.70727290990991
+ ],
+ [
+ 139.76439010989012,
+ 35.70745309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YushimaYonchome.1575.2",
+ "name": "湯島四丁目",
+ "latitude": 35.707504,
+ "longitude": 139.764796,
+ "polygon": [
+ [
+ 139.7646861098901,
+ 35.70759409009009
+ ],
+ [
+ 139.76490589010987,
+ 35.70759409009009
+ ],
+ [
+ 139.76490589010987,
+ 35.70741390990991
+ ],
+ [
+ 139.7646861098901,
+ 35.70741390990991
+ ],
+ [
+ 139.7646861098901,
+ 35.70759409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YutatezakaShita.1576.1",
+ "name": "湯立坂下",
+ "latitude": 35.720514,
+ "longitude": 139.740365,
+ "polygon": [
+ [
+ 139.74025510989011,
+ 35.72060409009009
+ ],
+ [
+ 139.74047489010988,
+ 35.72060409009009
+ ],
+ [
+ 139.74047489010988,
+ 35.72042390990991
+ ],
+ [
+ 139.74025510989011,
+ 35.72042390990991
+ ],
+ [
+ 139.74025510989011,
+ 35.72060409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yokokawabashi.1578.1",
+ "name": "横川橋",
+ "latitude": 35.704038,
+ "longitude": 139.809547,
+ "polygon": [
+ [
+ 139.80943710989013,
+ 35.70412809009009
+ ],
+ [
+ 139.8096568901099,
+ 35.70412809009009
+ ],
+ [
+ 139.8096568901099,
+ 35.70394790990991
+ ],
+ [
+ 139.80943710989013,
+ 35.70394790990991
+ ],
+ [
+ 139.80943710989013,
+ 35.70412809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yokokawabashi.1578.2",
+ "name": "横川橋",
+ "latitude": 35.704166,
+ "longitude": 139.809688,
+ "polygon": [
+ [
+ 139.8095781098901,
+ 35.70425609009009
+ ],
+ [
+ 139.80979789010988,
+ 35.70425609009009
+ ],
+ [
+ 139.80979789010988,
+ 35.70407590990991
+ ],
+ [
+ 139.8095781098901,
+ 35.70407590990991
+ ],
+ [
+ 139.8095781098901,
+ 35.70425609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiStation.1609.1",
+ "name": "六本木駅前",
+ "latitude": 35.662936,
+ "longitude": 139.733091,
+ "polygon": [
+ [
+ 139.73298110989012,
+ 35.66302609009009
+ ],
+ [
+ 139.73320089010988,
+ 35.66302609009009
+ ],
+ [
+ 139.73320089010988,
+ 35.66284590990991
+ ],
+ [
+ 139.73298110989012,
+ 35.66284590990991
+ ],
+ [
+ 139.73298110989012,
+ 35.66302609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YokokawaSanchome.1579.1",
+ "name": "横川三丁目",
+ "latitude": 35.704389,
+ "longitude": 139.813699,
+ "polygon": [
+ [
+ 139.81358910989013,
+ 35.70447909009009
+ ],
+ [
+ 139.8138088901099,
+ 35.70447909009009
+ ],
+ [
+ 139.8138088901099,
+ 35.70429890990991
+ ],
+ [
+ 139.81358910989013,
+ 35.70429890990991
+ ],
+ [
+ 139.81358910989013,
+ 35.70447909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YokokawaSanchome.1579.2",
+ "name": "横川三丁目",
+ "latitude": 35.703867,
+ "longitude": 139.81436,
+ "polygon": [
+ [
+ 139.8142501098901,
+ 35.70395709009009
+ ],
+ [
+ 139.81446989010988,
+ 35.70395709009009
+ ],
+ [
+ 139.81446989010988,
+ 35.70377690990991
+ ],
+ [
+ 139.8142501098901,
+ 35.70377690990991
+ ],
+ [
+ 139.8142501098901,
+ 35.70395709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YokokawaSanchome.1579.3",
+ "name": "横川三丁目",
+ "latitude": 35.704777,
+ "longitude": 139.814487,
+ "polygon": [
+ [
+ 139.81437710989013,
+ 35.70486709009009
+ ],
+ [
+ 139.8145968901099,
+ 35.70486709009009
+ ],
+ [
+ 139.8145968901099,
+ 35.70468690990991
+ ],
+ [
+ 139.81437710989013,
+ 35.70468690990991
+ ],
+ [
+ 139.81437710989013,
+ 35.70486709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yokota.1580.1",
+ "name": "横田",
+ "latitude": 35.756225,
+ "longitude": 139.384944,
+ "polygon": [
+ [
+ 139.3848341098901,
+ 35.75631509009009
+ ],
+ [
+ 139.38505389010987,
+ 35.75631509009009
+ ],
+ [
+ 139.38505389010987,
+ 35.75613490990991
+ ],
+ [
+ 139.3848341098901,
+ 35.75613490990991
+ ],
+ [
+ 139.3848341098901,
+ 35.75631509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yokota.1580.2",
+ "name": "横田",
+ "latitude": 35.756073,
+ "longitude": 139.385093,
+ "polygon": [
+ [
+ 139.38498310989013,
+ 35.75616309009009
+ ],
+ [
+ 139.3852028901099,
+ 35.75616309009009
+ ],
+ [
+ 139.3852028901099,
+ 35.75598290990991
+ ],
+ [
+ 139.38498310989013,
+ 35.75598290990991
+ ],
+ [
+ 139.38498310989013,
+ 35.75616309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yoshino.1582.1",
+ "name": "吉野",
+ "latitude": 35.802299,
+ "longitude": 139.209449,
+ "polygon": [
+ [
+ 139.20933910989012,
+ 35.80238909009009
+ ],
+ [
+ 139.2095588901099,
+ 35.80238909009009
+ ],
+ [
+ 139.2095588901099,
+ 35.80220890990991
+ ],
+ [
+ 139.20933910989012,
+ 35.80220890990991
+ ],
+ [
+ 139.20933910989012,
+ 35.80238909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yoshino.1582.2",
+ "name": "吉野",
+ "latitude": 35.802612,
+ "longitude": 139.209182,
+ "polygon": [
+ [
+ 139.20907210989012,
+ 35.802702090090094
+ ],
+ [
+ 139.20929189010988,
+ 35.802702090090094
+ ],
+ [
+ 139.20929189010988,
+ 35.80252190990991
+ ],
+ [
+ 139.20907210989012,
+ 35.80252190990991
+ ],
+ [
+ 139.20907210989012,
+ 35.802702090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YoshinoBairin.1584.1",
+ "name": "吉野梅林",
+ "latitude": 35.787218,
+ "longitude": 139.223233,
+ "polygon": [
+ [
+ 139.2231231098901,
+ 35.78730809009009
+ ],
+ [
+ 139.22334289010988,
+ 35.78730809009009
+ ],
+ [
+ 139.22334289010988,
+ 35.78712790990991
+ ],
+ [
+ 139.2231231098901,
+ 35.78712790990991
+ ],
+ [
+ 139.2231231098901,
+ 35.78730809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YoshinoBairin.1584.2",
+ "name": "吉野梅林",
+ "latitude": 35.787625,
+ "longitude": 139.223114,
+ "polygon": [
+ [
+ 139.22300410989013,
+ 35.78771509009009
+ ],
+ [
+ 139.2232238901099,
+ 35.78771509009009
+ ],
+ [
+ 139.2232238901099,
+ 35.78753490990991
+ ],
+ [
+ 139.22300410989013,
+ 35.78753490990991
+ ],
+ [
+ 139.22300410989013,
+ 35.78771509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YoshiwaraOmon.1585.1",
+ "name": "吉原大門",
+ "latitude": 35.723776,
+ "longitude": 139.797863,
+ "polygon": [
+ [
+ 139.79775310989012,
+ 35.72386609009009
+ ],
+ [
+ 139.7979728901099,
+ 35.72386609009009
+ ],
+ [
+ 139.7979728901099,
+ 35.72368590990991
+ ],
+ [
+ 139.79775310989012,
+ 35.72368590990991
+ ],
+ [
+ 139.79775310989012,
+ 35.72386609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakachoNishigumi.1801.1",
+ "name": "仲町西組",
+ "latitude": 35.661159,
+ "longitude": 139.872779,
+ "polygon": [
+ [
+ 139.87266910989013,
+ 35.66124909009009
+ ],
+ [
+ 139.8728888901099,
+ 35.66124909009009
+ ],
+ [
+ 139.8728888901099,
+ 35.66106890990991
+ ],
+ [
+ 139.87266910989013,
+ 35.66106890990991
+ ],
+ [
+ 139.87266910989013,
+ 35.66124909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YoshiwaraOmon.1585.2",
+ "name": "吉原大門",
+ "latitude": 35.724116,
+ "longitude": 139.797783,
+ "polygon": [
+ [
+ 139.79767310989013,
+ 35.72420609009009
+ ],
+ [
+ 139.7978928901099,
+ 35.72420609009009
+ ],
+ [
+ 139.7978928901099,
+ 35.72402590990991
+ ],
+ [
+ 139.79767310989013,
+ 35.72402590990991
+ ],
+ [
+ 139.79767310989013,
+ 35.72420609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yochomachi.1586.1",
+ "name": "余丁町",
+ "latitude": 35.698368,
+ "longitude": 139.716117,
+ "polygon": [
+ [
+ 139.7160071098901,
+ 35.69845809009009
+ ],
+ [
+ 139.71622689010988,
+ 35.69845809009009
+ ],
+ [
+ 139.71622689010988,
+ 35.69827790990991
+ ],
+ [
+ 139.7160071098901,
+ 35.69827790990991
+ ],
+ [
+ 139.7160071098901,
+ 35.69845809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yochomachi.1586.2",
+ "name": "余丁町",
+ "latitude": 35.698537,
+ "longitude": 139.716154,
+ "polygon": [
+ [
+ 139.7160441098901,
+ 35.69862709009009
+ ],
+ [
+ 139.71626389010987,
+ 35.69862709009009
+ ],
+ [
+ 139.71626389010987,
+ 35.69844690990991
+ ],
+ [
+ 139.7160441098901,
+ 35.69844690990991
+ ],
+ [
+ 139.7160441098901,
+ 35.69862709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsugiShogakko.1587.1",
+ "name": "よつぎ小学校前",
+ "latitude": 35.73613,
+ "longitude": 139.835014,
+ "polygon": [
+ [
+ 139.83490410989012,
+ 35.73622009009009
+ ],
+ [
+ 139.83512389010988,
+ 35.73622009009009
+ ],
+ [
+ 139.83512389010988,
+ 35.73603990990991
+ ],
+ [
+ 139.83490410989012,
+ 35.73603990990991
+ ],
+ [
+ 139.83490410989012,
+ 35.73622009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsugiShogakko.1587.2",
+ "name": "よつぎ小学校前",
+ "latitude": 35.73683,
+ "longitude": 139.835457,
+ "polygon": [
+ [
+ 139.8353471098901,
+ 35.73692009009009
+ ],
+ [
+ 139.83556689010987,
+ 35.73692009009009
+ ],
+ [
+ 139.83556689010987,
+ 35.73673990990991
+ ],
+ [
+ 139.8353471098901,
+ 35.73673990990991
+ ],
+ [
+ 139.8353471098901,
+ 35.73692009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaStationMae.1590.3",
+ "name": "四谷駅前",
+ "latitude": 35.685371,
+ "longitude": 139.7314,
+ "polygon": [
+ [
+ 139.73129010989012,
+ 35.685461090090094
+ ],
+ [
+ 139.7315098901099,
+ 35.685461090090094
+ ],
+ [
+ 139.7315098901099,
+ 35.68528090990991
+ ],
+ [
+ 139.73129010989012,
+ 35.68528090990991
+ ],
+ [
+ 139.73129010989012,
+ 35.685461090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yotsugibashi.1588.1",
+ "name": "四ツ木橋",
+ "latitude": 35.735284,
+ "longitude": 139.833331,
+ "polygon": [
+ [
+ 139.8332211098901,
+ 35.73537409009009
+ ],
+ [
+ 139.83344089010987,
+ 35.73537409009009
+ ],
+ [
+ 139.83344089010987,
+ 35.73519390990991
+ ],
+ [
+ 139.8332211098901,
+ 35.73519390990991
+ ],
+ [
+ 139.8332211098901,
+ 35.73537409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yotsugibashi.1588.2",
+ "name": "四ツ木橋",
+ "latitude": 35.734564,
+ "longitude": 139.83287,
+ "polygon": [
+ [
+ 139.83276010989013,
+ 35.73465409009009
+ ],
+ [
+ 139.8329798901099,
+ 35.73465409009009
+ ],
+ [
+ 139.8329798901099,
+ 35.73447390990991
+ ],
+ [
+ 139.83276010989013,
+ 35.73447390990991
+ ],
+ [
+ 139.83276010989013,
+ 35.73465409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsugibashiMinamizume.1589.1",
+ "name": "四ツ木橋南詰",
+ "latitude": 35.729117,
+ "longitude": 139.82547,
+ "polygon": [
+ [
+ 139.8253601098901,
+ 35.72920709009009
+ ],
+ [
+ 139.82557989010988,
+ 35.72920709009009
+ ],
+ [
+ 139.82557989010988,
+ 35.72902690990991
+ ],
+ [
+ 139.8253601098901,
+ 35.72902690990991
+ ],
+ [
+ 139.8253601098901,
+ 35.72920709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsugibashiMinamizume.1589.2",
+ "name": "四ツ木橋南詰",
+ "latitude": 35.72949,
+ "longitude": 139.826133,
+ "polygon": [
+ [
+ 139.82602310989012,
+ 35.72958009009009
+ ],
+ [
+ 139.82624289010988,
+ 35.72958009009009
+ ],
+ [
+ 139.82624289010988,
+ 35.72939990990991
+ ],
+ [
+ 139.82602310989012,
+ 35.72939990990991
+ ],
+ [
+ 139.82602310989012,
+ 35.72958009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaStationMae.1590.2",
+ "name": "四谷駅前",
+ "latitude": 35.685585,
+ "longitude": 139.731691,
+ "polygon": [
+ [
+ 139.73158110989013,
+ 35.68567509009009
+ ],
+ [
+ 139.7318008901099,
+ 35.68567509009009
+ ],
+ [
+ 139.7318008901099,
+ 35.68549490990991
+ ],
+ [
+ 139.73158110989013,
+ 35.68549490990991
+ ],
+ [
+ 139.73158110989013,
+ 35.68567509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaStation.1592.1",
+ "name": "四谷駅",
+ "latitude": 35.686429,
+ "longitude": 139.730074,
+ "polygon": [
+ [
+ 139.72996410989012,
+ 35.68651909009009
+ ],
+ [
+ 139.73018389010988,
+ 35.68651909009009
+ ],
+ [
+ 139.73018389010988,
+ 35.68633890990991
+ ],
+ [
+ 139.72996410989012,
+ 35.68633890990991
+ ],
+ [
+ 139.72996410989012,
+ 35.68651909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaStation.1592.2",
+ "name": "四谷駅",
+ "latitude": 35.686366,
+ "longitude": 139.730223,
+ "polygon": [
+ [
+ 139.7301131098901,
+ 35.68645609009009
+ ],
+ [
+ 139.73033289010988,
+ 35.68645609009009
+ ],
+ [
+ 139.73033289010988,
+ 35.68627590990991
+ ],
+ [
+ 139.7301131098901,
+ 35.68627590990991
+ ],
+ [
+ 139.7301131098901,
+ 35.68645609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaItchome.1593.2",
+ "name": "四谷一丁目",
+ "latitude": 35.686189,
+ "longitude": 139.728006,
+ "polygon": [
+ [
+ 139.7278961098901,
+ 35.68627909009009
+ ],
+ [
+ 139.72811589010988,
+ 35.68627909009009
+ ],
+ [
+ 139.72811589010988,
+ 35.68609890990991
+ ],
+ [
+ 139.7278961098901,
+ 35.68609890990991
+ ],
+ [
+ 139.7278961098901,
+ 35.68627909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaItchome.1593.3",
+ "name": "四谷一丁目",
+ "latitude": 35.686429,
+ "longitude": 139.728234,
+ "polygon": [
+ [
+ 139.7281241098901,
+ 35.68651909009009
+ ],
+ [
+ 139.72834389010987,
+ 35.68651909009009
+ ],
+ [
+ 139.72834389010987,
+ 35.68633890990991
+ ],
+ [
+ 139.7281241098901,
+ 35.68633890990991
+ ],
+ [
+ 139.7281241098901,
+ 35.68651909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaNichome.1594.1",
+ "name": "四谷二丁目",
+ "latitude": 35.687667,
+ "longitude": 139.724587,
+ "polygon": [
+ [
+ 139.72447710989013,
+ 35.68775709009009
+ ],
+ [
+ 139.7246968901099,
+ 35.68775709009009
+ ],
+ [
+ 139.7246968901099,
+ 35.68757690990991
+ ],
+ [
+ 139.72447710989013,
+ 35.68757690990991
+ ],
+ [
+ 139.72447710989013,
+ 35.68775709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaNichome.1594.3",
+ "name": "四谷二丁目",
+ "latitude": 35.687061,
+ "longitude": 139.725527,
+ "polygon": [
+ [
+ 139.72541710989012,
+ 35.68715109009009
+ ],
+ [
+ 139.72563689010988,
+ 35.68715109009009
+ ],
+ [
+ 139.72563689010988,
+ 35.68697090990991
+ ],
+ [
+ 139.72541710989012,
+ 35.68697090990991
+ ],
+ [
+ 139.72541710989012,
+ 35.68715109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YoyogiHachimanStationIriguchi.1597.1",
+ "name": "代々木八幡駅入口",
+ "latitude": 35.669737,
+ "longitude": 139.688039,
+ "polygon": [
+ [
+ 139.68792910989012,
+ 35.66982709009009
+ ],
+ [
+ 139.6881488901099,
+ 35.66982709009009
+ ],
+ [
+ 139.6881488901099,
+ 35.66964690990991
+ ],
+ [
+ 139.68792910989012,
+ 35.66964690990991
+ ],
+ [
+ 139.68792910989012,
+ 35.66982709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaSanchome.1595.2",
+ "name": "四谷三丁目",
+ "latitude": 35.687258,
+ "longitude": 139.72041,
+ "polygon": [
+ [
+ 139.7203001098901,
+ 35.68734809009009
+ ],
+ [
+ 139.72051989010987,
+ 35.68734809009009
+ ],
+ [
+ 139.72051989010987,
+ 35.68716790990991
+ ],
+ [
+ 139.7203001098901,
+ 35.68716790990991
+ ],
+ [
+ 139.7203001098901,
+ 35.68734809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaSanchome.1595.3",
+ "name": "四谷三丁目",
+ "latitude": 35.687674,
+ "longitude": 139.719261,
+ "polygon": [
+ [
+ 139.7191511098901,
+ 35.68776409009009
+ ],
+ [
+ 139.71937089010987,
+ 35.68776409009009
+ ],
+ [
+ 139.71937089010987,
+ 35.68758390990991
+ ],
+ [
+ 139.7191511098901,
+ 35.68758390990991
+ ],
+ [
+ 139.7191511098901,
+ 35.68776409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaSanchome.1595.4",
+ "name": "四谷三丁目",
+ "latitude": 35.688536,
+ "longitude": 139.72026,
+ "polygon": [
+ [
+ 139.7201501098901,
+ 35.68862609009009
+ ],
+ [
+ 139.72036989010988,
+ 35.68862609009009
+ ],
+ [
+ 139.72036989010988,
+ 35.68844590990991
+ ],
+ [
+ 139.7201501098901,
+ 35.68844590990991
+ ],
+ [
+ 139.7201501098901,
+ 35.68862609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaYonchome.1596.1",
+ "name": "四谷四丁目",
+ "latitude": 35.686812,
+ "longitude": 139.716111,
+ "polygon": [
+ [
+ 139.71600110989013,
+ 35.68690209009009
+ ],
+ [
+ 139.7162208901099,
+ 35.68690209009009
+ ],
+ [
+ 139.7162208901099,
+ 35.68672190990991
+ ],
+ [
+ 139.71600110989013,
+ 35.68672190990991
+ ],
+ [
+ 139.71600110989013,
+ 35.68690209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaYonchome.1596.2",
+ "name": "四谷四丁目",
+ "latitude": 35.687502,
+ "longitude": 139.717323,
+ "polygon": [
+ [
+ 139.7172131098901,
+ 35.68759209009009
+ ],
+ [
+ 139.71743289010988,
+ 35.68759209009009
+ ],
+ [
+ 139.71743289010988,
+ 35.68741190990991
+ ],
+ [
+ 139.7172131098901,
+ 35.68741190990991
+ ],
+ [
+ 139.7172131098901,
+ 35.68759209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YotsuyaYonchome.1596.3",
+ "name": "四谷四丁目",
+ "latitude": 35.6877,
+ "longitude": 139.716555,
+ "polygon": [
+ [
+ 139.71644510989012,
+ 35.68779009009009
+ ],
+ [
+ 139.71666489010988,
+ 35.68779009009009
+ ],
+ [
+ 139.71666489010988,
+ 35.68760990990991
+ ],
+ [
+ 139.71644510989012,
+ 35.68760990990991
+ ],
+ [
+ 139.71644510989012,
+ 35.68779009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YoyogiHachimanStationIriguchi.1597.2",
+ "name": "代々木八幡駅入口",
+ "latitude": 35.670054,
+ "longitude": 139.687662,
+ "polygon": [
+ [
+ 139.6875521098901,
+ 35.67014409009009
+ ],
+ [
+ 139.68777189010987,
+ 35.67014409009009
+ ],
+ [
+ 139.68777189010987,
+ 35.66996390990991
+ ],
+ [
+ 139.6875521098901,
+ 35.66996390990991
+ ],
+ [
+ 139.6875521098901,
+ 35.67014409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiRikkyo.1598.1",
+ "name": "高円寺陸橋",
+ "latitude": 35.697457,
+ "longitude": 139.654789,
+ "polygon": [
+ [
+ 139.6546791098901,
+ 35.69754709009009
+ ],
+ [
+ 139.65489889010988,
+ 35.69754709009009
+ ],
+ [
+ 139.65489889010988,
+ 35.69736690990991
+ ],
+ [
+ 139.6546791098901,
+ 35.69736690990991
+ ],
+ [
+ 139.6546791098901,
+ 35.69754709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiRikkyo.1598.2",
+ "name": "高円寺陸橋",
+ "latitude": 35.697875,
+ "longitude": 139.653546,
+ "polygon": [
+ [
+ 139.65343610989012,
+ 35.697965090090094
+ ],
+ [
+ 139.6536558901099,
+ 35.697965090090094
+ ],
+ [
+ 139.6536558901099,
+ 35.69778490990991
+ ],
+ [
+ 139.65343610989012,
+ 35.69778490990991
+ ],
+ [
+ 139.65343610989012,
+ 35.697965090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiRikkyo.1598.3",
+ "name": "高円寺陸橋",
+ "latitude": 35.698516,
+ "longitude": 139.654499,
+ "polygon": [
+ [
+ 139.6543891098901,
+ 35.69860609009009
+ ],
+ [
+ 139.65460889010987,
+ 35.69860609009009
+ ],
+ [
+ 139.65460889010987,
+ 35.69842590990991
+ ],
+ [
+ 139.6543891098901,
+ 35.69842590990991
+ ],
+ [
+ 139.6543891098901,
+ 35.69860609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIkebukuroYonchome.2006.1",
+ "name": "上池袋四丁目",
+ "latitude": 35.73923,
+ "longitude": 139.723224,
+ "polygon": [
+ [
+ 139.7231141098901,
+ 35.73932009009009
+ ],
+ [
+ 139.72333389010987,
+ 35.73932009009009
+ ],
+ [
+ 139.72333389010987,
+ 35.73913990990991
+ ],
+ [
+ 139.7231141098901,
+ 35.73913990990991
+ ],
+ [
+ 139.7231141098901,
+ 35.73932009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoenjiRikkyo.1598.4",
+ "name": "高円寺陸橋",
+ "latitude": 35.698459,
+ "longitude": 139.654853,
+ "polygon": [
+ [
+ 139.65474310989012,
+ 35.69854909009009
+ ],
+ [
+ 139.65496289010989,
+ 35.69854909009009
+ ],
+ [
+ 139.65496289010989,
+ 35.69836890990991
+ ],
+ [
+ 139.65474310989012,
+ 35.69836890990991
+ ],
+ [
+ 139.65474310989012,
+ 35.69854909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ryusen.1599.2",
+ "name": "竜泉",
+ "latitude": 35.724269,
+ "longitude": 139.791161,
+ "polygon": [
+ [
+ 139.7910511098901,
+ 35.72435909009009
+ ],
+ [
+ 139.79127089010987,
+ 35.72435909009009
+ ],
+ [
+ 139.79127089010987,
+ 35.72417890990991
+ ],
+ [
+ 139.7910511098901,
+ 35.72417890990991
+ ],
+ [
+ 139.7910511098901,
+ 35.72435909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ryusen.1599.3",
+ "name": "竜泉",
+ "latitude": 35.725222,
+ "longitude": 139.791064,
+ "polygon": [
+ [
+ 139.79095410989012,
+ 35.72531209009009
+ ],
+ [
+ 139.7911738901099,
+ 35.72531209009009
+ ],
+ [
+ 139.7911738901099,
+ 35.72513190990991
+ ],
+ [
+ 139.79095410989012,
+ 35.72513190990991
+ ],
+ [
+ 139.79095410989012,
+ 35.72531209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RyogokuStation.1601.1",
+ "name": "両国駅前",
+ "latitude": 35.695257,
+ "longitude": 139.791988,
+ "polygon": [
+ [
+ 139.79187810989012,
+ 35.69534709009009
+ ],
+ [
+ 139.7920978901099,
+ 35.69534709009009
+ ],
+ [
+ 139.7920978901099,
+ 35.69516690990991
+ ],
+ [
+ 139.79187810989012,
+ 35.69516690990991
+ ],
+ [
+ 139.79187810989012,
+ 35.69534709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RyogokuStation.1601.2",
+ "name": "両国駅前",
+ "latitude": 35.695008,
+ "longitude": 139.792013,
+ "polygon": [
+ [
+ 139.79190310989011,
+ 35.69509809009009
+ ],
+ [
+ 139.79212289010988,
+ 35.69509809009009
+ ],
+ [
+ 139.79212289010988,
+ 35.69491790990991
+ ],
+ [
+ 139.79190310989011,
+ 35.69491790990991
+ ],
+ [
+ 139.79190310989011,
+ 35.69509809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KyuYasudaTeien.1602.1",
+ "name": "旧安田庭園前",
+ "latitude": 35.699023,
+ "longitude": 139.793971,
+ "polygon": [
+ [
+ 139.79386110989012,
+ 35.69911309009009
+ ],
+ [
+ 139.79408089010988,
+ 35.69911309009009
+ ],
+ [
+ 139.79408089010988,
+ 35.69893290990991
+ ],
+ [
+ 139.79386110989012,
+ 35.69893290990991
+ ],
+ [
+ 139.79386110989012,
+ 35.69911309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RyogokuYonchome.1603.1",
+ "name": "両国四丁目",
+ "latitude": 35.69449,
+ "longitude": 139.795376,
+ "polygon": [
+ [
+ 139.79526610989012,
+ 35.69458009009009
+ ],
+ [
+ 139.7954858901099,
+ 35.69458009009009
+ ],
+ [
+ 139.7954858901099,
+ 35.69439990990991
+ ],
+ [
+ 139.79526610989012,
+ 35.69439990990991
+ ],
+ [
+ 139.79526610989012,
+ 35.69458009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RyogokuStationIriguchi.1604.1",
+ "name": "両国駅入口",
+ "latitude": 35.694361,
+ "longitude": 139.793059,
+ "polygon": [
+ [
+ 139.79294910989012,
+ 35.69445109009009
+ ],
+ [
+ 139.79316889010988,
+ 35.69445109009009
+ ],
+ [
+ 139.79316889010988,
+ 35.69427090990991
+ ],
+ [
+ 139.79294910989012,
+ 35.69427090990991
+ ],
+ [
+ 139.79294910989012,
+ 35.69445109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ReihojiAto.1605.1",
+ "name": "鈴法寺跡",
+ "latitude": 35.788103,
+ "longitude": 139.295758,
+ "polygon": [
+ [
+ 139.29564810989012,
+ 35.78819309009009
+ ],
+ [
+ 139.2958678901099,
+ 35.78819309009009
+ ],
+ [
+ 139.2958678901099,
+ 35.78801290990991
+ ],
+ [
+ 139.29564810989012,
+ 35.78801290990991
+ ],
+ [
+ 139.29564810989012,
+ 35.78819309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ReihojiAto.1605.2",
+ "name": "鈴法寺跡",
+ "latitude": 35.787918,
+ "longitude": 139.295745,
+ "polygon": [
+ [
+ 139.29563510989013,
+ 35.78800809009009
+ ],
+ [
+ 139.2958548901099,
+ 35.78800809009009
+ ],
+ [
+ 139.2958548901099,
+ 35.78782790990991
+ ],
+ [
+ 139.29563510989013,
+ 35.78782790990991
+ ],
+ [
+ 139.29563510989013,
+ 35.78800809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiStation.1609.2",
+ "name": "六本木駅前",
+ "latitude": 35.662521,
+ "longitude": 139.731141,
+ "polygon": [
+ [
+ 139.73103110989013,
+ 35.66261109009009
+ ],
+ [
+ 139.7312508901099,
+ 35.66261109009009
+ ],
+ [
+ 139.7312508901099,
+ 35.66243090990991
+ ],
+ [
+ 139.73103110989013,
+ 35.66243090990991
+ ],
+ [
+ 139.73103110989013,
+ 35.66261109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Rokugatsucho.1606.1",
+ "name": "六月町",
+ "latitude": 35.788604,
+ "longitude": 139.802949,
+ "polygon": [
+ [
+ 139.80283910989013,
+ 35.78869409009009
+ ],
+ [
+ 139.8030588901099,
+ 35.78869409009009
+ ],
+ [
+ 139.8030588901099,
+ 35.78851390990991
+ ],
+ [
+ 139.80283910989013,
+ 35.78851390990991
+ ],
+ [
+ 139.80283910989013,
+ 35.78869409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Rokugatsucho.1606.2",
+ "name": "六月町",
+ "latitude": 35.788355,
+ "longitude": 139.802699,
+ "polygon": [
+ [
+ 139.8025891098901,
+ 35.78844509009009
+ ],
+ [
+ 139.80280889010987,
+ 35.78844509009009
+ ],
+ [
+ 139.80280889010987,
+ 35.78826490990991
+ ],
+ [
+ 139.8025891098901,
+ 35.78826490990991
+ ],
+ [
+ 139.8025891098901,
+ 35.78844509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RokumanKoen.1607.1",
+ "name": "六万公園前",
+ "latitude": 35.790136,
+ "longitude": 139.275135,
+ "polygon": [
+ [
+ 139.27502510989012,
+ 35.79022609009009
+ ],
+ [
+ 139.2752448901099,
+ 35.79022609009009
+ ],
+ [
+ 139.2752448901099,
+ 35.79004590990991
+ ],
+ [
+ 139.27502510989012,
+ 35.79004590990991
+ ],
+ [
+ 139.27502510989012,
+ 35.79022609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RokumanKoen.1607.2",
+ "name": "六万公園前",
+ "latitude": 35.790029,
+ "longitude": 139.275233,
+ "polygon": [
+ [
+ 139.2751231098901,
+ 35.79011909009009
+ ],
+ [
+ 139.27534289010987,
+ 35.79011909009009
+ ],
+ [
+ 139.27534289010987,
+ 35.78993890990991
+ ],
+ [
+ 139.2751231098901,
+ 35.78993890990991
+ ],
+ [
+ 139.2751231098901,
+ 35.79011909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Rokkencho.1608.1",
+ "name": "六軒町",
+ "latitude": 35.677426,
+ "longitude": 139.853296,
+ "polygon": [
+ [
+ 139.85318610989012,
+ 35.67751609009009
+ ],
+ [
+ 139.85340589010988,
+ 35.67751609009009
+ ],
+ [
+ 139.85340589010988,
+ 35.67733590990991
+ ],
+ [
+ 139.85318610989012,
+ 35.67733590990991
+ ],
+ [
+ 139.85318610989012,
+ 35.67751609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Rokkencho.1608.2",
+ "name": "六軒町",
+ "latitude": 35.677101,
+ "longitude": 139.85322,
+ "polygon": [
+ [
+ 139.8531101098901,
+ 35.67719109009009
+ ],
+ [
+ 139.85332989010988,
+ 35.67719109009009
+ ],
+ [
+ 139.85332989010988,
+ 35.67701090990991
+ ],
+ [
+ 139.8531101098901,
+ 35.67701090990991
+ ],
+ [
+ 139.8531101098901,
+ 35.67719109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiStation.1609.3",
+ "name": "六本木駅前",
+ "latitude": 35.662931,
+ "longitude": 139.731226,
+ "polygon": [
+ [
+ 139.7311161098901,
+ 35.66302109009009
+ ],
+ [
+ 139.73133589010988,
+ 35.66302109009009
+ ],
+ [
+ 139.73133589010988,
+ 35.66284090990991
+ ],
+ [
+ 139.7311161098901,
+ 35.66284090990991
+ ],
+ [
+ 139.7311161098901,
+ 35.66302109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiItchomeStation.1610.4",
+ "name": "六本木一丁目駅前",
+ "latitude": 35.6663,
+ "longitude": 139.737652,
+ "polygon": [
+ [
+ 139.73754210989011,
+ 35.66639009009009
+ ],
+ [
+ 139.73776189010988,
+ 35.66639009009009
+ ],
+ [
+ 139.73776189010988,
+ 35.66620990990991
+ ],
+ [
+ 139.73754210989011,
+ 35.66620990990991
+ ],
+ [
+ 139.73754210989011,
+ 35.66639009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiItchomeStation.1610.5",
+ "name": "六本木一丁目駅前",
+ "latitude": 35.666244,
+ "longitude": 139.738311,
+ "polygon": [
+ [
+ 139.73820110989013,
+ 35.66633409009009
+ ],
+ [
+ 139.7384208901099,
+ 35.66633409009009
+ ],
+ [
+ 139.7384208901099,
+ 35.66615390990991
+ ],
+ [
+ 139.73820110989013,
+ 35.66615390990991
+ ],
+ [
+ 139.73820110989013,
+ 35.66633409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiYonchome.1611.6",
+ "name": "六本木四丁目",
+ "latitude": 35.665185,
+ "longitude": 139.73581,
+ "polygon": [
+ [
+ 139.7357001098901,
+ 35.66527509009009
+ ],
+ [
+ 139.73591989010987,
+ 35.66527509009009
+ ],
+ [
+ 139.73591989010987,
+ 35.66509490990991
+ ],
+ [
+ 139.7357001098901,
+ 35.66509490990991
+ ],
+ [
+ 139.7357001098901,
+ 35.66527509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiYonchome.1611.7",
+ "name": "六本木四丁目",
+ "latitude": 35.664891,
+ "longitude": 139.735961,
+ "polygon": [
+ [
+ 139.73585110989012,
+ 35.66498109009009
+ ],
+ [
+ 139.7360708901099,
+ 35.66498109009009
+ ],
+ [
+ 139.7360708901099,
+ 35.66480090990991
+ ],
+ [
+ 139.73585110989012,
+ 35.66480090990991
+ ],
+ [
+ 139.73585110989012,
+ 35.66498109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiGochome.1612.1",
+ "name": "六本木五丁目",
+ "latitude": 35.661991,
+ "longitude": 139.735571,
+ "polygon": [
+ [
+ 139.7354611098901,
+ 35.66208109009009
+ ],
+ [
+ 139.73568089010988,
+ 35.66208109009009
+ ],
+ [
+ 139.73568089010988,
+ 35.66190090990991
+ ],
+ [
+ 139.7354611098901,
+ 35.66190090990991
+ ],
+ [
+ 139.7354611098901,
+ 35.66208109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YonGoBerth.1624.1",
+ "name": "4号バース前",
+ "latitude": 35.604104,
+ "longitude": 139.760881,
+ "polygon": [
+ [
+ 139.76077110989013,
+ 35.60419409009009
+ ],
+ [
+ 139.7609908901099,
+ 35.60419409009009
+ ],
+ [
+ 139.7609908901099,
+ 35.60401390990991
+ ],
+ [
+ 139.76077110989013,
+ 35.60401390990991
+ ],
+ [
+ 139.76077110989013,
+ 35.60419409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiGochome.1612.2",
+ "name": "六本木五丁目",
+ "latitude": 35.66185,
+ "longitude": 139.735517,
+ "polygon": [
+ [
+ 139.7354071098901,
+ 35.66194009009009
+ ],
+ [
+ 139.73562689010987,
+ 35.66194009009009
+ ],
+ [
+ 139.73562689010987,
+ 35.66175990990991
+ ],
+ [
+ 139.7354071098901,
+ 35.66175990990991
+ ],
+ [
+ 139.7354071098901,
+ 35.66194009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EXTheaterRoppongi.1613.3",
+ "name": "EXシアター六本木前",
+ "latitude": 35.661225,
+ "longitude": 139.72757,
+ "polygon": [
+ [
+ 139.7274601098901,
+ 35.66131509009009
+ ],
+ [
+ 139.72767989010987,
+ 35.66131509009009
+ ],
+ [
+ 139.72767989010987,
+ 35.66113490990991
+ ],
+ [
+ 139.7274601098901,
+ 35.66113490990991
+ ],
+ [
+ 139.7274601098901,
+ 35.66131509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EXTheaterRoppongi.1613.4",
+ "name": "EXシアター六本木前",
+ "latitude": 35.660692,
+ "longitude": 139.72703,
+ "polygon": [
+ [
+ 139.72692010989013,
+ 35.66078209009009
+ ],
+ [
+ 139.7271398901099,
+ 35.66078209009009
+ ],
+ [
+ 139.7271398901099,
+ 35.66060190990991
+ ],
+ [
+ 139.72692010989013,
+ 35.66060190990991
+ ],
+ [
+ 139.72692010989013,
+ 35.66078209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Wakamatsucho.1617.1",
+ "name": "若松町",
+ "latitude": 35.699991,
+ "longitude": 139.720402,
+ "polygon": [
+ [
+ 139.72029210989012,
+ 35.70008109009009
+ ],
+ [
+ 139.7205118901099,
+ 35.70008109009009
+ ],
+ [
+ 139.7205118901099,
+ 35.69990090990991
+ ],
+ [
+ 139.72029210989012,
+ 35.69990090990991
+ ],
+ [
+ 139.72029210989012,
+ 35.70008109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Wakamatsucho.1617.2",
+ "name": "若松町",
+ "latitude": 35.700434,
+ "longitude": 139.7204,
+ "polygon": [
+ [
+ 139.72029010989013,
+ 35.70052409009009
+ ],
+ [
+ 139.7205098901099,
+ 35.70052409009009
+ ],
+ [
+ 139.7205098901099,
+ 35.70034390990991
+ ],
+ [
+ 139.72029010989013,
+ 35.70034390990991
+ ],
+ [
+ 139.72029010989013,
+ 35.70052409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokanedaiItchome.2009.1",
+ "name": "白金台一丁目",
+ "latitude": 35.639544,
+ "longitude": 139.732064,
+ "polygon": [
+ [
+ 139.73195410989013,
+ 35.63963409009009
+ ],
+ [
+ 139.7321738901099,
+ 35.63963409009009
+ ],
+ [
+ 139.7321738901099,
+ 35.63945390990991
+ ],
+ [
+ 139.73195410989013,
+ 35.63945390990991
+ ],
+ [
+ 139.73195410989013,
+ 35.63963409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Wakamatsucho.1617.3",
+ "name": "若松町",
+ "latitude": 35.69992,
+ "longitude": 139.721507,
+ "polygon": [
+ [
+ 139.72139710989012,
+ 35.70001009009009
+ ],
+ [
+ 139.72161689010989,
+ 35.70001009009009
+ ],
+ [
+ 139.72161689010989,
+ 35.69982990990991
+ ],
+ [
+ 139.72139710989012,
+ 35.69982990990991
+ ],
+ [
+ 139.72139710989012,
+ 35.70001009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Wakamatsucho.1617.4",
+ "name": "若松町",
+ "latitude": 35.699769,
+ "longitude": 139.720163,
+ "polygon": [
+ [
+ 139.72005310989013,
+ 35.699859090090094
+ ],
+ [
+ 139.7202728901099,
+ 35.699859090090094
+ ],
+ [
+ 139.7202728901099,
+ 35.69967890990991
+ ],
+ [
+ 139.72005310989013,
+ 35.69967890990991
+ ],
+ [
+ 139.72005310989013,
+ 35.699859090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Waseda.1618.1",
+ "name": "早稲田",
+ "latitude": 35.711158,
+ "longitude": 139.720859,
+ "polygon": [
+ [
+ 139.7207491098901,
+ 35.71124809009009
+ ],
+ [
+ 139.72096889010987,
+ 35.71124809009009
+ ],
+ [
+ 139.72096889010987,
+ 35.71106790990991
+ ],
+ [
+ 139.7207491098901,
+ 35.71106790990991
+ ],
+ [
+ 139.7207491098901,
+ 35.71124809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Wadaboribashi.1620.2",
+ "name": "和田堀橋",
+ "latitude": 35.686882,
+ "longitude": 139.656057,
+ "polygon": [
+ [
+ 139.65594710989012,
+ 35.68697209009009
+ ],
+ [
+ 139.6561668901099,
+ 35.68697209009009
+ ],
+ [
+ 139.6561668901099,
+ 35.68679190990991
+ ],
+ [
+ 139.65594710989012,
+ 35.68679190990991
+ ],
+ [
+ 139.65594710989012,
+ 35.68697209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Waseda.1618.3",
+ "name": "早稲田",
+ "latitude": 35.711094,
+ "longitude": 139.721079,
+ "polygon": [
+ [
+ 139.72096910989012,
+ 35.71118409009009
+ ],
+ [
+ 139.7211888901099,
+ 35.71118409009009
+ ],
+ [
+ 139.7211888901099,
+ 35.71100390990991
+ ],
+ [
+ 139.72096910989012,
+ 35.71100390990991
+ ],
+ [
+ 139.72096910989012,
+ 35.71118409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Waseda.1618.4",
+ "name": "早稲田",
+ "latitude": 35.711029,
+ "longitude": 139.722255,
+ "polygon": [
+ [
+ 139.7221451098901,
+ 35.711119090090094
+ ],
+ [
+ 139.72236489010987,
+ 35.711119090090094
+ ],
+ [
+ 139.72236489010987,
+ 35.71093890990991
+ ],
+ [
+ 139.7221451098901,
+ 35.71093890990991
+ ],
+ [
+ 139.7221451098901,
+ 35.711119090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Waseda.1618.19",
+ "name": "早稲田",
+ "latitude": 35.710902,
+ "longitude": 139.721788,
+ "polygon": [
+ [
+ 139.72167810989012,
+ 35.71099209009009
+ ],
+ [
+ 139.7218978901099,
+ 35.71099209009009
+ ],
+ [
+ 139.7218978901099,
+ 35.71081190990991
+ ],
+ [
+ 139.72167810989012,
+ 35.71081190990991
+ ],
+ [
+ 139.72167810989012,
+ 35.71099209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.WadachoKaikan.1619.1",
+ "name": "和田町会館前",
+ "latitude": 35.779904,
+ "longitude": 139.22959,
+ "polygon": [
+ [
+ 139.22948010989012,
+ 35.77999409009009
+ ],
+ [
+ 139.22969989010988,
+ 35.77999409009009
+ ],
+ [
+ 139.22969989010988,
+ 35.77981390990991
+ ],
+ [
+ 139.22948010989012,
+ 35.77981390990991
+ ],
+ [
+ 139.22948010989012,
+ 35.77999409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.WadachoKaikan.1619.2",
+ "name": "和田町会館前",
+ "latitude": 35.779933,
+ "longitude": 139.229746,
+ "polygon": [
+ [
+ 139.22963610989012,
+ 35.78002309009009
+ ],
+ [
+ 139.2298558901099,
+ 35.78002309009009
+ ],
+ [
+ 139.2298558901099,
+ 35.77984290990991
+ ],
+ [
+ 139.22963610989012,
+ 35.77984290990991
+ ],
+ [
+ 139.22963610989012,
+ 35.78002309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NiGoBerth.1622.2",
+ "name": "2号バース前",
+ "latitude": 35.607176,
+ "longitude": 139.758547,
+ "polygon": [
+ [
+ 139.7584371098901,
+ 35.60726609009009
+ ],
+ [
+ 139.75865689010988,
+ 35.60726609009009
+ ],
+ [
+ 139.75865689010988,
+ 35.60708590990991
+ ],
+ [
+ 139.7584371098901,
+ 35.60708590990991
+ ],
+ [
+ 139.7584371098901,
+ 35.60726609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YonGoBerth.1624.2",
+ "name": "4号バース前",
+ "latitude": 35.601923,
+ "longitude": 139.761105,
+ "polygon": [
+ [
+ 139.7609951098901,
+ 35.60201309009009
+ ],
+ [
+ 139.76121489010987,
+ 35.60201309009009
+ ],
+ [
+ 139.76121489010987,
+ 35.60183290990991
+ ],
+ [
+ 139.7609951098901,
+ 35.60183290990991
+ ],
+ [
+ 139.7609951098901,
+ 35.60201309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GoGoBerth.1625.1",
+ "name": "5号バース前",
+ "latitude": 35.600812,
+ "longitude": 139.761994,
+ "polygon": [
+ [
+ 139.7618841098901,
+ 35.60090209009009
+ ],
+ [
+ 139.76210389010987,
+ 35.60090209009009
+ ],
+ [
+ 139.76210389010987,
+ 35.60072190990991
+ ],
+ [
+ 139.7618841098901,
+ 35.60072190990991
+ ],
+ [
+ 139.7618841098901,
+ 35.60090209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RokuGoBerth.1626.1",
+ "name": "6号バース前",
+ "latitude": 35.597457,
+ "longitude": 139.763661,
+ "polygon": [
+ [
+ 139.76355110989013,
+ 35.59754709009009
+ ],
+ [
+ 139.7637708901099,
+ 35.59754709009009
+ ],
+ [
+ 139.7637708901099,
+ 35.59736690990991
+ ],
+ [
+ 139.76355110989013,
+ 35.59736690990991
+ ],
+ [
+ 139.76355110989013,
+ 35.59754709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RokuGoBerth.1626.2",
+ "name": "6号バース前",
+ "latitude": 35.598141,
+ "longitude": 139.762549,
+ "polygon": [
+ [
+ 139.76243910989012,
+ 35.59823109009009
+ ],
+ [
+ 139.7626588901099,
+ 35.59823109009009
+ ],
+ [
+ 139.7626588901099,
+ 35.59805090990991
+ ],
+ [
+ 139.76243910989012,
+ 35.59805090990991
+ ],
+ [
+ 139.76243910989012,
+ 35.59823109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakachoNishigumi.1801.2",
+ "name": "仲町西組",
+ "latitude": 35.659803,
+ "longitude": 139.87302,
+ "polygon": [
+ [
+ 139.8729101098901,
+ 35.65989309009009
+ ],
+ [
+ 139.87312989010988,
+ 35.65989309009009
+ ],
+ [
+ 139.87312989010988,
+ 35.659712909909906
+ ],
+ [
+ 139.8729101098901,
+ 35.659712909909906
+ ],
+ [
+ 139.8729101098901,
+ 35.65989309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakachoNishigumi.1801.3",
+ "name": "仲町西組",
+ "latitude": 35.658705,
+ "longitude": 139.872947,
+ "polygon": [
+ [
+ 139.87283710989013,
+ 35.65879509009009
+ ],
+ [
+ 139.8730568901099,
+ 35.65879509009009
+ ],
+ [
+ 139.8730568901099,
+ 35.65861490990991
+ ],
+ [
+ 139.87283710989013,
+ 35.65861490990991
+ ],
+ [
+ 139.87283710989013,
+ 35.65879509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoMatsuzakaya.2000.4",
+ "name": "上野松坂屋前",
+ "latitude": 35.707807,
+ "longitude": 139.774038,
+ "polygon": [
+ [
+ 139.7739281098901,
+ 35.70789709009009
+ ],
+ [
+ 139.77414789010987,
+ 35.70789709009009
+ ],
+ [
+ 139.77414789010987,
+ 35.70771690990991
+ ],
+ [
+ 139.7739281098901,
+ 35.70771690990991
+ ],
+ [
+ 139.7739281098901,
+ 35.70789709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoMatsuzakaya.2000.6",
+ "name": "上野松坂屋前",
+ "latitude": 35.707558,
+ "longitude": 139.772838,
+ "polygon": [
+ [
+ 139.77272810989012,
+ 35.70764809009009
+ ],
+ [
+ 139.7729478901099,
+ 35.70764809009009
+ ],
+ [
+ 139.7729478901099,
+ 35.70746790990991
+ ],
+ [
+ 139.77272810989012,
+ 35.70746790990991
+ ],
+ [
+ 139.77272810989012,
+ 35.70764809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoMatsuzakaya.2000.7",
+ "name": "上野松坂屋前",
+ "latitude": 35.706982,
+ "longitude": 139.772549,
+ "polygon": [
+ [
+ 139.77243910989012,
+ 35.707072090090094
+ ],
+ [
+ 139.77265889010988,
+ 35.707072090090094
+ ],
+ [
+ 139.77265889010988,
+ 35.70689190990991
+ ],
+ [
+ 139.77243910989012,
+ 35.70689190990991
+ ],
+ [
+ 139.77243910989012,
+ 35.707072090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoMatsuzakaya.2000.8",
+ "name": "上野松坂屋前",
+ "latitude": 35.706857,
+ "longitude": 139.772516,
+ "polygon": [
+ [
+ 139.7724061098901,
+ 35.70694709009009
+ ],
+ [
+ 139.77262589010988,
+ 35.70694709009009
+ ],
+ [
+ 139.77262589010988,
+ 35.70676690990991
+ ],
+ [
+ 139.7724061098901,
+ 35.70676690990991
+ ],
+ [
+ 139.7724061098901,
+ 35.70694709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UenoMatsuzakaya.2000.10",
+ "name": "上野松坂屋前",
+ "latitude": 35.708499,
+ "longitude": 139.773333,
+ "polygon": [
+ [
+ 139.77322310989013,
+ 35.70858909009009
+ ],
+ [
+ 139.7734428901099,
+ 35.70858909009009
+ ],
+ [
+ 139.7734428901099,
+ 35.70840890990991
+ ],
+ [
+ 139.77322310989013,
+ 35.70840890990991
+ ],
+ [
+ 139.77322310989013,
+ 35.70858909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokanedaiItchome.2009.2",
+ "name": "白金台一丁目",
+ "latitude": 35.638961,
+ "longitude": 139.732128,
+ "polygon": [
+ [
+ 139.7320181098901,
+ 35.63905109009009
+ ],
+ [
+ 139.73223789010987,
+ 35.63905109009009
+ ],
+ [
+ 139.73223789010987,
+ 35.63887090990991
+ ],
+ [
+ 139.7320181098901,
+ 35.63887090990991
+ ],
+ [
+ 139.7320181098901,
+ 35.63905109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuOiwake.2001.1",
+ "name": "新宿追分",
+ "latitude": 35.691238,
+ "longitude": 139.704164,
+ "polygon": [
+ [
+ 139.7040541098901,
+ 35.69132809009009
+ ],
+ [
+ 139.70427389010987,
+ 35.69132809009009
+ ],
+ [
+ 139.70427389010987,
+ 35.69114790990991
+ ],
+ [
+ 139.7040541098901,
+ 35.69114790990991
+ ],
+ [
+ 139.7040541098901,
+ 35.69132809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuOiwake.2001.2",
+ "name": "新宿追分",
+ "latitude": 35.691158,
+ "longitude": 139.704006,
+ "polygon": [
+ [
+ 139.7038961098901,
+ 35.69124809009009
+ ],
+ [
+ 139.70411589010988,
+ 35.69124809009009
+ ],
+ [
+ 139.70411589010988,
+ 35.69106790990991
+ ],
+ [
+ 139.7038961098901,
+ 35.69106790990991
+ ],
+ [
+ 139.7038961098901,
+ 35.69124809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiohamaHigashi.2003.1",
+ "name": "塩浜東",
+ "latitude": 35.663044,
+ "longitude": 139.80798,
+ "polygon": [
+ [
+ 139.8078701098901,
+ 35.66313409009009
+ ],
+ [
+ 139.80808989010987,
+ 35.66313409009009
+ ],
+ [
+ 139.80808989010987,
+ 35.66295390990991
+ ],
+ [
+ 139.8078701098901,
+ 35.66295390990991
+ ],
+ [
+ 139.8078701098901,
+ 35.66313409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiohamaHigashi.2003.2",
+ "name": "塩浜東",
+ "latitude": 35.663264,
+ "longitude": 139.808455,
+ "polygon": [
+ [
+ 139.80834510989013,
+ 35.66335409009009
+ ],
+ [
+ 139.8085648901099,
+ 35.66335409009009
+ ],
+ [
+ 139.8085648901099,
+ 35.66317390990991
+ ],
+ [
+ 139.80834510989013,
+ 35.66317390990991
+ ],
+ [
+ 139.80834510989013,
+ 35.66335409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeihinUnga.2005.1",
+ "name": "京浜運河",
+ "latitude": 35.628029,
+ "longitude": 139.754291,
+ "polygon": [
+ [
+ 139.7541811098901,
+ 35.62811909009009
+ ],
+ [
+ 139.75440089010988,
+ 35.62811909009009
+ ],
+ [
+ 139.75440089010988,
+ 35.62793890990991
+ ],
+ [
+ 139.7541811098901,
+ 35.62793890990991
+ ],
+ [
+ 139.7541811098901,
+ 35.62811909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIkebukuroYonchome.2006.2",
+ "name": "上池袋四丁目",
+ "latitude": 35.739103,
+ "longitude": 139.722824,
+ "polygon": [
+ [
+ 139.72271410989012,
+ 35.73919309009009
+ ],
+ [
+ 139.72293389010989,
+ 35.73919309009009
+ ],
+ [
+ 139.72293389010989,
+ 35.73901290990991
+ ],
+ [
+ 139.72271410989012,
+ 35.73901290990991
+ ],
+ [
+ 139.72271410989012,
+ 35.73919309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaKeisatsushoIriguchi.2010.1",
+ "name": "品川警察署入口",
+ "latitude": 35.613538,
+ "longitude": 139.747562,
+ "polygon": [
+ [
+ 139.7474521098901,
+ 35.61362809009009
+ ],
+ [
+ 139.74767189010987,
+ 35.61362809009009
+ ],
+ [
+ 139.74767189010987,
+ 35.61344790990991
+ ],
+ [
+ 139.7474521098901,
+ 35.61344790990991
+ ],
+ [
+ 139.7474521098901,
+ 35.61362809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaKeisatsushoIriguchi.2010.2",
+ "name": "品川警察署入口",
+ "latitude": 35.614359,
+ "longitude": 139.747852,
+ "polygon": [
+ [
+ 139.7477421098901,
+ 35.61444909009009
+ ],
+ [
+ 139.74796189010988,
+ 35.61444909009009
+ ],
+ [
+ 139.74796189010988,
+ 35.61426890990991
+ ],
+ [
+ 139.7477421098901,
+ 35.61426890990991
+ ],
+ [
+ 139.7477421098901,
+ 35.61444909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaSogoFukushiCenter.2011.1",
+ "name": "品川総合福祉センター前",
+ "latitude": 35.605363,
+ "longitude": 139.753401,
+ "polygon": [
+ [
+ 139.7532911098901,
+ 35.60545309009009
+ ],
+ [
+ 139.75351089010988,
+ 35.60545309009009
+ ],
+ [
+ 139.75351089010988,
+ 35.60527290990991
+ ],
+ [
+ 139.7532911098901,
+ 35.60527290990991
+ ],
+ [
+ 139.7532911098901,
+ 35.60545309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaSogoFukushiCenter.2011.2",
+ "name": "品川総合福祉センター前",
+ "latitude": 35.605503,
+ "longitude": 139.75308,
+ "polygon": [
+ [
+ 139.75297010989013,
+ 35.60559309009009
+ ],
+ [
+ 139.7531898901099,
+ 35.60559309009009
+ ],
+ [
+ 139.7531898901099,
+ 35.60541290990991
+ ],
+ [
+ 139.75297010989013,
+ 35.60541290990991
+ ],
+ [
+ 139.75297010989013,
+ 35.60559309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioParkTown.2013.2",
+ "name": "八潮パークタウン",
+ "latitude": 35.59986,
+ "longitude": 139.750798,
+ "polygon": [
+ [
+ 139.75068810989012,
+ 35.59995009009009
+ ],
+ [
+ 139.7509078901099,
+ 35.59995009009009
+ ],
+ [
+ 139.7509078901099,
+ 35.59976990990991
+ ],
+ [
+ 139.75068810989012,
+ 35.59976990990991
+ ],
+ [
+ 139.75068810989012,
+ 35.59995009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioMinami.2014.1",
+ "name": "八潮南",
+ "latitude": 35.597774,
+ "longitude": 139.751279,
+ "polygon": [
+ [
+ 139.75116910989013,
+ 35.59786409009009
+ ],
+ [
+ 139.7513888901099,
+ 35.59786409009009
+ ],
+ [
+ 139.7513888901099,
+ 35.59768390990991
+ ],
+ [
+ 139.75116910989013,
+ 35.59768390990991
+ ],
+ [
+ 139.75116910989013,
+ 35.59786409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiShoboshoYashioShutchojo.2015.1",
+ "name": "大井消防署八潮出張所前",
+ "latitude": 35.597388,
+ "longitude": 139.752574,
+ "polygon": [
+ [
+ 139.75246410989013,
+ 35.59747809009009
+ ],
+ [
+ 139.7526838901099,
+ 35.59747809009009
+ ],
+ [
+ 139.7526838901099,
+ 35.59729790990991
+ ],
+ [
+ 139.75246410989013,
+ 35.59729790990991
+ ],
+ [
+ 139.75246410989013,
+ 35.59747809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioHigashi.2016.1",
+ "name": "八潮東",
+ "latitude": 35.598793,
+ "longitude": 139.754283,
+ "polygon": [
+ [
+ 139.7541731098901,
+ 35.59888309009009
+ ],
+ [
+ 139.75439289010987,
+ 35.59888309009009
+ ],
+ [
+ 139.75439289010987,
+ 35.59870290990991
+ ],
+ [
+ 139.7541731098901,
+ 35.59870290990991
+ ],
+ [
+ 139.7541731098901,
+ 35.59888309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioKoen.2017.1",
+ "name": "八潮公園前",
+ "latitude": 35.601585,
+ "longitude": 139.754322,
+ "polygon": [
+ [
+ 139.75421210989012,
+ 35.60167509009009
+ ],
+ [
+ 139.75443189010988,
+ 35.60167509009009
+ ],
+ [
+ 139.75443189010988,
+ 35.60149490990991
+ ],
+ [
+ 139.75421210989012,
+ 35.60149490990991
+ ],
+ [
+ 139.75421210989012,
+ 35.60167509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokanedaiNichome.2019.1",
+ "name": "白金台二丁目",
+ "latitude": 35.633723,
+ "longitude": 139.730888,
+ "polygon": [
+ [
+ 139.7307781098901,
+ 35.633813090090094
+ ],
+ [
+ 139.73099789010988,
+ 35.633813090090094
+ ],
+ [
+ 139.73099789010988,
+ 35.63363290990991
+ ],
+ [
+ 139.7307781098901,
+ 35.63363290990991
+ ],
+ [
+ 139.7307781098901,
+ 35.633813090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShirokanedaiNichome.2019.2",
+ "name": "白金台二丁目",
+ "latitude": 35.63388,
+ "longitude": 139.731238,
+ "polygon": [
+ [
+ 139.7311281098901,
+ 35.63397009009009
+ ],
+ [
+ 139.73134789010987,
+ 35.63397009009009
+ ],
+ [
+ 139.73134789010987,
+ 35.63378990990991
+ ],
+ [
+ 139.7311281098901,
+ 35.63378990990991
+ ],
+ [
+ 139.7311281098901,
+ 35.63397009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoDomeCity.2021.1",
+ "name": "東京ドームシティ",
+ "latitude": 35.706234,
+ "longitude": 139.754084,
+ "polygon": [
+ [
+ 139.75397410989012,
+ 35.70632409009009
+ ],
+ [
+ 139.7541938901099,
+ 35.70632409009009
+ ],
+ [
+ 139.7541938901099,
+ 35.70614390990991
+ ],
+ [
+ 139.75397410989012,
+ 35.70614390990991
+ ],
+ [
+ 139.75397410989012,
+ 35.70632409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoDomeCity.2021.2",
+ "name": "東京ドームシティ",
+ "latitude": 35.706545,
+ "longitude": 139.754356,
+ "polygon": [
+ [
+ 139.75424610989012,
+ 35.70663509009009
+ ],
+ [
+ 139.75446589010988,
+ 35.70663509009009
+ ],
+ [
+ 139.75446589010988,
+ 35.70645490990991
+ ],
+ [
+ 139.75424610989012,
+ 35.70645490990991
+ ],
+ [
+ 139.75424610989012,
+ 35.70663509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukijiGochome.2024.1",
+ "name": "築地五丁目",
+ "latitude": 35.663115,
+ "longitude": 139.765353,
+ "polygon": [
+ [
+ 139.76524310989012,
+ 35.66320509009009
+ ],
+ [
+ 139.7654628901099,
+ 35.66320509009009
+ ],
+ [
+ 139.7654628901099,
+ 35.66302490990991
+ ],
+ [
+ 139.76524310989012,
+ 35.66302490990991
+ ],
+ [
+ 139.76524310989012,
+ 35.66320509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokuritsuYoyogiKyogijo.2025.1",
+ "name": "国立代々木競技場前",
+ "latitude": 35.666048,
+ "longitude": 139.701782,
+ "polygon": [
+ [
+ 139.70167210989013,
+ 35.666138090090094
+ ],
+ [
+ 139.7018918901099,
+ 35.666138090090094
+ ],
+ [
+ 139.7018918901099,
+ 35.66595790990991
+ ],
+ [
+ 139.70167210989013,
+ 35.66595790990991
+ ],
+ [
+ 139.70167210989013,
+ 35.666138090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokuritsuYoyogiKyogijo.2025.2",
+ "name": "国立代々木競技場前",
+ "latitude": 35.665986,
+ "longitude": 139.700376,
+ "polygon": [
+ [
+ 139.70026610989012,
+ 35.66607609009009
+ ],
+ [
+ 139.7004858901099,
+ 35.66607609009009
+ ],
+ [
+ 139.7004858901099,
+ 35.665895909909906
+ ],
+ [
+ 139.70026610989012,
+ 35.665895909909906
+ ],
+ [
+ 139.70026610989012,
+ 35.66607609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TOKYOSKYTREEStation.2028.1",
+ "name": "とうきょうスカイツリー駅前",
+ "latitude": 35.710247,
+ "longitude": 139.808586,
+ "polygon": [
+ [
+ 139.8084761098901,
+ 35.71033709009009
+ ],
+ [
+ 139.80869589010987,
+ 35.71033709009009
+ ],
+ [
+ 139.80869589010987,
+ 35.71015690990991
+ ],
+ [
+ 139.8084761098901,
+ 35.71015690990991
+ ],
+ [
+ 139.8084761098901,
+ 35.71033709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TOKYOSKYTREEStation.2028.2",
+ "name": "とうきょうスカイツリー駅前",
+ "latitude": 35.710062,
+ "longitude": 139.808402,
+ "polygon": [
+ [
+ 139.80829210989012,
+ 35.71015209009009
+ ],
+ [
+ 139.80851189010988,
+ 35.71015209009009
+ ],
+ [
+ 139.80851189010988,
+ 35.70997190990991
+ ],
+ [
+ 139.80829210989012,
+ 35.70997190990991
+ ],
+ [
+ 139.80829210989012,
+ 35.71015209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TOKYOSKYTREEStation.2028.3",
+ "name": "とうきょうスカイツリー駅前",
+ "latitude": 35.710273,
+ "longitude": 139.808383,
+ "polygon": [
+ [
+ 139.8082731098901,
+ 35.71036309009009
+ ],
+ [
+ 139.80849289010987,
+ 35.71036309009009
+ ],
+ [
+ 139.80849289010987,
+ 35.71018290990991
+ ],
+ [
+ 139.8082731098901,
+ 35.71018290990991
+ ],
+ [
+ 139.8082731098901,
+ 35.71036309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SogoRecreationKoen.2030.1",
+ "name": "総合レクリエーション公園前",
+ "latitude": 35.650742,
+ "longitude": 139.872021,
+ "polygon": [
+ [
+ 139.8719111098901,
+ 35.65083209009009
+ ],
+ [
+ 139.87213089010987,
+ 35.65083209009009
+ ],
+ [
+ 139.87213089010987,
+ 35.65065190990991
+ ],
+ [
+ 139.8719111098901,
+ 35.65065190990991
+ ],
+ [
+ 139.8719111098901,
+ 35.65083209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SogoRecreationKoen.2030.2",
+ "name": "総合レクリエーション公園前",
+ "latitude": 35.650658,
+ "longitude": 139.872377,
+ "polygon": [
+ [
+ 139.87226710989012,
+ 35.65074809009009
+ ],
+ [
+ 139.87248689010988,
+ 35.65074809009009
+ ],
+ [
+ 139.87248689010988,
+ 35.65056790990991
+ ],
+ [
+ 139.87226710989012,
+ 35.65056790990991
+ ],
+ [
+ 139.87226710989012,
+ 35.65074809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiMinamiKokoIriguchi.2031.1",
+ "name": "葛西南高校入口",
+ "latitude": 35.654806,
+ "longitude": 139.872316,
+ "polygon": [
+ [
+ 139.87220610989013,
+ 35.65489609009009
+ ],
+ [
+ 139.8724258901099,
+ 35.65489609009009
+ ],
+ [
+ 139.8724258901099,
+ 35.65471590990991
+ ],
+ [
+ 139.87220610989013,
+ 35.65471590990991
+ ],
+ [
+ 139.87220610989013,
+ 35.65489609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiMinamiKokoIriguchi.2031.2",
+ "name": "葛西南高校入口",
+ "latitude": 35.653859,
+ "longitude": 139.87263,
+ "polygon": [
+ [
+ 139.8725201098901,
+ 35.65394909009009
+ ],
+ [
+ 139.87273989010987,
+ 35.65394909009009
+ ],
+ [
+ 139.87273989010987,
+ 35.65376890990991
+ ],
+ [
+ 139.8725201098901,
+ 35.65376890990991
+ ],
+ [
+ 139.8725201098901,
+ 35.65394909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriStation.2032.1",
+ "name": "船堀駅前",
+ "latitude": 35.683409,
+ "longitude": 139.864282,
+ "polygon": [
+ [
+ 139.86417210989012,
+ 35.68349909009009
+ ],
+ [
+ 139.86439189010989,
+ 35.68349909009009
+ ],
+ [
+ 139.86439189010989,
+ 35.68331890990991
+ ],
+ [
+ 139.86417210989012,
+ 35.68331890990991
+ ],
+ [
+ 139.86417210989012,
+ 35.68349909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriStation.2032.2",
+ "name": "船堀駅前",
+ "latitude": 35.68349,
+ "longitude": 139.864156,
+ "polygon": [
+ [
+ 139.86404610989013,
+ 35.68358009009009
+ ],
+ [
+ 139.8642658901099,
+ 35.68358009009009
+ ],
+ [
+ 139.8642658901099,
+ 35.68339990990991
+ ],
+ [
+ 139.86404610989013,
+ 35.68339990990991
+ ],
+ [
+ 139.86404610989013,
+ 35.68358009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriStation.2032.3",
+ "name": "船堀駅前",
+ "latitude": 35.683958,
+ "longitude": 139.864007,
+ "polygon": [
+ [
+ 139.8638971098901,
+ 35.68404809009009
+ ],
+ [
+ 139.86411689010987,
+ 35.68404809009009
+ ],
+ [
+ 139.86411689010987,
+ 35.68386790990991
+ ],
+ [
+ 139.8638971098901,
+ 35.68386790990991
+ ],
+ [
+ 139.8638971098901,
+ 35.68404809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriStation.2032.4",
+ "name": "船堀駅前",
+ "latitude": 35.68408,
+ "longitude": 139.864066,
+ "polygon": [
+ [
+ 139.86395610989013,
+ 35.68417009009009
+ ],
+ [
+ 139.8641758901099,
+ 35.68417009009009
+ ],
+ [
+ 139.8641758901099,
+ 35.68398990990991
+ ],
+ [
+ 139.86395610989013,
+ 35.68398990990991
+ ],
+ [
+ 139.86395610989013,
+ 35.68417009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriStation.2032.5",
+ "name": "船堀駅前",
+ "latitude": 35.683998,
+ "longitude": 139.863887,
+ "polygon": [
+ [
+ 139.86377710989012,
+ 35.68408809009009
+ ],
+ [
+ 139.8639968901099,
+ 35.68408809009009
+ ],
+ [
+ 139.8639968901099,
+ 35.68390790990991
+ ],
+ [
+ 139.86377710989012,
+ 35.68390790990991
+ ],
+ [
+ 139.86377710989012,
+ 35.68408809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriStation.2032.6",
+ "name": "船堀駅前",
+ "latitude": 35.68418,
+ "longitude": 139.863783,
+ "polygon": [
+ [
+ 139.86367310989013,
+ 35.68427009009009
+ ],
+ [
+ 139.8638928901099,
+ 35.68427009009009
+ ],
+ [
+ 139.8638928901099,
+ 35.68408990990991
+ ],
+ [
+ 139.86367310989013,
+ 35.68408990990991
+ ],
+ [
+ 139.86367310989013,
+ 35.68427009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinkawa.2122.1",
+ "name": "新川",
+ "latitude": 35.675847,
+ "longitude": 139.780264,
+ "polygon": [
+ [
+ 139.7801541098901,
+ 35.67593709009009
+ ],
+ [
+ 139.78037389010987,
+ 35.67593709009009
+ ],
+ [
+ 139.78037389010987,
+ 35.67575690990991
+ ],
+ [
+ 139.7801541098901,
+ 35.67575690990991
+ ],
+ [
+ 139.7801541098901,
+ 35.67593709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShosenMitsuiHonshaBiru.2033.5",
+ "name": "商船三井本社ビル前",
+ "latitude": 35.670429,
+ "longitude": 139.747804,
+ "polygon": [
+ [
+ 139.74769410989012,
+ 35.67051909009009
+ ],
+ [
+ 139.74791389010988,
+ 35.67051909009009
+ ],
+ [
+ 139.74791389010988,
+ 35.67033890990991
+ ],
+ [
+ 139.74769410989012,
+ 35.67033890990991
+ ],
+ [
+ 139.74769410989012,
+ 35.67051909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShosenMitsuiHonshaBiru.2033.6",
+ "name": "商船三井本社ビル前",
+ "latitude": 35.670126,
+ "longitude": 139.747059,
+ "polygon": [
+ [
+ 139.74694910989012,
+ 35.67021609009009
+ ],
+ [
+ 139.7471688901099,
+ 35.67021609009009
+ ],
+ [
+ 139.7471688901099,
+ 35.67003590990991
+ ],
+ [
+ 139.74694910989012,
+ 35.67003590990991
+ ],
+ [
+ 139.74694910989012,
+ 35.67021609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkibaMinami.2040.1",
+ "name": "新木場南",
+ "latitude": 35.632893,
+ "longitude": 139.82916,
+ "polygon": [
+ [
+ 139.82905010989012,
+ 35.63298309009009
+ ],
+ [
+ 139.82926989010988,
+ 35.63298309009009
+ ],
+ [
+ 139.82926989010988,
+ 35.63280290990991
+ ],
+ [
+ 139.82905010989012,
+ 35.63280290990991
+ ],
+ [
+ 139.82905010989012,
+ 35.63298309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiStationKitaguchi.2034.1",
+ "name": "新橋駅北口",
+ "latitude": 35.668054,
+ "longitude": 139.756858,
+ "polygon": [
+ [
+ 139.7567481098901,
+ 35.66814409009009
+ ],
+ [
+ 139.75696789010988,
+ 35.66814409009009
+ ],
+ [
+ 139.75696789010988,
+ 35.66796390990991
+ ],
+ [
+ 139.7567481098901,
+ 35.66796390990991
+ ],
+ [
+ 139.7567481098901,
+ 35.66814409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimbashiStationKitaguchi.2034.2",
+ "name": "新橋駅北口",
+ "latitude": 35.667795,
+ "longitude": 139.756775,
+ "polygon": [
+ [
+ 139.75666510989012,
+ 35.66788509009009
+ ],
+ [
+ 139.7568848901099,
+ 35.66788509009009
+ ],
+ [
+ 139.7568848901099,
+ 35.66770490990991
+ ],
+ [
+ 139.75666510989012,
+ 35.66770490990991
+ ],
+ [
+ 139.75666510989012,
+ 35.66788509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkibaItchome.2036.1",
+ "name": "新木場一丁目",
+ "latitude": 35.645249,
+ "longitude": 139.832063,
+ "polygon": [
+ [
+ 139.83195310989012,
+ 35.64533909009009
+ ],
+ [
+ 139.8321728901099,
+ 35.64533909009009
+ ],
+ [
+ 139.8321728901099,
+ 35.64515890990991
+ ],
+ [
+ 139.83195310989012,
+ 35.64515890990991
+ ],
+ [
+ 139.83195310989012,
+ 35.64533909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkibaHigashi.2037.1",
+ "name": "新木場東",
+ "latitude": 35.644309,
+ "longitude": 139.835705,
+ "polygon": [
+ [
+ 139.8355951098901,
+ 35.64439909009009
+ ],
+ [
+ 139.83581489010987,
+ 35.64439909009009
+ ],
+ [
+ 139.83581489010987,
+ 35.64421890990991
+ ],
+ [
+ 139.8355951098901,
+ 35.64421890990991
+ ],
+ [
+ 139.8355951098901,
+ 35.64439909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiSengokubashi.2038.1",
+ "name": "東千石橋",
+ "latitude": 35.640098,
+ "longitude": 139.835115,
+ "polygon": [
+ [
+ 139.83500510989012,
+ 35.64018809009009
+ ],
+ [
+ 139.83522489010988,
+ 35.64018809009009
+ ],
+ [
+ 139.83522489010988,
+ 35.64000790990991
+ ],
+ [
+ 139.83500510989012,
+ 35.64000790990991
+ ],
+ [
+ 139.83500510989012,
+ 35.64018809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkibaSanchome.2039.1",
+ "name": "新木場三丁目",
+ "latitude": 35.634663,
+ "longitude": 139.834645,
+ "polygon": [
+ [
+ 139.8345351098901,
+ 35.63475309009009
+ ],
+ [
+ 139.83475489010988,
+ 35.63475309009009
+ ],
+ [
+ 139.83475489010988,
+ 35.63457290990991
+ ],
+ [
+ 139.8345351098901,
+ 35.63457290990991
+ ],
+ [
+ 139.8345351098901,
+ 35.63475309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkibaNichome.2041.1",
+ "name": "新木場二丁目",
+ "latitude": 35.637428,
+ "longitude": 139.823108,
+ "polygon": [
+ [
+ 139.8229981098901,
+ 35.63751809009009
+ ],
+ [
+ 139.82321789010987,
+ 35.63751809009009
+ ],
+ [
+ 139.82321789010987,
+ 35.63733790990991
+ ],
+ [
+ 139.8229981098901,
+ 35.63733790990991
+ ],
+ [
+ 139.8229981098901,
+ 35.63751809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TogenukiJizo.2042.1",
+ "name": "とげぬき地蔵前",
+ "latitude": 35.735568,
+ "longitude": 139.736508,
+ "polygon": [
+ [
+ 139.7363981098901,
+ 35.73565809009009
+ ],
+ [
+ 139.73661789010987,
+ 35.73565809009009
+ ],
+ [
+ 139.73661789010987,
+ 35.73547790990991
+ ],
+ [
+ 139.7363981098901,
+ 35.73547790990991
+ ],
+ [
+ 139.7363981098901,
+ 35.73565809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TogenukiJizo.2042.2",
+ "name": "とげぬき地蔵前",
+ "latitude": 35.735065,
+ "longitude": 139.736605,
+ "polygon": [
+ [
+ 139.73649510989011,
+ 35.73515509009009
+ ],
+ [
+ 139.73671489010988,
+ 35.73515509009009
+ ],
+ [
+ 139.73671489010988,
+ 35.73497490990991
+ ],
+ [
+ 139.73649510989011,
+ 35.73497490990991
+ ],
+ [
+ 139.73649510989011,
+ 35.73515509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanChugakko.2043.1",
+ "name": "江南中学校前",
+ "latitude": 35.757482,
+ "longitude": 139.754129,
+ "polygon": [
+ [
+ 139.75401910989012,
+ 35.75757209009009
+ ],
+ [
+ 139.7542388901099,
+ 35.75757209009009
+ ],
+ [
+ 139.7542388901099,
+ 35.75739190990991
+ ],
+ [
+ 139.75401910989012,
+ 35.75739190990991
+ ],
+ [
+ 139.75401910989012,
+ 35.75757209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MiyagiMizuSaiseiCenter.2044.1",
+ "name": "みやぎ水再生センター前",
+ "latitude": 35.759849,
+ "longitude": 139.752949,
+ "polygon": [
+ [
+ 139.75283910989012,
+ 35.75993909009009
+ ],
+ [
+ 139.75305889010988,
+ 35.75993909009009
+ ],
+ [
+ 139.75305889010988,
+ 35.75975890990991
+ ],
+ [
+ 139.75283910989012,
+ 35.75975890990991
+ ],
+ [
+ 139.75283910989012,
+ 35.75993909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeiseiGakuen.2046.1",
+ "name": "明晴学園前",
+ "latitude": 35.603125,
+ "longitude": 139.753546,
+ "polygon": [
+ [
+ 139.75343610989012,
+ 35.60321509009009
+ ],
+ [
+ 139.75365589010988,
+ 35.60321509009009
+ ],
+ [
+ 139.75365589010988,
+ 35.60303490990991
+ ],
+ [
+ 139.75343610989012,
+ 35.60303490990991
+ ],
+ [
+ 139.75343610989012,
+ 35.60321509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MeiseiGakuen.2046.2",
+ "name": "明晴学園前",
+ "latitude": 35.603621,
+ "longitude": 139.754316,
+ "polygon": [
+ [
+ 139.7542061098901,
+ 35.60371109009009
+ ],
+ [
+ 139.75442589010987,
+ 35.60371109009009
+ ],
+ [
+ 139.75442589010987,
+ 35.60353090990991
+ ],
+ [
+ 139.7542061098901,
+ 35.60353090990991
+ ],
+ [
+ 139.7542061098901,
+ 35.60371109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JinNanItchome.2052.1",
+ "name": "神南一丁目",
+ "latitude": 35.662694,
+ "longitude": 139.700915,
+ "polygon": [
+ [
+ 139.70080510989013,
+ 35.66278409009009
+ ],
+ [
+ 139.7010248901099,
+ 35.66278409009009
+ ],
+ [
+ 139.7010248901099,
+ 35.66260390990991
+ ],
+ [
+ 139.70080510989013,
+ 35.66260390990991
+ ],
+ [
+ 139.70080510989013,
+ 35.66278409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoOroshiurishijoKasaiShijo.2061.1",
+ "name": "中央卸売市場葛西市場前",
+ "latitude": 35.649815,
+ "longitude": 139.862626,
+ "polygon": [
+ [
+ 139.86251610989012,
+ 35.64990509009009
+ ],
+ [
+ 139.8627358901099,
+ 35.64990509009009
+ ],
+ [
+ 139.8627358901099,
+ 35.64972490990991
+ ],
+ [
+ 139.86251610989012,
+ 35.64972490990991
+ ],
+ [
+ 139.86251610989012,
+ 35.64990509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoOroshiurishijoKasaiShijo.2061.2",
+ "name": "中央卸売市場葛西市場前",
+ "latitude": 35.650503,
+ "longitude": 139.862917,
+ "polygon": [
+ [
+ 139.86280710989013,
+ 35.65059309009009
+ ],
+ [
+ 139.8630268901099,
+ 35.65059309009009
+ ],
+ [
+ 139.8630268901099,
+ 35.65041290990991
+ ],
+ [
+ 139.86280710989013,
+ 35.65041290990991
+ ],
+ [
+ 139.86280710989013,
+ 35.65059309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiTruckTerminal.2062.1",
+ "name": "葛西トラックターミナル",
+ "latitude": 35.647942,
+ "longitude": 139.86357,
+ "polygon": [
+ [
+ 139.86346010989013,
+ 35.64803209009009
+ ],
+ [
+ 139.8636798901099,
+ 35.64803209009009
+ ],
+ [
+ 139.8636798901099,
+ 35.64785190990991
+ ],
+ [
+ 139.86346010989013,
+ 35.64785190990991
+ ],
+ [
+ 139.86346010989013,
+ 35.64803209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiTruckTerminal.2062.2",
+ "name": "葛西トラックターミナル",
+ "latitude": 35.647776,
+ "longitude": 139.863563,
+ "polygon": [
+ [
+ 139.86345310989012,
+ 35.64786609009009
+ ],
+ [
+ 139.86367289010988,
+ 35.64786609009009
+ ],
+ [
+ 139.86367289010988,
+ 35.64768590990991
+ ],
+ [
+ 139.86345310989012,
+ 35.64768590990991
+ ],
+ [
+ 139.86345310989012,
+ 35.64786609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeishinchoItchome.2065.1",
+ "name": "清新町一丁目",
+ "latitude": 35.661276,
+ "longitude": 139.855348,
+ "polygon": [
+ [
+ 139.8552381098901,
+ 35.66136609009009
+ ],
+ [
+ 139.85545789010988,
+ 35.66136609009009
+ ],
+ [
+ 139.85545789010988,
+ 35.66118590990991
+ ],
+ [
+ 139.8552381098901,
+ 35.66118590990991
+ ],
+ [
+ 139.8552381098901,
+ 35.66136609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeishinchoItchome.2065.2",
+ "name": "清新町一丁目",
+ "latitude": 35.661727,
+ "longitude": 139.85549,
+ "polygon": [
+ [
+ 139.85538010989012,
+ 35.66181709009009
+ ],
+ [
+ 139.8555998901099,
+ 35.66181709009009
+ ],
+ [
+ 139.8555998901099,
+ 35.66163690990991
+ ],
+ [
+ 139.85538010989012,
+ 35.66163690990991
+ ],
+ [
+ 139.85538010989012,
+ 35.66181709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeishinchoNichome.2066.1",
+ "name": "清新町二丁目",
+ "latitude": 35.658953,
+ "longitude": 139.855566,
+ "polygon": [
+ [
+ 139.85545610989013,
+ 35.65904309009009
+ ],
+ [
+ 139.8556758901099,
+ 35.65904309009009
+ ],
+ [
+ 139.8556758901099,
+ 35.65886290990991
+ ],
+ [
+ 139.85545610989013,
+ 35.65886290990991
+ ],
+ [
+ 139.85545610989013,
+ 35.65904309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeishinchoNichome.2066.2",
+ "name": "清新町二丁目",
+ "latitude": 35.658131,
+ "longitude": 139.85577,
+ "polygon": [
+ [
+ 139.85566010989012,
+ 35.65822109009009
+ ],
+ [
+ 139.8558798901099,
+ 35.65822109009009
+ ],
+ [
+ 139.8558798901099,
+ 35.65804090990991
+ ],
+ [
+ 139.85566010989012,
+ 35.65804090990991
+ ],
+ [
+ 139.85566010989012,
+ 35.65822109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeishinFutabaShogakko.2067.1",
+ "name": "清新ふたば小学校前",
+ "latitude": 35.657227,
+ "longitude": 139.853692,
+ "polygon": [
+ [
+ 139.8535821098901,
+ 35.65731709009009
+ ],
+ [
+ 139.85380189010988,
+ 35.65731709009009
+ ],
+ [
+ 139.85380189010988,
+ 35.65713690990991
+ ],
+ [
+ 139.8535821098901,
+ 35.65713690990991
+ ],
+ [
+ 139.8535821098901,
+ 35.65731709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeishinFutabaShogakko.2067.2",
+ "name": "清新ふたば小学校前",
+ "latitude": 35.657077,
+ "longitude": 139.852586,
+ "polygon": [
+ [
+ 139.85247610989012,
+ 35.65716709009009
+ ],
+ [
+ 139.85269589010989,
+ 35.65716709009009
+ ],
+ [
+ 139.85269589010989,
+ 35.65698690990991
+ ],
+ [
+ 139.85247610989012,
+ 35.65698690990991
+ ],
+ [
+ 139.85247610989012,
+ 35.65716709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiDainiChugakko.2080.1",
+ "name": "葛西第二中学校前",
+ "latitude": 35.67975,
+ "longitude": 139.862215,
+ "polygon": [
+ [
+ 139.8621051098901,
+ 35.67984009009009
+ ],
+ [
+ 139.86232489010987,
+ 35.67984009009009
+ ],
+ [
+ 139.86232489010987,
+ 35.67965990990991
+ ],
+ [
+ 139.8621051098901,
+ 35.67965990990991
+ ],
+ [
+ 139.8621051098901,
+ 35.67984009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiDainiChugakko.2080.2",
+ "name": "葛西第二中学校前",
+ "latitude": 35.67884,
+ "longitude": 139.863485,
+ "polygon": [
+ [
+ 139.86337510989011,
+ 35.67893009009009
+ ],
+ [
+ 139.86359489010988,
+ 35.67893009009009
+ ],
+ [
+ 139.86359489010988,
+ 35.67874990990991
+ ],
+ [
+ 139.86337510989011,
+ 35.67874990990991
+ ],
+ [
+ 139.86337510989011,
+ 35.67893009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiDainiChugakko.2080.3",
+ "name": "葛西第二中学校前",
+ "latitude": 35.679778,
+ "longitude": 139.861621,
+ "polygon": [
+ [
+ 139.86151110989013,
+ 35.67986809009009
+ ],
+ [
+ 139.8617308901099,
+ 35.67986809009009
+ ],
+ [
+ 139.8617308901099,
+ 35.67968790990991
+ ],
+ [
+ 139.86151110989013,
+ 35.67968790990991
+ ],
+ [
+ 139.86151110989013,
+ 35.67986809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiDainiChugakko.2080.4",
+ "name": "葛西第二中学校前",
+ "latitude": 35.679809,
+ "longitude": 139.861465,
+ "polygon": [
+ [
+ 139.86135510989013,
+ 35.67989909009009
+ ],
+ [
+ 139.8615748901099,
+ 35.67989909009009
+ ],
+ [
+ 139.8615748901099,
+ 35.67971890990991
+ ],
+ [
+ 139.86135510989013,
+ 35.67971890990991
+ ],
+ [
+ 139.86135510989013,
+ 35.67989909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinwataribashi.2081.1",
+ "name": "新渡橋",
+ "latitude": 35.676598,
+ "longitude": 139.866024,
+ "polygon": [
+ [
+ 139.86591410989013,
+ 35.67668809009009
+ ],
+ [
+ 139.8661338901099,
+ 35.67668809009009
+ ],
+ [
+ 139.8661338901099,
+ 35.67650790990991
+ ],
+ [
+ 139.86591410989013,
+ 35.67650790990991
+ ],
+ [
+ 139.86591410989013,
+ 35.67668809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinwataribashi.2081.2",
+ "name": "新渡橋",
+ "latitude": 35.676151,
+ "longitude": 139.865685,
+ "polygon": [
+ [
+ 139.86557510989013,
+ 35.67624109009009
+ ],
+ [
+ 139.8657948901099,
+ 35.67624109009009
+ ],
+ [
+ 139.8657948901099,
+ 35.67606090990991
+ ],
+ [
+ 139.86557510989013,
+ 35.67606090990991
+ ],
+ [
+ 139.86557510989013,
+ 35.67624109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeStation.2102.3",
+ "name": "東雲駅前",
+ "latitude": 35.640858,
+ "longitude": 139.804276,
+ "polygon": [
+ [
+ 139.8041661098901,
+ 35.64094809009009
+ ],
+ [
+ 139.80438589010987,
+ 35.64094809009009
+ ],
+ [
+ 139.80438589010987,
+ 35.64076790990991
+ ],
+ [
+ 139.8041661098901,
+ 35.64076790990991
+ ],
+ [
+ 139.8041661098901,
+ 35.64094809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UkitaShogakko.2082.1",
+ "name": "宇喜田小学校",
+ "latitude": 35.674924,
+ "longitude": 139.864152,
+ "polygon": [
+ [
+ 139.8640421098901,
+ 35.67501409009009
+ ],
+ [
+ 139.86426189010987,
+ 35.67501409009009
+ ],
+ [
+ 139.86426189010987,
+ 35.67483390990991
+ ],
+ [
+ 139.8640421098901,
+ 35.67483390990991
+ ],
+ [
+ 139.8640421098901,
+ 35.67501409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UkitaShogakko.2082.2",
+ "name": "宇喜田小学校",
+ "latitude": 35.675084,
+ "longitude": 139.864446,
+ "polygon": [
+ [
+ 139.8643361098901,
+ 35.67517409009009
+ ],
+ [
+ 139.86455589010987,
+ 35.67517409009009
+ ],
+ [
+ 139.86455589010987,
+ 35.67499390990991
+ ],
+ [
+ 139.8643361098901,
+ 35.67499390990991
+ ],
+ [
+ 139.8643361098901,
+ 35.67517409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UkitaDaiichiJutaku.2083.1",
+ "name": "宇喜田第一住宅",
+ "latitude": 35.672213,
+ "longitude": 139.866032,
+ "polygon": [
+ [
+ 139.8659221098901,
+ 35.67230309009009
+ ],
+ [
+ 139.86614189010987,
+ 35.67230309009009
+ ],
+ [
+ 139.86614189010987,
+ 35.67212290990991
+ ],
+ [
+ 139.8659221098901,
+ 35.67212290990991
+ ],
+ [
+ 139.8659221098901,
+ 35.67230309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UkitaDaiichiJutaku.2083.2",
+ "name": "宇喜田第一住宅",
+ "latitude": 35.672299,
+ "longitude": 139.866054,
+ "polygon": [
+ [
+ 139.8659441098901,
+ 35.67238909009009
+ ],
+ [
+ 139.86616389010987,
+ 35.67238909009009
+ ],
+ [
+ 139.86616389010987,
+ 35.67220890990991
+ ],
+ [
+ 139.8659441098901,
+ 35.67220890990991
+ ],
+ [
+ 139.8659441098901,
+ 35.67238909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiYubinkyoku.2084.1",
+ "name": "葛西郵便局",
+ "latitude": 35.669288,
+ "longitude": 139.866138,
+ "polygon": [
+ [
+ 139.86602810989012,
+ 35.66937809009009
+ ],
+ [
+ 139.8662478901099,
+ 35.66937809009009
+ ],
+ [
+ 139.8662478901099,
+ 35.66919790990991
+ ],
+ [
+ 139.86602810989012,
+ 35.66919790990991
+ ],
+ [
+ 139.86602810989012,
+ 35.66937809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoSanchome.2145.1",
+ "name": "臨海町三丁目",
+ "latitude": 35.648359,
+ "longitude": 139.860693,
+ "polygon": [
+ [
+ 139.86058310989011,
+ 35.64844909009009
+ ],
+ [
+ 139.86080289010988,
+ 35.64844909009009
+ ],
+ [
+ 139.86080289010988,
+ 35.64826890990991
+ ],
+ [
+ 139.86058310989011,
+ 35.64826890990991
+ ],
+ [
+ 139.86058310989011,
+ 35.64844909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiYubinkyoku.2084.2",
+ "name": "葛西郵便局",
+ "latitude": 35.669818,
+ "longitude": 139.86648,
+ "polygon": [
+ [
+ 139.8663701098901,
+ 35.66990809009009
+ ],
+ [
+ 139.86658989010988,
+ 35.66990809009009
+ ],
+ [
+ 139.86658989010988,
+ 35.66972790990991
+ ],
+ [
+ 139.8663701098901,
+ 35.66972790990991
+ ],
+ [
+ 139.8663701098901,
+ 35.66990809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DairokuKasaiShogakko.2085.1",
+ "name": "第六葛西小学校前",
+ "latitude": 35.667149,
+ "longitude": 139.865582,
+ "polygon": [
+ [
+ 139.8654721098901,
+ 35.66723909009009
+ ],
+ [
+ 139.86569189010987,
+ 35.66723909009009
+ ],
+ [
+ 139.86569189010987,
+ 35.66705890990991
+ ],
+ [
+ 139.8654721098901,
+ 35.66705890990991
+ ],
+ [
+ 139.8654721098901,
+ 35.66723909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DairokuKasaiShogakko.2085.2",
+ "name": "第六葛西小学校前",
+ "latitude": 35.667199,
+ "longitude": 139.865279,
+ "polygon": [
+ [
+ 139.8651691098901,
+ 35.66728909009009
+ ],
+ [
+ 139.86538889010987,
+ 35.66728909009009
+ ],
+ [
+ 139.86538889010987,
+ 35.667108909909906
+ ],
+ [
+ 139.8651691098901,
+ 35.667108909909906
+ ],
+ [
+ 139.8651691098901,
+ 35.66728909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukojimaShobosho.2086.1",
+ "name": "向島消防署前",
+ "latitude": 35.723362,
+ "longitude": 139.819217,
+ "polygon": [
+ [
+ 139.81910710989013,
+ 35.72345209009009
+ ],
+ [
+ 139.8193268901099,
+ 35.72345209009009
+ ],
+ [
+ 139.8193268901099,
+ 35.72327190990991
+ ],
+ [
+ 139.81910710989013,
+ 35.72327190990991
+ ],
+ [
+ 139.81910710989013,
+ 35.72345209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukojimaShobosho.2086.2",
+ "name": "向島消防署前",
+ "latitude": 35.723286,
+ "longitude": 139.819386,
+ "polygon": [
+ [
+ 139.81927610989013,
+ 35.72337609009009
+ ],
+ [
+ 139.8194958901099,
+ 35.72337609009009
+ ],
+ [
+ 139.8194958901099,
+ 35.72319590990991
+ ],
+ [
+ 139.81927610989013,
+ 35.72319590990991
+ ],
+ [
+ 139.81927610989013,
+ 35.72337609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiaraiStationIriguchi.2087.1",
+ "name": "西新井駅入口",
+ "latitude": 35.776299,
+ "longitude": 139.784639,
+ "polygon": [
+ [
+ 139.78452910989012,
+ 35.77638909009009
+ ],
+ [
+ 139.78474889010988,
+ 35.77638909009009
+ ],
+ [
+ 139.78474889010988,
+ 35.77620890990991
+ ],
+ [
+ 139.78452910989012,
+ 35.77620890990991
+ ],
+ [
+ 139.78452910989012,
+ 35.77638909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HOTELCHINZANSOTOKYO.2090.1",
+ "name": "ホテル椿山荘東京前",
+ "latitude": 35.71326,
+ "longitude": 139.726022,
+ "polygon": [
+ [
+ 139.72591210989012,
+ 35.71335009009009
+ ],
+ [
+ 139.72613189010988,
+ 35.71335009009009
+ ],
+ [
+ 139.72613189010988,
+ 35.71316990990991
+ ],
+ [
+ 139.72591210989012,
+ 35.71316990990991
+ ],
+ [
+ 139.72591210989012,
+ 35.71335009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanYonchome.2091.1",
+ "name": "港南四丁目",
+ "latitude": 35.631509,
+ "longitude": 139.751091,
+ "polygon": [
+ [
+ 139.75098110989012,
+ 35.63159909009009
+ ],
+ [
+ 139.75120089010989,
+ 35.63159909009009
+ ],
+ [
+ 139.75120089010989,
+ 35.63141890990991
+ ],
+ [
+ 139.75098110989012,
+ 35.63141890990991
+ ],
+ [
+ 139.75098110989012,
+ 35.63159909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanYonchome.2091.2",
+ "name": "港南四丁目",
+ "latitude": 35.631242,
+ "longitude": 139.750833,
+ "polygon": [
+ [
+ 139.75072310989012,
+ 35.63133209009009
+ ],
+ [
+ 139.75094289010988,
+ 35.63133209009009
+ ],
+ [
+ 139.75094289010988,
+ 35.63115190990991
+ ],
+ [
+ 139.75072310989012,
+ 35.63115190990991
+ ],
+ [
+ 139.75072310989012,
+ 35.63133209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horenji.2092.1",
+ "name": "法蓮寺",
+ "latitude": 35.673346,
+ "longitude": 139.864135,
+ "polygon": [
+ [
+ 139.86402510989012,
+ 35.67343609009009
+ ],
+ [
+ 139.8642448901099,
+ 35.67343609009009
+ ],
+ [
+ 139.8642448901099,
+ 35.67325590990991
+ ],
+ [
+ 139.86402510989012,
+ 35.67325590990991
+ ],
+ [
+ 139.86402510989012,
+ 35.67343609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Horenji.2092.2",
+ "name": "法蓮寺",
+ "latitude": 35.673145,
+ "longitude": 139.86458,
+ "polygon": [
+ [
+ 139.8644701098901,
+ 35.67323509009009
+ ],
+ [
+ 139.86468989010987,
+ 35.67323509009009
+ ],
+ [
+ 139.86468989010987,
+ 35.67305490990991
+ ],
+ [
+ 139.8644701098901,
+ 35.67305490990991
+ ],
+ [
+ 139.8644701098901,
+ 35.67323509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsumotoBenten.2134.2",
+ "name": "松本弁天",
+ "latitude": 35.712605,
+ "longitude": 139.879165,
+ "polygon": [
+ [
+ 139.87905510989012,
+ 35.712695090090094
+ ],
+ [
+ 139.87927489010988,
+ 35.712695090090094
+ ],
+ [
+ 139.87927489010988,
+ 35.71251490990991
+ ],
+ [
+ 139.87905510989012,
+ 35.71251490990991
+ ],
+ [
+ 139.87905510989012,
+ 35.712695090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Katsushima.2097.1",
+ "name": "勝島",
+ "latitude": 35.597902,
+ "longitude": 139.742843,
+ "polygon": [
+ [
+ 139.7427331098901,
+ 35.59799209009009
+ ],
+ [
+ 139.74295289010988,
+ 35.59799209009009
+ ],
+ [
+ 139.74295289010988,
+ 35.59781190990991
+ ],
+ [
+ 139.7427331098901,
+ 35.59781190990991
+ ],
+ [
+ 139.7427331098901,
+ 35.59799209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Katsushima.2097.2",
+ "name": "勝島",
+ "latitude": 35.598668,
+ "longitude": 139.74268,
+ "polygon": [
+ [
+ 139.74257010989012,
+ 35.598758090090094
+ ],
+ [
+ 139.7427898901099,
+ 35.598758090090094
+ ],
+ [
+ 139.7427898901099,
+ 35.59857790990991
+ ],
+ [
+ 139.74257010989012,
+ 35.59857790990991
+ ],
+ [
+ 139.74257010989012,
+ 35.598758090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiSanchome.2101.1",
+ "name": "辰巳三丁目",
+ "latitude": 35.642148,
+ "longitude": 139.811992,
+ "polygon": [
+ [
+ 139.81188210989012,
+ 35.64223809009009
+ ],
+ [
+ 139.8121018901099,
+ 35.64223809009009
+ ],
+ [
+ 139.8121018901099,
+ 35.64205790990991
+ ],
+ [
+ 139.81188210989012,
+ 35.64205790990991
+ ],
+ [
+ 139.81188210989012,
+ 35.64223809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiSanchome.2101.2",
+ "name": "辰巳三丁目",
+ "latitude": 35.642047,
+ "longitude": 139.812457,
+ "polygon": [
+ [
+ 139.8123471098901,
+ 35.64213709009009
+ ],
+ [
+ 139.81256689010988,
+ 35.64213709009009
+ ],
+ [
+ 139.81256689010988,
+ 35.64195690990991
+ ],
+ [
+ 139.8123471098901,
+ 35.64195690990991
+ ],
+ [
+ 139.8123471098901,
+ 35.64213709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeStation.2102.1",
+ "name": "東雲駅前",
+ "latitude": 35.640986,
+ "longitude": 139.804632,
+ "polygon": [
+ [
+ 139.80452210989012,
+ 35.64107609009009
+ ],
+ [
+ 139.80474189010988,
+ 35.64107609009009
+ ],
+ [
+ 139.80474189010988,
+ 35.64089590990991
+ ],
+ [
+ 139.80452210989012,
+ 35.64089590990991
+ ],
+ [
+ 139.80452210989012,
+ 35.64107609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeStation.2102.2",
+ "name": "東雲駅前",
+ "latitude": 35.640925,
+ "longitude": 139.804455,
+ "polygon": [
+ [
+ 139.8043451098901,
+ 35.64101509009009
+ ],
+ [
+ 139.80456489010987,
+ 35.64101509009009
+ ],
+ [
+ 139.80456489010987,
+ 35.64083490990991
+ ],
+ [
+ 139.8043451098901,
+ 35.64083490990991
+ ],
+ [
+ 139.8043451098901,
+ 35.64101509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoBigSightHigashito.2103.1",
+ "name": "東京ビッグサイト東棟前",
+ "latitude": 35.632003,
+ "longitude": 139.794351,
+ "polygon": [
+ [
+ 139.79424110989012,
+ 35.63209309009009
+ ],
+ [
+ 139.7944608901099,
+ 35.63209309009009
+ ],
+ [
+ 139.7944608901099,
+ 35.63191290990991
+ ],
+ [
+ 139.79424110989012,
+ 35.63191290990991
+ ],
+ [
+ 139.79424110989012,
+ 35.63209309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoBigSightHigashito.2103.2",
+ "name": "東京ビッグサイト東棟前",
+ "latitude": 35.631695,
+ "longitude": 139.794457,
+ "polygon": [
+ [
+ 139.7943471098901,
+ 35.63178509009009
+ ],
+ [
+ 139.79456689010988,
+ 35.63178509009009
+ ],
+ [
+ 139.79456689010988,
+ 35.63160490990991
+ ],
+ [
+ 139.7943471098901,
+ 35.63160490990991
+ ],
+ [
+ 139.7943471098901,
+ 35.63178509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoItchome.2109.1",
+ "name": "臨海町一丁目",
+ "latitude": 35.653617,
+ "longitude": 139.855973,
+ "polygon": [
+ [
+ 139.85586310989012,
+ 35.65370709009009
+ ],
+ [
+ 139.8560828901099,
+ 35.65370709009009
+ ],
+ [
+ 139.8560828901099,
+ 35.65352690990991
+ ],
+ [
+ 139.85586310989012,
+ 35.65352690990991
+ ],
+ [
+ 139.85586310989012,
+ 35.65370709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nichirei.2155.3",
+ "name": "ニチレイ前",
+ "latitude": 35.59165,
+ "longitude": 139.770244,
+ "polygon": [
+ [
+ 139.7701341098901,
+ 35.59174009009009
+ ],
+ [
+ 139.77035389010987,
+ 35.59174009009009
+ ],
+ [
+ 139.77035389010987,
+ 35.59155990990991
+ ],
+ [
+ 139.7701341098901,
+ 35.59155990990991
+ ],
+ [
+ 139.7701341098901,
+ 35.59174009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoItchome.2109.2",
+ "name": "臨海町一丁目",
+ "latitude": 35.653359,
+ "longitude": 139.855793,
+ "polygon": [
+ [
+ 139.85568310989012,
+ 35.65344909009009
+ ],
+ [
+ 139.8559028901099,
+ 35.65344909009009
+ ],
+ [
+ 139.8559028901099,
+ 35.65326890990991
+ ],
+ [
+ 139.85568310989012,
+ 35.65326890990991
+ ],
+ [
+ 139.85568310989012,
+ 35.65344909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoshaHeimMinamiKasai.2110.1",
+ "name": "コーシャハイム南葛西",
+ "latitude": 35.64375,
+ "longitude": 139.87282,
+ "polygon": [
+ [
+ 139.8727101098901,
+ 35.64384009009009
+ ],
+ [
+ 139.87292989010987,
+ 35.64384009009009
+ ],
+ [
+ 139.87292989010987,
+ 35.64365990990991
+ ],
+ [
+ 139.8727101098901,
+ 35.64365990990991
+ ],
+ [
+ 139.8727101098901,
+ 35.64384009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoshaHeimMinamiKasai.2110.2",
+ "name": "コーシャハイム南葛西",
+ "latitude": 35.643374,
+ "longitude": 139.872089,
+ "polygon": [
+ [
+ 139.8719791098901,
+ 35.64346409009009
+ ],
+ [
+ 139.87219889010987,
+ 35.64346409009009
+ ],
+ [
+ 139.87219889010987,
+ 35.64328390990991
+ ],
+ [
+ 139.8719791098901,
+ 35.64328390990991
+ ],
+ [
+ 139.8719791098901,
+ 35.64346409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoshaHeimMinamiKasai.2110.3",
+ "name": "コーシャハイム南葛西",
+ "latitude": 35.643304,
+ "longitude": 139.872648,
+ "polygon": [
+ [
+ 139.87253810989012,
+ 35.64339409009009
+ ],
+ [
+ 139.87275789010988,
+ 35.64339409009009
+ ],
+ [
+ 139.87275789010988,
+ 35.64321390990991
+ ],
+ [
+ 139.87253810989012,
+ 35.64321390990991
+ ],
+ [
+ 139.87253810989012,
+ 35.64339409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiMizuSaiseiCenter.2111.1",
+ "name": "葛西水再生センター前",
+ "latitude": 35.650596,
+ "longitude": 139.853628,
+ "polygon": [
+ [
+ 139.8535181098901,
+ 35.65068609009009
+ ],
+ [
+ 139.85373789010987,
+ 35.65068609009009
+ ],
+ [
+ 139.85373789010987,
+ 35.65050590990991
+ ],
+ [
+ 139.8535181098901,
+ 35.65050590990991
+ ],
+ [
+ 139.8535181098901,
+ 35.65068609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaShinagawaNichome.2112.1",
+ "name": "北品川二丁目",
+ "latitude": 35.618297,
+ "longitude": 139.744372,
+ "polygon": [
+ [
+ 139.74426210989012,
+ 35.61838709009009
+ ],
+ [
+ 139.74448189010988,
+ 35.61838709009009
+ ],
+ [
+ 139.74448189010988,
+ 35.61820690990991
+ ],
+ [
+ 139.74426210989012,
+ 35.61820690990991
+ ],
+ [
+ 139.74426210989012,
+ 35.61838709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaShinagawaNichome.2112.2",
+ "name": "北品川二丁目",
+ "latitude": 35.618714,
+ "longitude": 139.744459,
+ "polygon": [
+ [
+ 139.74434910989012,
+ 35.61880409009009
+ ],
+ [
+ 139.7445688901099,
+ 35.61880409009009
+ ],
+ [
+ 139.7445688901099,
+ 35.61862390990991
+ ],
+ [
+ 139.74434910989012,
+ 35.61862390990991
+ ],
+ [
+ 139.74434910989012,
+ 35.61880409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HashibaNichomeApato.2114.1",
+ "name": "橋場二丁目アパート前",
+ "latitude": 35.727299,
+ "longitude": 139.808515,
+ "polygon": [
+ [
+ 139.80840510989012,
+ 35.72738909009009
+ ],
+ [
+ 139.80862489010988,
+ 35.72738909009009
+ ],
+ [
+ 139.80862489010988,
+ 35.72720890990991
+ ],
+ [
+ 139.80840510989012,
+ 35.72720890990991
+ ],
+ [
+ 139.80840510989012,
+ 35.72738909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HashibaItchome.2115.1",
+ "name": "橋場一丁目",
+ "latitude": 35.725361,
+ "longitude": 139.807924,
+ "polygon": [
+ [
+ 139.80781410989013,
+ 35.72545109009009
+ ],
+ [
+ 139.8080338901099,
+ 35.72545109009009
+ ],
+ [
+ 139.8080338901099,
+ 35.72527090990991
+ ],
+ [
+ 139.80781410989013,
+ 35.72527090990991
+ ],
+ [
+ 139.80781410989013,
+ 35.72545109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyotoJinkenPlaza.2116.2",
+ "name": "浅草病院前",
+ "latitude": 35.723324,
+ "longitude": 139.807488,
+ "polygon": [
+ [
+ 139.80737810989012,
+ 35.72341409009009
+ ],
+ [
+ 139.8075978901099,
+ 35.72341409009009
+ ],
+ [
+ 139.8075978901099,
+ 35.72323390990991
+ ],
+ [
+ 139.80737810989012,
+ 35.72323390990991
+ ],
+ [
+ 139.80737810989012,
+ 35.72341409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SakurabashiChugakko.2117.1",
+ "name": "桜橋中学校前",
+ "latitude": 35.720073,
+ "longitude": 139.806077,
+ "polygon": [
+ [
+ 139.8059671098901,
+ 35.72016309009009
+ ],
+ [
+ 139.80618689010987,
+ 35.72016309009009
+ ],
+ [
+ 139.80618689010987,
+ 35.71998290990991
+ ],
+ [
+ 139.8059671098901,
+ 35.71998290990991
+ ],
+ [
+ 139.8059671098901,
+ 35.72016309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RiversideSportsCenter.2118.1",
+ "name": "リバーサイドスポーツセンター前",
+ "latitude": 35.71817,
+ "longitude": 139.804449,
+ "polygon": [
+ [
+ 139.80433910989012,
+ 35.71826009009009
+ ],
+ [
+ 139.8045588901099,
+ 35.71826009009009
+ ],
+ [
+ 139.8045588901099,
+ 35.71807990990991
+ ],
+ [
+ 139.80433910989012,
+ 35.71807990990991
+ ],
+ [
+ 139.80433910989012,
+ 35.71826009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RiversideSportsCenter.2118.2",
+ "name": "リバーサイドスポーツセンター前",
+ "latitude": 35.71824,
+ "longitude": 139.803919,
+ "polygon": [
+ [
+ 139.80380910989012,
+ 35.71833009009009
+ ],
+ [
+ 139.8040288901099,
+ 35.71833009009009
+ ],
+ [
+ 139.8040288901099,
+ 35.71814990990991
+ ],
+ [
+ 139.80380910989012,
+ 35.71814990990991
+ ],
+ [
+ 139.80380910989012,
+ 35.71833009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ImadoItchome.2119.1",
+ "name": "今戸一丁目",
+ "latitude": 35.720445,
+ "longitude": 139.804174,
+ "polygon": [
+ [
+ 139.8040641098901,
+ 35.72053509009009
+ ],
+ [
+ 139.80428389010987,
+ 35.72053509009009
+ ],
+ [
+ 139.80428389010987,
+ 35.72035490990991
+ ],
+ [
+ 139.8040641098901,
+ 35.72035490990991
+ ],
+ [
+ 139.8040641098901,
+ 35.72053509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyokawaItchome.2120.1",
+ "name": "清川一丁目",
+ "latitude": 35.726,
+ "longitude": 139.804888,
+ "polygon": [
+ [
+ 139.80477810989012,
+ 35.72609009009009
+ ],
+ [
+ 139.8049978901099,
+ 35.72609009009009
+ ],
+ [
+ 139.8049978901099,
+ 35.72590990990991
+ ],
+ [
+ 139.80477810989012,
+ 35.72590990990991
+ ],
+ [
+ 139.80477810989012,
+ 35.72609009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyokawaSeisoShako.2121.1",
+ "name": "清川清掃車庫前",
+ "latitude": 35.728058,
+ "longitude": 139.805205,
+ "polygon": [
+ [
+ 139.80509510989012,
+ 35.72814809009009
+ ],
+ [
+ 139.80531489010988,
+ 35.72814809009009
+ ],
+ [
+ 139.80531489010988,
+ 35.72796790990991
+ ],
+ [
+ 139.80509510989012,
+ 35.72796790990991
+ ],
+ [
+ 139.80509510989012,
+ 35.72814809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shinkawa.2122.2",
+ "name": "新川",
+ "latitude": 35.675944,
+ "longitude": 139.779792,
+ "polygon": [
+ [
+ 139.7796821098901,
+ 35.67603409009009
+ ],
+ [
+ 139.77990189010987,
+ 35.67603409009009
+ ],
+ [
+ 139.77990189010987,
+ 35.67585390990991
+ ],
+ [
+ 139.7796821098901,
+ 35.67585390990991
+ ],
+ [
+ 139.7796821098901,
+ 35.67603409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYamatoShiyakusho.2123.1",
+ "name": "東大和市役所入口",
+ "latitude": 35.744292,
+ "longitude": 139.429369,
+ "polygon": [
+ [
+ 139.42925910989013,
+ 35.74438209009009
+ ],
+ [
+ 139.4294788901099,
+ 35.74438209009009
+ ],
+ [
+ 139.4294788901099,
+ 35.74420190990991
+ ],
+ [
+ 139.42925910989013,
+ 35.74420190990991
+ ],
+ [
+ 139.42925910989013,
+ 35.74438209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiYamatoShiyakusho.2123.2",
+ "name": "東大和市役所入口",
+ "latitude": 35.744172,
+ "longitude": 139.429352,
+ "polygon": [
+ [
+ 139.4292421098901,
+ 35.74426209009009
+ ],
+ [
+ 139.42946189010988,
+ 35.74426209009009
+ ],
+ [
+ 139.42946189010988,
+ 35.74408190990991
+ ],
+ [
+ 139.4292421098901,
+ 35.74408190990991
+ ],
+ [
+ 139.4292421098901,
+ 35.74426209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiyuByoin.2126.1",
+ "name": "慶友病院前",
+ "latitude": 35.799235,
+ "longitude": 139.287891,
+ "polygon": [
+ [
+ 139.28778110989012,
+ 35.79932509009009
+ ],
+ [
+ 139.28800089010988,
+ 35.79932509009009
+ ],
+ [
+ 139.28800089010988,
+ 35.79914490990991
+ ],
+ [
+ 139.28778110989012,
+ 35.79914490990991
+ ],
+ [
+ 139.28778110989012,
+ 35.79932509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KeiyuByoin.2126.2",
+ "name": "慶友病院前",
+ "latitude": 35.79951,
+ "longitude": 139.287773,
+ "polygon": [
+ [
+ 139.2876631098901,
+ 35.79960009009009
+ ],
+ [
+ 139.28788289010987,
+ 35.79960009009009
+ ],
+ [
+ 139.28788289010987,
+ 35.79941990990991
+ ],
+ [
+ 139.2876631098901,
+ 35.79941990990991
+ ],
+ [
+ 139.2876631098901,
+ 35.79960009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimmachiShogakkoIriguchi.2127.1",
+ "name": "新町小学校入口",
+ "latitude": 35.786541,
+ "longitude": 139.306618,
+ "polygon": [
+ [
+ 139.3065081098901,
+ 35.78663109009009
+ ],
+ [
+ 139.30672789010987,
+ 35.78663109009009
+ ],
+ [
+ 139.30672789010987,
+ 35.78645090990991
+ ],
+ [
+ 139.3065081098901,
+ 35.78645090990991
+ ],
+ [
+ 139.3065081098901,
+ 35.78663109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsumotoJidoYuen.2135.1",
+ "name": "松本児童遊園前",
+ "latitude": 35.715538,
+ "longitude": 139.878152,
+ "polygon": [
+ [
+ 139.87804210989012,
+ 35.71562809009009
+ ],
+ [
+ 139.87826189010988,
+ 35.71562809009009
+ ],
+ [
+ 139.87826189010988,
+ 35.71544790990991
+ ],
+ [
+ 139.87804210989012,
+ 35.71544790990991
+ ],
+ [
+ 139.87804210989012,
+ 35.71562809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShimmachiShogakkoIriguchi.2127.2",
+ "name": "新町小学校入口",
+ "latitude": 35.786587,
+ "longitude": 139.305673,
+ "polygon": [
+ [
+ 139.30556310989013,
+ 35.78667709009009
+ ],
+ [
+ 139.3057828901099,
+ 35.78667709009009
+ ],
+ [
+ 139.3057828901099,
+ 35.78649690990991
+ ],
+ [
+ 139.30556310989013,
+ 35.78649690990991
+ ],
+ [
+ 139.30556310989013,
+ 35.78667709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDairokuChugakko.2128.1",
+ "name": "青梅第六中学校前",
+ "latitude": 35.820961,
+ "longitude": 139.275648,
+ "polygon": [
+ [
+ 139.2755381098901,
+ 35.82105109009009
+ ],
+ [
+ 139.27575789010987,
+ 35.82105109009009
+ ],
+ [
+ 139.27575789010987,
+ 35.82087090990991
+ ],
+ [
+ 139.2755381098901,
+ 35.82087090990991
+ ],
+ [
+ 139.2755381098901,
+ 35.82105109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDairokuChugakko.2128.2",
+ "name": "青梅第六中学校前",
+ "latitude": 35.820957,
+ "longitude": 139.275528,
+ "polygon": [
+ [
+ 139.27541810989013,
+ 35.82104709009009
+ ],
+ [
+ 139.2756378901099,
+ 35.82104709009009
+ ],
+ [
+ 139.2756378901099,
+ 35.82086690990991
+ ],
+ [
+ 139.27541810989013,
+ 35.82086690990991
+ ],
+ [
+ 139.27541810989013,
+ 35.82104709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiNichome.2129.1",
+ "name": "太平二丁目",
+ "latitude": 35.701153,
+ "longitude": 139.812222,
+ "polygon": [
+ [
+ 139.8121121098901,
+ 35.70124309009009
+ ],
+ [
+ 139.81233189010987,
+ 35.70124309009009
+ ],
+ [
+ 139.81233189010987,
+ 35.70106290990991
+ ],
+ [
+ 139.8121121098901,
+ 35.70106290990991
+ ],
+ [
+ 139.8121121098901,
+ 35.70124309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TaiheiNichome.2129.2",
+ "name": "太平二丁目",
+ "latitude": 35.701005,
+ "longitude": 139.81282,
+ "polygon": [
+ [
+ 139.8127101098901,
+ 35.70109509009009
+ ],
+ [
+ 139.81292989010987,
+ 35.70109509009009
+ ],
+ [
+ 139.81292989010987,
+ 35.70091490990991
+ ],
+ [
+ 139.8127101098901,
+ 35.70091490990991
+ ],
+ [
+ 139.8127101098901,
+ 35.70109509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuSportsCenterIriguchi.2130.1",
+ "name": "新宿スポーツセンター入口",
+ "latitude": 35.708608,
+ "longitude": 139.706068,
+ "polygon": [
+ [
+ 139.7059581098901,
+ 35.70869809009009
+ ],
+ [
+ 139.70617789010987,
+ 35.70869809009009
+ ],
+ [
+ 139.70617789010987,
+ 35.70851790990991
+ ],
+ [
+ 139.7059581098901,
+ 35.70851790990991
+ ],
+ [
+ 139.7059581098901,
+ 35.70869809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuSportsCenterIriguchi.2130.2",
+ "name": "新宿スポーツセンター入口",
+ "latitude": 35.708767,
+ "longitude": 139.706207,
+ "polygon": [
+ [
+ 139.70609710989012,
+ 35.70885709009009
+ ],
+ [
+ 139.7063168901099,
+ 35.70885709009009
+ ],
+ [
+ 139.7063168901099,
+ 35.70867690990991
+ ],
+ [
+ 139.70609710989012,
+ 35.70867690990991
+ ],
+ [
+ 139.70609710989012,
+ 35.70885709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiDainiShogakko.2132.1",
+ "name": "大杉第二小学校前",
+ "latitude": 35.70698,
+ "longitude": 139.880213,
+ "polygon": [
+ [
+ 139.88010310989011,
+ 35.70707009009009
+ ],
+ [
+ 139.88032289010988,
+ 35.70707009009009
+ ],
+ [
+ 139.88032289010988,
+ 35.70688990990991
+ ],
+ [
+ 139.88010310989011,
+ 35.70688990990991
+ ],
+ [
+ 139.88010310989011,
+ 35.70707009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiDainiShogakko.2132.2",
+ "name": "大杉第二小学校前",
+ "latitude": 35.705987,
+ "longitude": 139.880741,
+ "polygon": [
+ [
+ 139.88063110989012,
+ 35.70607709009009
+ ],
+ [
+ 139.88085089010988,
+ 35.70607709009009
+ ],
+ [
+ 139.88085089010988,
+ 35.70589690990991
+ ],
+ [
+ 139.88063110989012,
+ 35.70589690990991
+ ],
+ [
+ 139.88063110989012,
+ 35.70607709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiYonchome.2133.1",
+ "name": "大杉四丁目",
+ "latitude": 35.709404,
+ "longitude": 139.87988,
+ "polygon": [
+ [
+ 139.87977010989013,
+ 35.70949409009009
+ ],
+ [
+ 139.8799898901099,
+ 35.70949409009009
+ ],
+ [
+ 139.8799898901099,
+ 35.70931390990991
+ ],
+ [
+ 139.87977010989013,
+ 35.70931390990991
+ ],
+ [
+ 139.87977010989013,
+ 35.70949409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiYonchome.2133.2",
+ "name": "大杉四丁目",
+ "latitude": 35.710066,
+ "longitude": 139.879485,
+ "polygon": [
+ [
+ 139.8793751098901,
+ 35.71015609009009
+ ],
+ [
+ 139.87959489010987,
+ 35.71015609009009
+ ],
+ [
+ 139.87959489010987,
+ 35.70997590990991
+ ],
+ [
+ 139.8793751098901,
+ 35.70997590990991
+ ],
+ [
+ 139.8793751098901,
+ 35.71015609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsumotoBenten.2134.1",
+ "name": "松本弁天",
+ "latitude": 35.712694,
+ "longitude": 139.878821,
+ "polygon": [
+ [
+ 139.8787111098901,
+ 35.71278409009009
+ ],
+ [
+ 139.87893089010987,
+ 35.71278409009009
+ ],
+ [
+ 139.87893089010987,
+ 35.71260390990991
+ ],
+ [
+ 139.8787111098901,
+ 35.71260390990991
+ ],
+ [
+ 139.8787111098901,
+ 35.71278409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsumotoJidoYuen.2135.2",
+ "name": "松本児童遊園前",
+ "latitude": 35.715917,
+ "longitude": 139.878397,
+ "polygon": [
+ [
+ 139.87828710989012,
+ 35.71600709009009
+ ],
+ [
+ 139.8785068901099,
+ 35.71600709009009
+ ],
+ [
+ 139.8785068901099,
+ 35.71582690990991
+ ],
+ [
+ 139.87828710989012,
+ 35.71582690990991
+ ],
+ [
+ 139.87828710989012,
+ 35.71600709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIsshikiChugakko.2137.1",
+ "name": "上一色中学校前",
+ "latitude": 35.723318,
+ "longitude": 139.873763,
+ "polygon": [
+ [
+ 139.8736531098901,
+ 35.72340809009009
+ ],
+ [
+ 139.87387289010988,
+ 35.72340809009009
+ ],
+ [
+ 139.87387289010988,
+ 35.72322790990991
+ ],
+ [
+ 139.8736531098901,
+ 35.72322790990991
+ ],
+ [
+ 139.8736531098901,
+ 35.72340809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIsshikiChugakko.2137.2",
+ "name": "上一色中学校前",
+ "latitude": 35.723164,
+ "longitude": 139.873591,
+ "polygon": [
+ [
+ 139.87348110989012,
+ 35.72325409009009
+ ],
+ [
+ 139.8737008901099,
+ 35.72325409009009
+ ],
+ [
+ 139.8737008901099,
+ 35.72307390990991
+ ],
+ [
+ 139.87348110989012,
+ 35.72307390990991
+ ],
+ [
+ 139.87348110989012,
+ 35.72325409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIsshikiCommunityCenter.2138.1",
+ "name": "上一色コミュニティセンター前",
+ "latitude": 35.724828,
+ "longitude": 139.872034,
+ "polygon": [
+ [
+ 139.87192410989013,
+ 35.72491809009009
+ ],
+ [
+ 139.8721438901099,
+ 35.72491809009009
+ ],
+ [
+ 139.8721438901099,
+ 35.72473790990991
+ ],
+ [
+ 139.87192410989013,
+ 35.72473790990991
+ ],
+ [
+ 139.87192410989013,
+ 35.72491809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIsshikiCommunityCenter.2138.2",
+ "name": "上一色コミュニティセンター前",
+ "latitude": 35.725281,
+ "longitude": 139.872187,
+ "polygon": [
+ [
+ 139.8720771098901,
+ 35.72537109009009
+ ],
+ [
+ 139.87229689010988,
+ 35.72537109009009
+ ],
+ [
+ 139.87229689010988,
+ 35.72519090990991
+ ],
+ [
+ 139.8720771098901,
+ 35.72519090990991
+ ],
+ [
+ 139.8720771098901,
+ 35.72537109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIsshiki.2139.1",
+ "name": "上一色",
+ "latitude": 35.724213,
+ "longitude": 139.870523,
+ "polygon": [
+ [
+ 139.8704131098901,
+ 35.72430309009009
+ ],
+ [
+ 139.87063289010987,
+ 35.72430309009009
+ ],
+ [
+ 139.87063289010987,
+ 35.72412290990991
+ ],
+ [
+ 139.8704131098901,
+ 35.72412290990991
+ ],
+ [
+ 139.8704131098901,
+ 35.72430309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiIsshiki.2139.2",
+ "name": "上一色",
+ "latitude": 35.724168,
+ "longitude": 139.870128,
+ "polygon": [
+ [
+ 139.8700181098901,
+ 35.72425809009009
+ ],
+ [
+ 139.87023789010988,
+ 35.72425809009009
+ ],
+ [
+ 139.87023789010988,
+ 35.72407790990991
+ ],
+ [
+ 139.8700181098901,
+ 35.72407790990991
+ ],
+ [
+ 139.8700181098901,
+ 35.72425809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoiwaKokoIriguchi.2140.1",
+ "name": "小岩高校入口",
+ "latitude": 35.722118,
+ "longitude": 139.867896,
+ "polygon": [
+ [
+ 139.86778610989012,
+ 35.72220809009009
+ ],
+ [
+ 139.86800589010988,
+ 35.72220809009009
+ ],
+ [
+ 139.86800589010988,
+ 35.72202790990991
+ ],
+ [
+ 139.86778610989012,
+ 35.72202790990991
+ ],
+ [
+ 139.86778610989012,
+ 35.72220809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KoiwaKokoIriguchi.2140.2",
+ "name": "小岩高校入口",
+ "latitude": 35.722562,
+ "longitude": 139.867974,
+ "polygon": [
+ [
+ 139.86786410989012,
+ 35.722652090090094
+ ],
+ [
+ 139.8680838901099,
+ 35.722652090090094
+ ],
+ [
+ 139.8680838901099,
+ 35.72247190990991
+ ],
+ [
+ 139.86786410989012,
+ 35.72247190990991
+ ],
+ [
+ 139.86786410989012,
+ 35.722652090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkoiwaYonchome.2141.1",
+ "name": "新小岩四丁目",
+ "latitude": 35.719886,
+ "longitude": 139.867286,
+ "polygon": [
+ [
+ 139.86717610989012,
+ 35.71997609009009
+ ],
+ [
+ 139.8673958901099,
+ 35.71997609009009
+ ],
+ [
+ 139.8673958901099,
+ 35.71979590990991
+ ],
+ [
+ 139.86717610989012,
+ 35.71979590990991
+ ],
+ [
+ 139.86717610989012,
+ 35.71997609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinkoiwaYonchome.2141.2",
+ "name": "新小岩四丁目",
+ "latitude": 35.720248,
+ "longitude": 139.867314,
+ "polygon": [
+ [
+ 139.8672041098901,
+ 35.72033809009009
+ ],
+ [
+ 139.86742389010988,
+ 35.72033809009009
+ ],
+ [
+ 139.86742389010988,
+ 35.72015790990991
+ ],
+ [
+ 139.8672041098901,
+ 35.72015790990991
+ ],
+ [
+ 139.8672041098901,
+ 35.72033809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeItchome.2144.1",
+ "name": "有明一丁目",
+ "latitude": 35.635215,
+ "longitude": 139.78495,
+ "polygon": [
+ [
+ 139.78484010989013,
+ 35.63530509009009
+ ],
+ [
+ 139.7850598901099,
+ 35.63530509009009
+ ],
+ [
+ 139.7850598901099,
+ 35.63512490990991
+ ],
+ [
+ 139.78484010989013,
+ 35.63512490990991
+ ],
+ [
+ 139.78484010989013,
+ 35.63530509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeItchome.2144.2",
+ "name": "有明一丁目",
+ "latitude": 35.635145,
+ "longitude": 139.785323,
+ "polygon": [
+ [
+ 139.78521310989012,
+ 35.63523509009009
+ ],
+ [
+ 139.7854328901099,
+ 35.63523509009009
+ ],
+ [
+ 139.7854328901099,
+ 35.63505490990991
+ ],
+ [
+ 139.78521310989012,
+ 35.63505490990991
+ ],
+ [
+ 139.78521310989012,
+ 35.63523509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoSanchome.2145.2",
+ "name": "臨海町三丁目",
+ "latitude": 35.649223,
+ "longitude": 139.86147,
+ "polygon": [
+ [
+ 139.86136010989011,
+ 35.64931309009009
+ ],
+ [
+ 139.86157989010988,
+ 35.64931309009009
+ ],
+ [
+ 139.86157989010988,
+ 35.64913290990991
+ ],
+ [
+ 139.86136010989011,
+ 35.64913290990991
+ ],
+ [
+ 139.86136010989011,
+ 35.64931309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoSanchome.2145.3",
+ "name": "臨海町三丁目",
+ "latitude": 35.648643,
+ "longitude": 139.861669,
+ "polygon": [
+ [
+ 139.86155910989012,
+ 35.64873309009009
+ ],
+ [
+ 139.8617788901099,
+ 35.64873309009009
+ ],
+ [
+ 139.8617788901099,
+ 35.64855290990991
+ ],
+ [
+ 139.86155910989012,
+ 35.64855290990991
+ ],
+ [
+ 139.86155910989012,
+ 35.64873309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakasakombashi.2146.1",
+ "name": "中左近橋",
+ "latitude": 35.653235,
+ "longitude": 139.862785,
+ "polygon": [
+ [
+ 139.86267510989012,
+ 35.65332509009009
+ ],
+ [
+ 139.86289489010989,
+ 35.65332509009009
+ ],
+ [
+ 139.86289489010989,
+ 35.65314490990991
+ ],
+ [
+ 139.86267510989012,
+ 35.65314490990991
+ ],
+ [
+ 139.86267510989012,
+ 35.65332509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakasakombashi.2146.2",
+ "name": "中左近橋",
+ "latitude": 35.651985,
+ "longitude": 139.863246,
+ "polygon": [
+ [
+ 139.86313610989012,
+ 35.652075090090094
+ ],
+ [
+ 139.8633558901099,
+ 35.652075090090094
+ ],
+ [
+ 139.8633558901099,
+ 35.65189490990991
+ ],
+ [
+ 139.86313610989012,
+ 35.65189490990991
+ ],
+ [
+ 139.86313610989012,
+ 35.652075090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nakasakombashi.2146.4",
+ "name": "中左近橋",
+ "latitude": 35.652719,
+ "longitude": 139.863562,
+ "polygon": [
+ [
+ 139.86345210989012,
+ 35.65280909009009
+ ],
+ [
+ 139.86367189010988,
+ 35.65280909009009
+ ],
+ [
+ 139.86367189010988,
+ 35.65262890990991
+ ],
+ [
+ 139.86345210989012,
+ 35.65262890990991
+ ],
+ [
+ 139.86345210989012,
+ 35.65280909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TomiokaIchome.2147.1",
+ "name": "富岡一丁目(とみおかいっちょうめ(おうめし))",
+ "latitude": 35.833987,
+ "longitude": 139.297198,
+ "polygon": [
+ [
+ 139.29708810989013,
+ 35.83407709009009
+ ],
+ [
+ 139.2973078901099,
+ 35.83407709009009
+ ],
+ [
+ 139.2973078901099,
+ 35.83389690990991
+ ],
+ [
+ 139.29708810989013,
+ 35.83389690990991
+ ],
+ [
+ 139.29708810989013,
+ 35.83407709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TomiokaIchome.2147.2",
+ "name": "富岡一丁目(とみおかいっちょうめ(おうめし))",
+ "latitude": 35.833991,
+ "longitude": 139.297114,
+ "polygon": [
+ [
+ 139.2970041098901,
+ 35.83408109009009
+ ],
+ [
+ 139.29722389010988,
+ 35.83408109009009
+ ],
+ [
+ 139.29722389010988,
+ 35.83390090990991
+ ],
+ [
+ 139.2970041098901,
+ 35.83390090990991
+ ],
+ [
+ 139.2970041098901,
+ 35.83408109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStationDori.2149.1",
+ "name": "高田馬場駅通り",
+ "latitude": 35.709741,
+ "longitude": 139.703617,
+ "polygon": [
+ [
+ 139.70350710989013,
+ 35.70983109009009
+ ],
+ [
+ 139.7037268901099,
+ 35.70983109009009
+ ],
+ [
+ 139.7037268901099,
+ 35.70965090990991
+ ],
+ [
+ 139.70350710989013,
+ 35.70965090990991
+ ],
+ [
+ 139.70350710989013,
+ 35.70983109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiChassisPool.2153.2",
+ "name": "大井シャシープール前",
+ "latitude": 35.588261,
+ "longitude": 139.771152,
+ "polygon": [
+ [
+ 139.77104210989012,
+ 35.58835109009009
+ ],
+ [
+ 139.77126189010988,
+ 35.58835109009009
+ ],
+ [
+ 139.77126189010988,
+ 35.58817090990991
+ ],
+ [
+ 139.77104210989012,
+ 35.58817090990991
+ ],
+ [
+ 139.77104210989012,
+ 35.58835109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TakadanobabaStationDori.2149.2",
+ "name": "高田馬場駅通り",
+ "latitude": 35.7105,
+ "longitude": 139.70373,
+ "polygon": [
+ [
+ 139.70362010989012,
+ 35.71059009009009
+ ],
+ [
+ 139.7038398901099,
+ 35.71059009009009
+ ],
+ [
+ 139.7038398901099,
+ 35.71040990990991
+ ],
+ [
+ 139.70362010989012,
+ 35.71040990990991
+ ],
+ [
+ 139.70362010989012,
+ 35.71059009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiGochome.2150.1",
+ "name": "平井五丁目",
+ "latitude": 35.705539,
+ "longitude": 139.838892,
+ "polygon": [
+ [
+ 139.8387821098901,
+ 35.70562909009009
+ ],
+ [
+ 139.83900189010987,
+ 35.70562909009009
+ ],
+ [
+ 139.83900189010987,
+ 35.70544890990991
+ ],
+ [
+ 139.8387821098901,
+ 35.70544890990991
+ ],
+ [
+ 139.8387821098901,
+ 35.70562909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiDaigoChugakko.2151.1",
+ "name": "足立第五中学校前",
+ "latitude": 35.777258,
+ "longitude": 139.777082,
+ "polygon": [
+ [
+ 139.77697210989012,
+ 35.77734809009009
+ ],
+ [
+ 139.7771918901099,
+ 35.77734809009009
+ ],
+ [
+ 139.7771918901099,
+ 35.77716790990991
+ ],
+ [
+ 139.77697210989012,
+ 35.77716790990991
+ ],
+ [
+ 139.77697210989012,
+ 35.77734809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiDaigoChugakko.2151.2",
+ "name": "足立第五中学校前",
+ "latitude": 35.776388,
+ "longitude": 139.775743,
+ "polygon": [
+ [
+ 139.77563310989012,
+ 35.77647809009009
+ ],
+ [
+ 139.7758528901099,
+ 35.77647809009009
+ ],
+ [
+ 139.7758528901099,
+ 35.77629790990991
+ ],
+ [
+ 139.77563310989012,
+ 35.77629790990991
+ ],
+ [
+ 139.77563310989012,
+ 35.77647809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiFutoVanpool.2152.1",
+ "name": "大井埠頭バンプール前",
+ "latitude": 35.585603,
+ "longitude": 139.767506,
+ "polygon": [
+ [
+ 139.76739610989011,
+ 35.58569309009009
+ ],
+ [
+ 139.76761589010988,
+ 35.58569309009009
+ ],
+ [
+ 139.76761589010988,
+ 35.58551290990991
+ ],
+ [
+ 139.76739610989011,
+ 35.58551290990991
+ ],
+ [
+ 139.76739610989011,
+ 35.58569309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OiChassisPool.2153.1",
+ "name": "大井シャシープール前",
+ "latitude": 35.589045,
+ "longitude": 139.771597,
+ "polygon": [
+ [
+ 139.77148710989013,
+ 35.58913509009009
+ ],
+ [
+ 139.7717068901099,
+ 35.58913509009009
+ ],
+ [
+ 139.7717068901099,
+ 35.58895490990991
+ ],
+ [
+ 139.77148710989013,
+ 35.58895490990991
+ ],
+ [
+ 139.77148710989013,
+ 35.58913509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioNichome.2154.1",
+ "name": "八潮二丁目",
+ "latitude": 35.593092,
+ "longitude": 139.768572,
+ "polygon": [
+ [
+ 139.76846210989012,
+ 35.59318209009009
+ ],
+ [
+ 139.7686818901099,
+ 35.59318209009009
+ ],
+ [
+ 139.7686818901099,
+ 35.59300190990991
+ ],
+ [
+ 139.76846210989012,
+ 35.59300190990991
+ ],
+ [
+ 139.76846210989012,
+ 35.59318209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioNichome.2154.2",
+ "name": "八潮二丁目",
+ "latitude": 35.593912,
+ "longitude": 139.769775,
+ "polygon": [
+ [
+ 139.76966510989013,
+ 35.59400209009009
+ ],
+ [
+ 139.7698848901099,
+ 35.59400209009009
+ ],
+ [
+ 139.7698848901099,
+ 35.59382190990991
+ ],
+ [
+ 139.76966510989013,
+ 35.59382190990991
+ ],
+ [
+ 139.76966510989013,
+ 35.59400209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YashioNichome.2154.3",
+ "name": "八潮二丁目",
+ "latitude": 35.593246,
+ "longitude": 139.769736,
+ "polygon": [
+ [
+ 139.7696261098901,
+ 35.59333609009009
+ ],
+ [
+ 139.76984589010988,
+ 35.59333609009009
+ ],
+ [
+ 139.76984589010988,
+ 35.59315590990991
+ ],
+ [
+ 139.7696261098901,
+ 35.59315590990991
+ ],
+ [
+ 139.7696261098901,
+ 35.59333609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nichirei.2155.1",
+ "name": "ニチレイ前",
+ "latitude": 35.592279,
+ "longitude": 139.770109,
+ "polygon": [
+ [
+ 139.7699991098901,
+ 35.59236909009009
+ ],
+ [
+ 139.77021889010987,
+ 35.59236909009009
+ ],
+ [
+ 139.77021889010987,
+ 35.59218890990991
+ ],
+ [
+ 139.7699991098901,
+ 35.59218890990991
+ ],
+ [
+ 139.7699991098901,
+ 35.59236909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Nichirei.2155.2",
+ "name": "ニチレイ前",
+ "latitude": 35.592245,
+ "longitude": 139.771175,
+ "polygon": [
+ [
+ 139.77106510989012,
+ 35.59233509009009
+ ],
+ [
+ 139.77128489010988,
+ 35.59233509009009
+ ],
+ [
+ 139.77128489010988,
+ 35.59215490990991
+ ],
+ [
+ 139.77106510989012,
+ 35.59215490990991
+ ],
+ [
+ 139.77106510989012,
+ 35.59233509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.CentralBiru.2156.1",
+ "name": "セントラルビル前",
+ "latitude": 35.591458,
+ "longitude": 139.769433,
+ "polygon": [
+ [
+ 139.7693231098901,
+ 35.59154809009009
+ ],
+ [
+ 139.76954289010988,
+ 35.59154809009009
+ ],
+ [
+ 139.76954289010988,
+ 35.59136790990991
+ ],
+ [
+ 139.7693231098901,
+ 35.59136790990991
+ ],
+ [
+ 139.7693231098901,
+ 35.59154809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.CentralBiru.2156.2",
+ "name": "セントラルビル前",
+ "latitude": 35.591386,
+ "longitude": 139.76941,
+ "polygon": [
+ [
+ 139.7693001098901,
+ 35.59147609009009
+ ],
+ [
+ 139.76951989010988,
+ 35.59147609009009
+ ],
+ [
+ 139.76951989010988,
+ 35.59129590990991
+ ],
+ [
+ 139.7693001098901,
+ 35.59129590990991
+ ],
+ [
+ 139.7693001098901,
+ 35.59147609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonoikeUnYu.2157.1",
+ "name": "鴻池運輸前",
+ "latitude": 35.590061,
+ "longitude": 139.766694,
+ "polygon": [
+ [
+ 139.76658410989012,
+ 35.59015109009009
+ ],
+ [
+ 139.76680389010988,
+ 35.59015109009009
+ ],
+ [
+ 139.76680389010988,
+ 35.58997090990991
+ ],
+ [
+ 139.76658410989012,
+ 35.58997090990991
+ ],
+ [
+ 139.76658410989012,
+ 35.59015109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonoikeUnYu.2157.2",
+ "name": "鴻池運輸前",
+ "latitude": 35.589014,
+ "longitude": 139.766003,
+ "polygon": [
+ [
+ 139.76589310989013,
+ 35.58910409009009
+ ],
+ [
+ 139.7661128901099,
+ 35.58910409009009
+ ],
+ [
+ 139.7661128901099,
+ 35.58892390990991
+ ],
+ [
+ 139.76589310989013,
+ 35.58892390990991
+ ],
+ [
+ 139.76589310989013,
+ 35.58910409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MaruzenShowa.2158.1",
+ "name": "丸全昭和前",
+ "latitude": 35.587561,
+ "longitude": 139.766028,
+ "polygon": [
+ [
+ 139.76591810989012,
+ 35.58765109009009
+ ],
+ [
+ 139.7661378901099,
+ 35.58765109009009
+ ],
+ [
+ 139.7661378901099,
+ 35.58747090990991
+ ],
+ [
+ 139.76591810989012,
+ 35.58747090990991
+ ],
+ [
+ 139.76591810989012,
+ 35.58765109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MaruzenShowa.2158.2",
+ "name": "丸全昭和前",
+ "latitude": 35.587561,
+ "longitude": 139.765788,
+ "polygon": [
+ [
+ 139.7656781098901,
+ 35.58765109009009
+ ],
+ [
+ 139.76589789010987,
+ 35.58765109009009
+ ],
+ [
+ 139.76589789010987,
+ 35.58747090990991
+ ],
+ [
+ 139.7656781098901,
+ 35.58747090990991
+ ],
+ [
+ 139.7656781098901,
+ 35.58765109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoYonchome.2160.1",
+ "name": "臨海町四丁目",
+ "latitude": 35.646953,
+ "longitude": 139.866281,
+ "polygon": [
+ [
+ 139.8661711098901,
+ 35.647043090090094
+ ],
+ [
+ 139.86639089010987,
+ 35.647043090090094
+ ],
+ [
+ 139.86639089010987,
+ 35.64686290990991
+ ],
+ [
+ 139.8661711098901,
+ 35.64686290990991
+ ],
+ [
+ 139.8661711098901,
+ 35.647043090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoYonchome.2160.2",
+ "name": "臨海町四丁目",
+ "latitude": 35.646803,
+ "longitude": 139.866244,
+ "polygon": [
+ [
+ 139.8661341098901,
+ 35.64689309009009
+ ],
+ [
+ 139.86635389010988,
+ 35.64689309009009
+ ],
+ [
+ 139.86635389010988,
+ 35.64671290990991
+ ],
+ [
+ 139.8661341098901,
+ 35.64671290990991
+ ],
+ [
+ 139.8661341098901,
+ 35.64689309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiSanchome.2161.1",
+ "name": "大杉三丁目",
+ "latitude": 35.704348,
+ "longitude": 139.880842,
+ "polygon": [
+ [
+ 139.88073210989012,
+ 35.70443809009009
+ ],
+ [
+ 139.88095189010988,
+ 35.70443809009009
+ ],
+ [
+ 139.88095189010988,
+ 35.70425790990991
+ ],
+ [
+ 139.88073210989012,
+ 35.70425790990991
+ ],
+ [
+ 139.88073210989012,
+ 35.70443809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiSanchome.2161.2",
+ "name": "大杉三丁目",
+ "latitude": 35.704475,
+ "longitude": 139.881159,
+ "polygon": [
+ [
+ 139.8810491098901,
+ 35.70456509009009
+ ],
+ [
+ 139.88126889010988,
+ 35.70456509009009
+ ],
+ [
+ 139.88126889010988,
+ 35.70438490990991
+ ],
+ [
+ 139.8810491098901,
+ 35.70438490990991
+ ],
+ [
+ 139.8810491098901,
+ 35.70456509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumitomoTwinBiru.2162.1",
+ "name": "住友ツインビル前",
+ "latitude": 35.673396,
+ "longitude": 139.78321,
+ "polygon": [
+ [
+ 139.7831001098901,
+ 35.67348609009009
+ ],
+ [
+ 139.78331989010988,
+ 35.67348609009009
+ ],
+ [
+ 139.78331989010988,
+ 35.67330590990991
+ ],
+ [
+ 139.7831001098901,
+ 35.67330590990991
+ ],
+ [
+ 139.7831001098901,
+ 35.67348609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumitomoTwinBiru.2162.2",
+ "name": "住友ツインビル前",
+ "latitude": 35.674376,
+ "longitude": 139.783694,
+ "polygon": [
+ [
+ 139.7835841098901,
+ 35.67446609009009
+ ],
+ [
+ 139.78380389010988,
+ 35.67446609009009
+ ],
+ [
+ 139.78380389010988,
+ 35.67428590990991
+ ],
+ [
+ 139.7835841098901,
+ 35.67428590990991
+ ],
+ [
+ 139.7835841098901,
+ 35.67446609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaGochomeDanchi.2163.1",
+ "name": "南砂五丁目団地",
+ "latitude": 35.675066,
+ "longitude": 139.833314,
+ "polygon": [
+ [
+ 139.83320410989012,
+ 35.67515609009009
+ ],
+ [
+ 139.83342389010988,
+ 35.67515609009009
+ ],
+ [
+ 139.83342389010988,
+ 35.67497590990991
+ ],
+ [
+ 139.83320410989012,
+ 35.67497590990991
+ ],
+ [
+ 139.83320410989012,
+ 35.67515609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaGochomeDanchi.2163.2",
+ "name": "南砂五丁目団地",
+ "latitude": 35.674461,
+ "longitude": 139.833391,
+ "polygon": [
+ [
+ 139.83328110989012,
+ 35.67455109009009
+ ],
+ [
+ 139.8335008901099,
+ 35.67455109009009
+ ],
+ [
+ 139.8335008901099,
+ 35.67437090990991
+ ],
+ [
+ 139.83328110989012,
+ 35.67437090990991
+ ],
+ [
+ 139.83328110989012,
+ 35.67455109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaYonchomeJutaku.2164.1",
+ "name": "南砂四丁目住宅",
+ "latitude": 35.673617,
+ "longitude": 139.832304,
+ "polygon": [
+ [
+ 139.8321941098901,
+ 35.67370709009009
+ ],
+ [
+ 139.83241389010988,
+ 35.67370709009009
+ ],
+ [
+ 139.83241389010988,
+ 35.67352690990991
+ ],
+ [
+ 139.8321941098901,
+ 35.67352690990991
+ ],
+ [
+ 139.8321941098901,
+ 35.67370709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaYonchomeJutaku.2164.2",
+ "name": "南砂四丁目住宅",
+ "latitude": 35.673491,
+ "longitude": 139.832123,
+ "polygon": [
+ [
+ 139.8320131098901,
+ 35.67358109009009
+ ],
+ [
+ 139.83223289010988,
+ 35.67358109009009
+ ],
+ [
+ 139.83223289010988,
+ 35.67340090990991
+ ],
+ [
+ 139.8320131098901,
+ 35.67340090990991
+ ],
+ [
+ 139.8320131098901,
+ 35.67358109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukushimabashiMinamizume.2165.1",
+ "name": "福島橋南詰",
+ "latitude": 35.674258,
+ "longitude": 139.829516,
+ "polygon": [
+ [
+ 139.82940610989013,
+ 35.67434809009009
+ ],
+ [
+ 139.8296258901099,
+ 35.67434809009009
+ ],
+ [
+ 139.8296258901099,
+ 35.67416790990991
+ ],
+ [
+ 139.82940610989013,
+ 35.67416790990991
+ ],
+ [
+ 139.82940610989013,
+ 35.67434809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukushimabashiMinamizume.2165.2",
+ "name": "福島橋南詰",
+ "latitude": 35.674039,
+ "longitude": 139.82966,
+ "polygon": [
+ [
+ 139.8295501098901,
+ 35.67412909009009
+ ],
+ [
+ 139.82976989010987,
+ 35.67412909009009
+ ],
+ [
+ 139.82976989010987,
+ 35.67394890990991
+ ],
+ [
+ 139.8295501098901,
+ 35.67394890990991
+ ],
+ [
+ 139.8295501098901,
+ 35.67412909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaYonchome.2166.1",
+ "name": "南砂四丁目",
+ "latitude": 35.675453,
+ "longitude": 139.824026,
+ "polygon": [
+ [
+ 139.82391610989012,
+ 35.67554309009009
+ ],
+ [
+ 139.8241358901099,
+ 35.67554309009009
+ ],
+ [
+ 139.8241358901099,
+ 35.67536290990991
+ ],
+ [
+ 139.82391610989012,
+ 35.67536290990991
+ ],
+ [
+ 139.82391610989012,
+ 35.67554309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaYonchome.2166.2",
+ "name": "南砂四丁目",
+ "latitude": 35.674848,
+ "longitude": 139.826246,
+ "polygon": [
+ [
+ 139.82613610989011,
+ 35.67493809009009
+ ],
+ [
+ 139.82635589010988,
+ 35.67493809009009
+ ],
+ [
+ 139.82635589010988,
+ 35.67475790990991
+ ],
+ [
+ 139.82613610989011,
+ 35.67475790990991
+ ],
+ [
+ 139.82613610989011,
+ 35.67493809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaNichome.2167.1",
+ "name": "南砂二丁目",
+ "latitude": 35.675576,
+ "longitude": 139.822417,
+ "polygon": [
+ [
+ 139.82230710989012,
+ 35.67566609009009
+ ],
+ [
+ 139.82252689010988,
+ 35.67566609009009
+ ],
+ [
+ 139.82252689010988,
+ 35.67548590990991
+ ],
+ [
+ 139.82230710989012,
+ 35.67548590990991
+ ],
+ [
+ 139.82230710989012,
+ 35.67566609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaNichome.2167.2",
+ "name": "南砂二丁目",
+ "latitude": 35.675759,
+ "longitude": 139.822394,
+ "polygon": [
+ [
+ 139.82228410989012,
+ 35.67584909009009
+ ],
+ [
+ 139.82250389010989,
+ 35.67584909009009
+ ],
+ [
+ 139.82250389010989,
+ 35.67566890990991
+ ],
+ [
+ 139.82228410989012,
+ 35.67566890990991
+ ],
+ [
+ 139.82228410989012,
+ 35.67584909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoHeliport.2169.1",
+ "name": "東京ヘリポート前",
+ "latitude": 35.636596,
+ "longitude": 139.836817,
+ "polygon": [
+ [
+ 139.8367071098901,
+ 35.63668609009009
+ ],
+ [
+ 139.83692689010988,
+ 35.63668609009009
+ ],
+ [
+ 139.83692689010988,
+ 35.63650590990991
+ ],
+ [
+ 139.8367071098901,
+ 35.63650590990991
+ ],
+ [
+ 139.8367071098901,
+ 35.63668609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSengokubashi.2170.1",
+ "name": "南千石橋",
+ "latitude": 35.63254,
+ "longitude": 139.824864,
+ "polygon": [
+ [
+ 139.8247541098901,
+ 35.63263009009009
+ ],
+ [
+ 139.82497389010987,
+ 35.63263009009009
+ ],
+ [
+ 139.82497389010987,
+ 35.63244990990991
+ ],
+ [
+ 139.8247541098901,
+ 35.63244990990991
+ ],
+ [
+ 139.8247541098901,
+ 35.63263009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FerryFutoIriguchi.2171.1",
+ "name": "フェリー埠頭入口",
+ "latitude": 35.629425,
+ "longitude": 139.789563,
+ "polygon": [
+ [
+ 139.7894531098901,
+ 35.62951509009009
+ ],
+ [
+ 139.78967289010987,
+ 35.62951509009009
+ ],
+ [
+ 139.78967289010987,
+ 35.62933490990991
+ ],
+ [
+ 139.7894531098901,
+ 35.62933490990991
+ ],
+ [
+ 139.7894531098901,
+ 35.62951509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fuyuki.2172.1",
+ "name": "冬木",
+ "latitude": 35.67517,
+ "longitude": 139.802192,
+ "polygon": [
+ [
+ 139.8020821098901,
+ 35.67526009009009
+ ],
+ [
+ 139.80230189010987,
+ 35.67526009009009
+ ],
+ [
+ 139.80230189010987,
+ 35.67507990990991
+ ],
+ [
+ 139.8020821098901,
+ 35.67507990990991
+ ],
+ [
+ 139.8020821098901,
+ 35.67526009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Fuyuki.2172.2",
+ "name": "冬木",
+ "latitude": 35.675384,
+ "longitude": 139.803358,
+ "polygon": [
+ [
+ 139.80324810989012,
+ 35.67547409009009
+ ],
+ [
+ 139.80346789010989,
+ 35.67547409009009
+ ],
+ [
+ 139.80346789010989,
+ 35.67529390990991
+ ],
+ [
+ 139.80324810989012,
+ 35.67529390990991
+ ],
+ [
+ 139.80324810989012,
+ 35.67547409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaDanchi.2179.1",
+ "name": "東砂団地",
+ "latitude": 35.684621,
+ "longitude": 139.843053,
+ "polygon": [
+ [
+ 139.84294310989011,
+ 35.68471109009009
+ ],
+ [
+ 139.84316289010988,
+ 35.68471109009009
+ ],
+ [
+ 139.84316289010988,
+ 35.68453090990991
+ ],
+ [
+ 139.84294310989011,
+ 35.68453090990991
+ ],
+ [
+ 139.84294310989011,
+ 35.68471109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaDanchi.2179.2",
+ "name": "東砂団地",
+ "latitude": 35.684716,
+ "longitude": 139.844055,
+ "polygon": [
+ [
+ 139.84394510989011,
+ 35.68480609009009
+ ],
+ [
+ 139.84416489010988,
+ 35.68480609009009
+ ],
+ [
+ 139.84416489010988,
+ 35.68462590990991
+ ],
+ [
+ 139.84394510989011,
+ 35.68462590990991
+ ],
+ [
+ 139.84394510989011,
+ 35.68480609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaItchome.2180.1",
+ "name": "東砂一丁目",
+ "latitude": 35.684483,
+ "longitude": 139.840601,
+ "polygon": [
+ [
+ 139.8404911098901,
+ 35.68457309009009
+ ],
+ [
+ 139.84071089010988,
+ 35.68457309009009
+ ],
+ [
+ 139.84071089010988,
+ 35.68439290990991
+ ],
+ [
+ 139.8404911098901,
+ 35.68439290990991
+ ],
+ [
+ 139.8404911098901,
+ 35.68457309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaItchome.2180.2",
+ "name": "東砂一丁目",
+ "latitude": 35.684608,
+ "longitude": 139.841644,
+ "polygon": [
+ [
+ 139.84153410989012,
+ 35.68469809009009
+ ],
+ [
+ 139.84175389010989,
+ 35.68469809009009
+ ],
+ [
+ 139.84175389010989,
+ 35.68451790990991
+ ],
+ [
+ 139.84153410989012,
+ 35.68451790990991
+ ],
+ [
+ 139.84153410989012,
+ 35.68469809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuShobosho.2455.2",
+ "name": "新宿消防署",
+ "latitude": 35.707261,
+ "longitude": 139.694436,
+ "polygon": [
+ [
+ 139.6943261098901,
+ 35.70735109009009
+ ],
+ [
+ 139.69454589010988,
+ 35.70735109009009
+ ],
+ [
+ 139.69454589010988,
+ 35.70717090990991
+ ],
+ [
+ 139.6943261098901,
+ 35.70717090990991
+ ],
+ [
+ 139.6943261098901,
+ 35.70735109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaGochomeDanchi.2181.1",
+ "name": "北砂五丁目団地",
+ "latitude": 35.684154,
+ "longitude": 139.832826,
+ "polygon": [
+ [
+ 139.83271610989013,
+ 35.68424409009009
+ ],
+ [
+ 139.8329358901099,
+ 35.68424409009009
+ ],
+ [
+ 139.8329358901099,
+ 35.68406390990991
+ ],
+ [
+ 139.83271610989013,
+ 35.68406390990991
+ ],
+ [
+ 139.83271610989013,
+ 35.68424409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitasunaGochomeDanchi.2181.2",
+ "name": "北砂五丁目団地",
+ "latitude": 35.683994,
+ "longitude": 139.832254,
+ "polygon": [
+ [
+ 139.83214410989012,
+ 35.68408409009009
+ ],
+ [
+ 139.8323638901099,
+ 35.68408409009009
+ ],
+ [
+ 139.8323638901099,
+ 35.68390390990991
+ ],
+ [
+ 139.83214410989012,
+ 35.68390390990991
+ ],
+ [
+ 139.83214410989012,
+ 35.68408409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukishimaDaiichiShogakko.2182.1",
+ "name": "月島第一小学校前",
+ "latitude": 35.660813,
+ "longitude": 139.780006,
+ "polygon": [
+ [
+ 139.7798961098901,
+ 35.66090309009009
+ ],
+ [
+ 139.78011589010987,
+ 35.66090309009009
+ ],
+ [
+ 139.78011589010987,
+ 35.66072290990991
+ ],
+ [
+ 139.7798961098901,
+ 35.66072290990991
+ ],
+ [
+ 139.7798961098901,
+ 35.66090309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiChugakko.2184.1",
+ "name": "南葛西中学校前",
+ "latitude": 35.645124,
+ "longitude": 139.875587,
+ "polygon": [
+ [
+ 139.8754771098901,
+ 35.64521409009009
+ ],
+ [
+ 139.87569689010988,
+ 35.64521409009009
+ ],
+ [
+ 139.87569689010988,
+ 35.64503390990991
+ ],
+ [
+ 139.8754771098901,
+ 35.64503390990991
+ ],
+ [
+ 139.8754771098901,
+ 35.64521409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiRinkaiKoenStation.2189.5",
+ "name": "葛西臨海公園駅前",
+ "latitude": 35.643662,
+ "longitude": 139.86182,
+ "polygon": [
+ [
+ 139.8617101098901,
+ 35.64375209009009
+ ],
+ [
+ 139.86192989010988,
+ 35.64375209009009
+ ],
+ [
+ 139.86192989010988,
+ 35.64357190990991
+ ],
+ [
+ 139.8617101098901,
+ 35.64357190990991
+ ],
+ [
+ 139.8617101098901,
+ 35.64375209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiChugakko.2184.2",
+ "name": "南葛西中学校前",
+ "latitude": 35.645336,
+ "longitude": 139.875725,
+ "polygon": [
+ [
+ 139.8756151098901,
+ 35.64542609009009
+ ],
+ [
+ 139.87583489010987,
+ 35.64542609009009
+ ],
+ [
+ 139.87583489010987,
+ 35.64524590990991
+ ],
+ [
+ 139.8756151098901,
+ 35.64524590990991
+ ],
+ [
+ 139.8756151098901,
+ 35.64542609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiChugakko.2184.3",
+ "name": "南葛西中学校前",
+ "latitude": 35.644007,
+ "longitude": 139.875901,
+ "polygon": [
+ [
+ 139.87579110989012,
+ 35.64409709009009
+ ],
+ [
+ 139.87601089010988,
+ 35.64409709009009
+ ],
+ [
+ 139.87601089010988,
+ 35.64391690990991
+ ],
+ [
+ 139.87579110989012,
+ 35.64391690990991
+ ],
+ [
+ 139.87579110989012,
+ 35.64409709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiChugakko.2184.4",
+ "name": "南葛西中学校前",
+ "latitude": 35.643939,
+ "longitude": 139.876757,
+ "polygon": [
+ [
+ 139.87664710989011,
+ 35.64402909009009
+ ],
+ [
+ 139.87686689010988,
+ 35.64402909009009
+ ],
+ [
+ 139.87686689010988,
+ 35.64384890990991
+ ],
+ [
+ 139.87664710989011,
+ 35.64384890990991
+ ],
+ [
+ 139.87664710989011,
+ 35.64402909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeColosseum.2185.1",
+ "name": "有明コロシアム前",
+ "latitude": 35.637364,
+ "longitude": 139.788937,
+ "polygon": [
+ [
+ 139.78882710989012,
+ 35.63745409009009
+ ],
+ [
+ 139.7890468901099,
+ 35.63745409009009
+ ],
+ [
+ 139.7890468901099,
+ 35.63727390990991
+ ],
+ [
+ 139.78882710989012,
+ 35.63727390990991
+ ],
+ [
+ 139.78882710989012,
+ 35.63745409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaNanachomeMinami.2186.1",
+ "name": "豊島七丁目南",
+ "latitude": 35.764065,
+ "longitude": 139.744406,
+ "polygon": [
+ [
+ 139.74429610989012,
+ 35.76415509009009
+ ],
+ [
+ 139.74451589010988,
+ 35.76415509009009
+ ],
+ [
+ 139.74451589010988,
+ 35.76397490990991
+ ],
+ [
+ 139.74429610989012,
+ 35.76397490990991
+ ],
+ [
+ 139.74429610989012,
+ 35.76415509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToshimaNanachomeMinami.2186.2",
+ "name": "豊島七丁目南",
+ "latitude": 35.764216,
+ "longitude": 139.74478,
+ "polygon": [
+ [
+ 139.7446701098901,
+ 35.76430609009009
+ ],
+ [
+ 139.74488989010987,
+ 35.76430609009009
+ ],
+ [
+ 139.74488989010987,
+ 35.76412590990991
+ ],
+ [
+ 139.7446701098901,
+ 35.76412590990991
+ ],
+ [
+ 139.7446701098901,
+ 35.76430609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShintoyohashiMinami.2187.1",
+ "name": "新豊橋南",
+ "latitude": 35.764725,
+ "longitude": 139.747544,
+ "polygon": [
+ [
+ 139.74743410989012,
+ 35.76481509009009
+ ],
+ [
+ 139.7476538901099,
+ 35.76481509009009
+ ],
+ [
+ 139.7476538901099,
+ 35.76463490990991
+ ],
+ [
+ 139.74743410989012,
+ 35.76463490990991
+ ],
+ [
+ 139.74743410989012,
+ 35.76481509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShintoyohashiMinami.2187.2",
+ "name": "新豊橋南",
+ "latitude": 35.76484,
+ "longitude": 139.747451,
+ "polygon": [
+ [
+ 139.74734110989013,
+ 35.76493009009009
+ ],
+ [
+ 139.7475608901099,
+ 35.76493009009009
+ ],
+ [
+ 139.7475608901099,
+ 35.76474990990991
+ ],
+ [
+ 139.74734110989013,
+ 35.76474990990991
+ ],
+ [
+ 139.74734110989013,
+ 35.76493009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoGochome.2188.1",
+ "name": "臨海町五丁目",
+ "latitude": 35.644194,
+ "longitude": 139.867981,
+ "polygon": [
+ [
+ 139.8678711098901,
+ 35.64428409009009
+ ],
+ [
+ 139.86809089010987,
+ 35.64428409009009
+ ],
+ [
+ 139.86809089010987,
+ 35.64410390990991
+ ],
+ [
+ 139.8678711098901,
+ 35.64410390990991
+ ],
+ [
+ 139.8678711098901,
+ 35.64428409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasumigaoka.2191.1",
+ "name": "霞ヶ丘",
+ "latitude": 35.675119,
+ "longitude": 139.712713,
+ "polygon": [
+ [
+ 139.71260310989013,
+ 35.67520909009009
+ ],
+ [
+ 139.7128228901099,
+ 35.67520909009009
+ ],
+ [
+ 139.7128228901099,
+ 35.67502890990991
+ ],
+ [
+ 139.71260310989013,
+ 35.67502890990991
+ ],
+ [
+ 139.71260310989013,
+ 35.67520909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoGochome.2188.2",
+ "name": "臨海町五丁目",
+ "latitude": 35.644663,
+ "longitude": 139.868951,
+ "polygon": [
+ [
+ 139.86884110989013,
+ 35.64475309009009
+ ],
+ [
+ 139.8690608901099,
+ 35.64475309009009
+ ],
+ [
+ 139.8690608901099,
+ 35.64457290990991
+ ],
+ [
+ 139.86884110989013,
+ 35.64457290990991
+ ],
+ [
+ 139.86884110989013,
+ 35.64475309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiRinkaiKoenStation.2189.1",
+ "name": "葛西臨海公園駅前",
+ "latitude": 35.643891,
+ "longitude": 139.862432,
+ "polygon": [
+ [
+ 139.86232210989013,
+ 35.643981090090094
+ ],
+ [
+ 139.8625418901099,
+ 35.643981090090094
+ ],
+ [
+ 139.8625418901099,
+ 35.64380090990991
+ ],
+ [
+ 139.86232210989013,
+ 35.64380090990991
+ ],
+ [
+ 139.86232210989013,
+ 35.643981090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoNichomeDanchi.2197.2",
+ "name": "臨海町二丁目団地前",
+ "latitude": 35.653125,
+ "longitude": 139.860858,
+ "polygon": [
+ [
+ 139.86074810989012,
+ 35.65321509009009
+ ],
+ [
+ 139.8609678901099,
+ 35.65321509009009
+ ],
+ [
+ 139.8609678901099,
+ 35.65303490990991
+ ],
+ [
+ 139.86074810989012,
+ 35.65303490990991
+ ],
+ [
+ 139.86074810989012,
+ 35.65321509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiRinkaiKoenStation.2189.2",
+ "name": "葛西臨海公園駅前",
+ "latitude": 35.643965,
+ "longitude": 139.862225,
+ "polygon": [
+ [
+ 139.8621151098901,
+ 35.64405509009009
+ ],
+ [
+ 139.86233489010988,
+ 35.64405509009009
+ ],
+ [
+ 139.86233489010988,
+ 35.64387490990991
+ ],
+ [
+ 139.8621151098901,
+ 35.64387490990991
+ ],
+ [
+ 139.8621151098901,
+ 35.64405509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiRinkaiKoenStation.2189.3",
+ "name": "葛西臨海公園駅前",
+ "latitude": 35.643978,
+ "longitude": 139.861678,
+ "polygon": [
+ [
+ 139.86156810989013,
+ 35.64406809009009
+ ],
+ [
+ 139.8617878901099,
+ 35.64406809009009
+ ],
+ [
+ 139.8617878901099,
+ 35.64388790990991
+ ],
+ [
+ 139.86156810989013,
+ 35.64388790990991
+ ],
+ [
+ 139.86156810989013,
+ 35.64406809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiRinkaiKoenStation.2189.4",
+ "name": "葛西臨海公園駅前",
+ "latitude": 35.644039,
+ "longitude": 139.861978,
+ "polygon": [
+ [
+ 139.8618681098901,
+ 35.64412909009009
+ ],
+ [
+ 139.86208789010988,
+ 35.64412909009009
+ ],
+ [
+ 139.86208789010988,
+ 35.64394890990991
+ ],
+ [
+ 139.8618681098901,
+ 35.64394890990991
+ ],
+ [
+ 139.8618681098901,
+ 35.64412909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtaShijo.2200.2",
+ "name": "大田市場",
+ "latitude": 35.579078,
+ "longitude": 139.760211,
+ "polygon": [
+ [
+ 139.76010110989012,
+ 35.57916809009009
+ ],
+ [
+ 139.76032089010988,
+ 35.57916809009009
+ ],
+ [
+ 139.76032089010988,
+ 35.57898790990991
+ ],
+ [
+ 139.76010110989012,
+ 35.57898790990991
+ ],
+ [
+ 139.76010110989012,
+ 35.57916809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasumigaoka.2191.2",
+ "name": "霞ヶ丘",
+ "latitude": 35.674711,
+ "longitude": 139.712486,
+ "polygon": [
+ [
+ 139.71237610989013,
+ 35.67480109009009
+ ],
+ [
+ 139.7125958901099,
+ 35.67480109009009
+ ],
+ [
+ 139.7125958901099,
+ 35.67462090990991
+ ],
+ [
+ 139.71237610989013,
+ 35.67462090990991
+ ],
+ [
+ 139.71237610989013,
+ 35.67480109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kasumigaoka.2191.3",
+ "name": "霞ヶ丘",
+ "latitude": 35.675416,
+ "longitude": 139.712205,
+ "polygon": [
+ [
+ 139.71209510989013,
+ 35.67550609009009
+ ],
+ [
+ 139.7123148901099,
+ 35.67550609009009
+ ],
+ [
+ 139.7123148901099,
+ 35.67532590990991
+ ],
+ [
+ 139.71209510989013,
+ 35.67532590990991
+ ],
+ [
+ 139.71209510989013,
+ 35.67550609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Otakebashi.2192.1",
+ "name": "尾竹橋",
+ "latitude": 35.75218,
+ "longitude": 139.787238,
+ "polygon": [
+ [
+ 139.78712810989012,
+ 35.75227009009009
+ ],
+ [
+ 139.78734789010988,
+ 35.75227009009009
+ ],
+ [
+ 139.78734789010988,
+ 35.75208990990991
+ ],
+ [
+ 139.78712810989012,
+ 35.75208990990991
+ ],
+ [
+ 139.78712810989012,
+ 35.75227009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Otakebashi.2192.2",
+ "name": "尾竹橋",
+ "latitude": 35.751175,
+ "longitude": 139.786294,
+ "polygon": [
+ [
+ 139.78618410989012,
+ 35.751265090090094
+ ],
+ [
+ 139.78640389010988,
+ 35.751265090090094
+ ],
+ [
+ 139.78640389010988,
+ 35.75108490990991
+ ],
+ [
+ 139.78618410989012,
+ 35.75108490990991
+ ],
+ [
+ 139.78618410989012,
+ 35.751265090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaiDaiichiHoikuen.2196.1",
+ "name": "臨海第一保育園前",
+ "latitude": 35.650784,
+ "longitude": 139.861439,
+ "polygon": [
+ [
+ 139.8613291098901,
+ 35.65087409009009
+ ],
+ [
+ 139.86154889010987,
+ 35.65087409009009
+ ],
+ [
+ 139.86154889010987,
+ 35.65069390990991
+ ],
+ [
+ 139.8613291098901,
+ 35.65069390990991
+ ],
+ [
+ 139.8613291098901,
+ 35.65087409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TogikaiGijido.2250.1",
+ "name": "都議会議事堂",
+ "latitude": 35.689589,
+ "longitude": 139.693583,
+ "polygon": [
+ [
+ 139.6934731098901,
+ 35.68967909009009
+ ],
+ [
+ 139.69369289010987,
+ 35.68967909009009
+ ],
+ [
+ 139.69369289010987,
+ 35.68949890990991
+ ],
+ [
+ 139.6934731098901,
+ 35.68949890990991
+ ],
+ [
+ 139.6934731098901,
+ 35.68967909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoNichomeDanchi.2197.1",
+ "name": "臨海町二丁目団地前",
+ "latitude": 35.653381,
+ "longitude": 139.860155,
+ "polygon": [
+ [
+ 139.8600451098901,
+ 35.65347109009009
+ ],
+ [
+ 139.86026489010987,
+ 35.65347109009009
+ ],
+ [
+ 139.86026489010987,
+ 35.65329090990991
+ ],
+ [
+ 139.8600451098901,
+ 35.65329090990991
+ ],
+ [
+ 139.8600451098901,
+ 35.65347109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaichoNichomeDanchi.2197.3",
+ "name": "臨海町二丁目団地前",
+ "latitude": 35.653014,
+ "longitude": 139.862611,
+ "polygon": [
+ [
+ 139.8625011098901,
+ 35.65310409009009
+ ],
+ [
+ 139.86272089010987,
+ 35.65310409009009
+ ],
+ [
+ 139.86272089010987,
+ 35.65292390990991
+ ],
+ [
+ 139.8625011098901,
+ 35.65292390990991
+ ],
+ [
+ 139.8625011098901,
+ 35.65310409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtaShijoKitamon.2198.3",
+ "name": "大田市場北",
+ "latitude": 35.584383,
+ "longitude": 139.764201,
+ "polygon": [
+ [
+ 139.76409110989013,
+ 35.58447309009009
+ ],
+ [
+ 139.7643108901099,
+ 35.58447309009009
+ ],
+ [
+ 139.7643108901099,
+ 35.58429290990991
+ ],
+ [
+ 139.76409110989013,
+ 35.58429290990991
+ ],
+ [
+ 139.76409110989013,
+ 35.58447309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuisanTo.2199.1",
+ "name": "水産棟前",
+ "latitude": 35.580171,
+ "longitude": 139.764245,
+ "polygon": [
+ [
+ 139.7641351098901,
+ 35.58026109009009
+ ],
+ [
+ 139.76435489010987,
+ 35.58026109009009
+ ],
+ [
+ 139.76435489010987,
+ 35.58008090990991
+ ],
+ [
+ 139.7641351098901,
+ 35.58008090990991
+ ],
+ [
+ 139.7641351098901,
+ 35.58026109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtaShijo.2200.1",
+ "name": "大田市場",
+ "latitude": 35.579281,
+ "longitude": 139.758601,
+ "polygon": [
+ [
+ 139.75849110989012,
+ 35.57937109009009
+ ],
+ [
+ 139.75871089010988,
+ 35.57937109009009
+ ],
+ [
+ 139.75871089010988,
+ 35.57919090990991
+ ],
+ [
+ 139.75849110989012,
+ 35.57919090990991
+ ],
+ [
+ 139.75849110989012,
+ 35.57937109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakusanSanchome.2203.1",
+ "name": "白山三丁目",
+ "latitude": 35.719216,
+ "longitude": 139.741735,
+ "polygon": [
+ [
+ 139.74162510989012,
+ 35.71930609009009
+ ],
+ [
+ 139.7418448901099,
+ 35.71930609009009
+ ],
+ [
+ 139.7418448901099,
+ 35.71912590990991
+ ],
+ [
+ 139.74162510989012,
+ 35.71912590990991
+ ],
+ [
+ 139.74162510989012,
+ 35.71930609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HakusanSanchome.2203.2",
+ "name": "白山三丁目",
+ "latitude": 35.719303,
+ "longitude": 139.741854,
+ "polygon": [
+ [
+ 139.7417441098901,
+ 35.71939309009009
+ ],
+ [
+ 139.74196389010987,
+ 35.71939309009009
+ ],
+ [
+ 139.74196389010987,
+ 35.719212909909906
+ ],
+ [
+ 139.7417441098901,
+ 35.719212909909906
+ ],
+ [
+ 139.7417441098901,
+ 35.71939309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hamazonobashi.2204.1",
+ "name": "浜園橋",
+ "latitude": 35.661635,
+ "longitude": 139.799412,
+ "polygon": [
+ [
+ 139.7993021098901,
+ 35.66172509009009
+ ],
+ [
+ 139.79952189010987,
+ 35.66172509009009
+ ],
+ [
+ 139.79952189010987,
+ 35.66154490990991
+ ],
+ [
+ 139.7993021098901,
+ 35.66154490990991
+ ],
+ [
+ 139.7993021098901,
+ 35.66172509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hamazonobashi.2204.2",
+ "name": "浜園橋",
+ "latitude": 35.661827,
+ "longitude": 139.799609,
+ "polygon": [
+ [
+ 139.79949910989012,
+ 35.66191709009009
+ ],
+ [
+ 139.7997188901099,
+ 35.66191709009009
+ ],
+ [
+ 139.7997188901099,
+ 35.66173690990991
+ ],
+ [
+ 139.79949910989012,
+ 35.66173690990991
+ ],
+ [
+ 139.79949910989012,
+ 35.66191709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNanachomeDaisanApato.2205.1",
+ "name": "平井七丁目第三アパート前",
+ "latitude": 35.714718,
+ "longitude": 139.836216,
+ "polygon": [
+ [
+ 139.83610610989012,
+ 35.71480809009009
+ ],
+ [
+ 139.8363258901099,
+ 35.71480809009009
+ ],
+ [
+ 139.8363258901099,
+ 35.71462790990991
+ ],
+ [
+ 139.83610610989012,
+ 35.71462790990991
+ ],
+ [
+ 139.83610610989012,
+ 35.71480809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNanachomeDaisanApato.2205.2",
+ "name": "平井七丁目第三アパート前",
+ "latitude": 35.714431,
+ "longitude": 139.836268,
+ "polygon": [
+ [
+ 139.8361581098901,
+ 35.71452109009009
+ ],
+ [
+ 139.83637789010987,
+ 35.71452109009009
+ ],
+ [
+ 139.83637789010987,
+ 35.71434090990991
+ ],
+ [
+ 139.8361581098901,
+ 35.71434090990991
+ ],
+ [
+ 139.8361581098901,
+ 35.71452109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNanachomeDaisanApato.2205.3",
+ "name": "平井七丁目第三アパート前",
+ "latitude": 35.714984,
+ "longitude": 139.835492,
+ "polygon": [
+ [
+ 139.8353821098901,
+ 35.71507409009009
+ ],
+ [
+ 139.83560189010987,
+ 35.71507409009009
+ ],
+ [
+ 139.83560189010987,
+ 35.71489390990991
+ ],
+ [
+ 139.8353821098901,
+ 35.71489390990991
+ ],
+ [
+ 139.8353821098901,
+ 35.71507409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinTokyoYubinkyoku.2209.1",
+ "name": "新東京郵便局前",
+ "latitude": 35.66019,
+ "longitude": 139.823717,
+ "polygon": [
+ [
+ 139.8236071098901,
+ 35.66028009009009
+ ],
+ [
+ 139.82382689010987,
+ 35.66028009009009
+ ],
+ [
+ 139.82382689010987,
+ 35.66009990990991
+ ],
+ [
+ 139.8236071098901,
+ 35.66009990990991
+ ],
+ [
+ 139.8236071098901,
+ 35.66028009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiNanachomeDaisanApato.2205.4",
+ "name": "平井七丁目第三アパート前",
+ "latitude": 35.715067,
+ "longitude": 139.835156,
+ "polygon": [
+ [
+ 139.83504610989013,
+ 35.71515709009009
+ ],
+ [
+ 139.8352658901099,
+ 35.71515709009009
+ ],
+ [
+ 139.8352658901099,
+ 35.71497690990991
+ ],
+ [
+ 139.83504610989013,
+ 35.71497690990991
+ ],
+ [
+ 139.83504610989013,
+ 35.71515709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SanGoBerth.2207.1",
+ "name": "3号バース前",
+ "latitude": 35.605651,
+ "longitude": 139.759405,
+ "polygon": [
+ [
+ 139.7592951098901,
+ 35.60574109009009
+ ],
+ [
+ 139.75951489010987,
+ 35.60574109009009
+ ],
+ [
+ 139.75951489010987,
+ 35.60556090990991
+ ],
+ [
+ 139.7592951098901,
+ 35.60556090990991
+ ],
+ [
+ 139.7592951098901,
+ 35.60574109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiStation.2208.1",
+ "name": "潮見駅前",
+ "latitude": 35.658541,
+ "longitude": 139.816969,
+ "polygon": [
+ [
+ 139.81685910989012,
+ 35.65863109009009
+ ],
+ [
+ 139.81707889010988,
+ 35.65863109009009
+ ],
+ [
+ 139.81707889010988,
+ 35.65845090990991
+ ],
+ [
+ 139.81685910989012,
+ 35.65845090990991
+ ],
+ [
+ 139.81685910989012,
+ 35.65863109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiStation.2208.2",
+ "name": "潮見駅前",
+ "latitude": 35.65874,
+ "longitude": 139.817107,
+ "polygon": [
+ [
+ 139.8169971098901,
+ 35.65883009009009
+ ],
+ [
+ 139.81721689010988,
+ 35.65883009009009
+ ],
+ [
+ 139.81721689010988,
+ 35.65864990990991
+ ],
+ [
+ 139.8169971098901,
+ 35.65864990990991
+ ],
+ [
+ 139.8169971098901,
+ 35.65883009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiStation.2208.5",
+ "name": "潮見駅前",
+ "latitude": 35.658607,
+ "longitude": 139.817135,
+ "polygon": [
+ [
+ 139.81702510989012,
+ 35.658697090090094
+ ],
+ [
+ 139.8172448901099,
+ 35.658697090090094
+ ],
+ [
+ 139.8172448901099,
+ 35.65851690990991
+ ],
+ [
+ 139.81702510989012,
+ 35.65851690990991
+ ],
+ [
+ 139.81702510989012,
+ 35.658697090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiStation.2208.6",
+ "name": "潮見駅前",
+ "latitude": 35.658655,
+ "longitude": 139.817067,
+ "polygon": [
+ [
+ 139.81695710989013,
+ 35.65874509009009
+ ],
+ [
+ 139.8171768901099,
+ 35.65874509009009
+ ],
+ [
+ 139.8171768901099,
+ 35.65856490990991
+ ],
+ [
+ 139.81695710989013,
+ 35.65856490990991
+ ],
+ [
+ 139.81695710989013,
+ 35.65874509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinTokyoYubinkyoku.2209.2",
+ "name": "新東京郵便局前",
+ "latitude": 35.660899,
+ "longitude": 139.82395,
+ "polygon": [
+ [
+ 139.8238401098901,
+ 35.66098909009009
+ ],
+ [
+ 139.82405989010988,
+ 35.66098909009009
+ ],
+ [
+ 139.82405989010988,
+ 35.66080890990991
+ ],
+ [
+ 139.8238401098901,
+ 35.66080890990991
+ ],
+ [
+ 139.8238401098901,
+ 35.66098909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoChikatetsuSogoUndojo.2210.1",
+ "name": "東京地下鉄総合運動場前",
+ "latitude": 35.66273,
+ "longitude": 139.823837,
+ "polygon": [
+ [
+ 139.82372710989011,
+ 35.662820090090094
+ ],
+ [
+ 139.82394689010988,
+ 35.662820090090094
+ ],
+ [
+ 139.82394689010988,
+ 35.66263990990991
+ ],
+ [
+ 139.82372710989011,
+ 35.66263990990991
+ ],
+ [
+ 139.82372710989011,
+ 35.662820090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaNichome.2211.1",
+ "name": "小松川二丁目",
+ "latitude": 35.69424,
+ "longitude": 139.849433,
+ "polygon": [
+ [
+ 139.84932310989012,
+ 35.69433009009009
+ ],
+ [
+ 139.8495428901099,
+ 35.69433009009009
+ ],
+ [
+ 139.8495428901099,
+ 35.69414990990991
+ ],
+ [
+ 139.84932310989012,
+ 35.69414990990991
+ ],
+ [
+ 139.84932310989012,
+ 35.69433009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaSanchomeApato.2214.1",
+ "name": "小松川三丁目アパート前",
+ "latitude": 35.697172,
+ "longitude": 139.848343,
+ "polygon": [
+ [
+ 139.84823310989012,
+ 35.69726209009009
+ ],
+ [
+ 139.84845289010988,
+ 35.69726209009009
+ ],
+ [
+ 139.84845289010988,
+ 35.69708190990991
+ ],
+ [
+ 139.84823310989012,
+ 35.69708190990991
+ ],
+ [
+ 139.84823310989012,
+ 35.69726209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaNichome.2211.2",
+ "name": "小松川二丁目",
+ "latitude": 35.694176,
+ "longitude": 139.849182,
+ "polygon": [
+ [
+ 139.84907210989013,
+ 35.69426609009009
+ ],
+ [
+ 139.8492918901099,
+ 35.69426609009009
+ ],
+ [
+ 139.8492918901099,
+ 35.69408590990991
+ ],
+ [
+ 139.84907210989013,
+ 35.69408590990991
+ ],
+ [
+ 139.84907210989013,
+ 35.69426609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaKenkoSupportCenter.2212.1",
+ "name": "小松川健康サポートセンター前",
+ "latitude": 35.695626,
+ "longitude": 139.848945,
+ "polygon": [
+ [
+ 139.8488351098901,
+ 35.69571609009009
+ ],
+ [
+ 139.84905489010987,
+ 35.69571609009009
+ ],
+ [
+ 139.84905489010987,
+ 35.69553590990991
+ ],
+ [
+ 139.8488351098901,
+ 35.69553590990991
+ ],
+ [
+ 139.8488351098901,
+ 35.69571609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaKenkoSupportCenter.2212.2",
+ "name": "小松川健康サポートセンター前",
+ "latitude": 35.696315,
+ "longitude": 139.848421,
+ "polygon": [
+ [
+ 139.84831110989012,
+ 35.69640509009009
+ ],
+ [
+ 139.84853089010988,
+ 35.69640509009009
+ ],
+ [
+ 139.84853089010988,
+ 35.69622490990991
+ ],
+ [
+ 139.84831110989012,
+ 35.69622490990991
+ ],
+ [
+ 139.84831110989012,
+ 35.69640509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaDainiShogakko.2213.1",
+ "name": "小松川第二小学校前",
+ "latitude": 35.697593,
+ "longitude": 139.850265,
+ "polygon": [
+ [
+ 139.85015510989012,
+ 35.69768309009009
+ ],
+ [
+ 139.8503748901099,
+ 35.69768309009009
+ ],
+ [
+ 139.8503748901099,
+ 35.69750290990991
+ ],
+ [
+ 139.85015510989012,
+ 35.69750290990991
+ ],
+ [
+ 139.85015510989012,
+ 35.69768309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoItchome.2218.2",
+ "name": "亀戸一丁目",
+ "latitude": 35.696473,
+ "longitude": 139.820808,
+ "polygon": [
+ [
+ 139.82069810989012,
+ 35.69656309009009
+ ],
+ [
+ 139.82091789010988,
+ 35.69656309009009
+ ],
+ [
+ 139.82091789010988,
+ 35.69638290990991
+ ],
+ [
+ 139.82069810989012,
+ 35.69638290990991
+ ],
+ [
+ 139.82069810989012,
+ 35.69656309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooGochome.2215.10",
+ "name": "広尾五丁目",
+ "latitude": 35.648196,
+ "longitude": 139.721054,
+ "polygon": [
+ [
+ 139.72094410989013,
+ 35.64828609009009
+ ],
+ [
+ 139.7211638901099,
+ 35.64828609009009
+ ],
+ [
+ 139.7211638901099,
+ 35.64810590990991
+ ],
+ [
+ 139.72094410989013,
+ 35.64810590990991
+ ],
+ [
+ 139.72094410989013,
+ 35.64828609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HirooGochome.2215.11",
+ "name": "広尾五丁目",
+ "latitude": 35.648362,
+ "longitude": 139.71982,
+ "polygon": [
+ [
+ 139.71971010989012,
+ 35.64845209009009
+ ],
+ [
+ 139.71992989010988,
+ 35.64845209009009
+ ],
+ [
+ 139.71992989010988,
+ 35.64827190990991
+ ],
+ [
+ 139.71971010989012,
+ 35.64827190990991
+ ],
+ [
+ 139.71971010989012,
+ 35.64845209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YayoiNichome.2217.1",
+ "name": "弥生二丁目",
+ "latitude": 35.71637,
+ "longitude": 139.76282,
+ "polygon": [
+ [
+ 139.76271010989012,
+ 35.71646009009009
+ ],
+ [
+ 139.7629298901099,
+ 35.71646009009009
+ ],
+ [
+ 139.7629298901099,
+ 35.71627990990991
+ ],
+ [
+ 139.76271010989012,
+ 35.71627990990991
+ ],
+ [
+ 139.76271010989012,
+ 35.71646009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YayoiNichome.2217.2",
+ "name": "弥生二丁目",
+ "latitude": 35.716073,
+ "longitude": 139.762471,
+ "polygon": [
+ [
+ 139.76236110989012,
+ 35.71616309009009
+ ],
+ [
+ 139.7625808901099,
+ 35.71616309009009
+ ],
+ [
+ 139.7625808901099,
+ 35.71598290990991
+ ],
+ [
+ 139.76236110989012,
+ 35.71598290990991
+ ],
+ [
+ 139.76236110989012,
+ 35.71616309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KameidoItchome.2218.1",
+ "name": "亀戸一丁目",
+ "latitude": 35.696184,
+ "longitude": 139.821023,
+ "polygon": [
+ [
+ 139.8209131098901,
+ 35.69627409009009
+ ],
+ [
+ 139.82113289010988,
+ 35.69627409009009
+ ],
+ [
+ 139.82113289010988,
+ 35.69609390990991
+ ],
+ [
+ 139.8209131098901,
+ 35.69609390990991
+ ],
+ [
+ 139.8209131098901,
+ 35.69627409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TochoDaiichiHonchosha.2248.1",
+ "name": "都庁第一本庁舎",
+ "latitude": 35.690269,
+ "longitude": 139.691452,
+ "polygon": [
+ [
+ 139.69134210989012,
+ 35.69035909009009
+ ],
+ [
+ 139.69156189010988,
+ 35.69035909009009
+ ],
+ [
+ 139.69156189010988,
+ 35.69017890990991
+ ],
+ [
+ 139.69134210989012,
+ 35.69017890990991
+ ],
+ [
+ 139.69134210989012,
+ 35.69035909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RiverPiaAzumabashi.2219.1",
+ "name": "リバーピア吾妻橋前",
+ "latitude": 35.709315,
+ "longitude": 139.799405,
+ "polygon": [
+ [
+ 139.79929510989012,
+ 35.70940509009009
+ ],
+ [
+ 139.7995148901099,
+ 35.70940509009009
+ ],
+ [
+ 139.7995148901099,
+ 35.709224909909906
+ ],
+ [
+ 139.79929510989012,
+ 35.709224909909906
+ ],
+ [
+ 139.79929510989012,
+ 35.70940509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RiverPiaAzumabashi.2219.2",
+ "name": "リバーピア吾妻橋前",
+ "latitude": 35.709486,
+ "longitude": 139.800238,
+ "polygon": [
+ [
+ 139.80012810989012,
+ 35.70957609009009
+ ],
+ [
+ 139.8003478901099,
+ 35.70957609009009
+ ],
+ [
+ 139.8003478901099,
+ 35.70939590990991
+ ],
+ [
+ 139.80012810989012,
+ 35.70939590990991
+ ],
+ [
+ 139.80012810989012,
+ 35.70957609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RiverPiaAzumabashi.2219.3",
+ "name": "リバーピア吾妻橋前",
+ "latitude": 35.708815,
+ "longitude": 139.801421,
+ "polygon": [
+ [
+ 139.80131110989012,
+ 35.70890509009009
+ ],
+ [
+ 139.8015308901099,
+ 35.70890509009009
+ ],
+ [
+ 139.8015308901099,
+ 35.70872490990991
+ ],
+ [
+ 139.80131110989012,
+ 35.70872490990991
+ ],
+ [
+ 139.80131110989012,
+ 35.70890509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kanzanji.2230.2",
+ "name": "寒山寺",
+ "latitude": 35.802962,
+ "longitude": 139.193758,
+ "polygon": [
+ [
+ 139.19364810989012,
+ 35.80305209009009
+ ],
+ [
+ 139.19386789010989,
+ 35.80305209009009
+ ],
+ [
+ 139.19386789010989,
+ 35.80287190990991
+ ],
+ [
+ 139.19364810989012,
+ 35.80287190990991
+ ],
+ [
+ 139.19364810989012,
+ 35.80305209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GyokudoBijutsukan.2231.2",
+ "name": "玉堂美術館",
+ "latitude": 35.799735,
+ "longitude": 139.183644,
+ "polygon": [
+ [
+ 139.1835341098901,
+ 35.79982509009009
+ ],
+ [
+ 139.18375389010987,
+ 35.79982509009009
+ ],
+ [
+ 139.18375389010987,
+ 35.79964490990991
+ ],
+ [
+ 139.1835341098901,
+ 35.79964490990991
+ ],
+ [
+ 139.1835341098901,
+ 35.79982509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TochoDainiHonchosha.2249.1",
+ "name": "都庁第二本庁舎",
+ "latitude": 35.68886,
+ "longitude": 139.692158,
+ "polygon": [
+ [
+ 139.69204810989012,
+ 35.68895009009009
+ ],
+ [
+ 139.6922678901099,
+ 35.68895009009009
+ ],
+ [
+ 139.6922678901099,
+ 35.68876990990991
+ ],
+ [
+ 139.69204810989012,
+ 35.68876990990991
+ ],
+ [
+ 139.69204810989012,
+ 35.68895009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaitoOiButsuryuCenter.2232.1",
+ "name": "ダイトー大井物流センター前",
+ "latitude": 35.585398,
+ "longitude": 139.765847,
+ "polygon": [
+ [
+ 139.76573710989013,
+ 35.58548809009009
+ ],
+ [
+ 139.7659568901099,
+ 35.58548809009009
+ ],
+ [
+ 139.7659568901099,
+ 35.58530790990991
+ ],
+ [
+ 139.76573710989013,
+ 35.58530790990991
+ ],
+ [
+ 139.76573710989013,
+ 35.58548809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaitoOiButsuryuCenter.2232.2",
+ "name": "ダイトー大井物流センター前",
+ "latitude": 35.585387,
+ "longitude": 139.766073,
+ "polygon": [
+ [
+ 139.76596310989012,
+ 35.58547709009009
+ ],
+ [
+ 139.7661828901099,
+ 35.58547709009009
+ ],
+ [
+ 139.7661828901099,
+ 35.58529690990991
+ ],
+ [
+ 139.76596310989012,
+ 35.58529690990991
+ ],
+ [
+ 139.76596310989012,
+ 35.58547709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaiShakoMae.2233.1",
+ "name": "臨海車庫前",
+ "latitude": 35.647387,
+ "longitude": 139.859011,
+ "polygon": [
+ [
+ 139.85890110989013,
+ 35.64747709009009
+ ],
+ [
+ 139.8591208901099,
+ 35.64747709009009
+ ],
+ [
+ 139.8591208901099,
+ 35.64729690990991
+ ],
+ [
+ 139.85890110989013,
+ 35.64729690990991
+ ],
+ [
+ 139.85890110989013,
+ 35.64747709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaiShakoMae.2233.2",
+ "name": "臨海車庫前",
+ "latitude": 35.647369,
+ "longitude": 139.859377,
+ "polygon": [
+ [
+ 139.8592671098901,
+ 35.64745909009009
+ ],
+ [
+ 139.85948689010988,
+ 35.64745909009009
+ ],
+ [
+ 139.85948689010988,
+ 35.64727890990991
+ ],
+ [
+ 139.8592671098901,
+ 35.64727890990991
+ ],
+ [
+ 139.8592671098901,
+ 35.64745909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinYotsugibashi.2237.1",
+ "name": "新四ツ木橋",
+ "latitude": 35.728231,
+ "longitude": 139.826727,
+ "polygon": [
+ [
+ 139.82661710989012,
+ 35.72832109009009
+ ],
+ [
+ 139.8268368901099,
+ 35.72832109009009
+ ],
+ [
+ 139.8268368901099,
+ 35.72814090990991
+ ],
+ [
+ 139.82661710989012,
+ 35.72814090990991
+ ],
+ [
+ 139.82661710989012,
+ 35.72832109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinYotsugibashi.2237.2",
+ "name": "新四ツ木橋",
+ "latitude": 35.728856,
+ "longitude": 139.826908,
+ "polygon": [
+ [
+ 139.82679810989012,
+ 35.72894609009009
+ ],
+ [
+ 139.8270178901099,
+ 35.72894609009009
+ ],
+ [
+ 139.8270178901099,
+ 35.72876590990991
+ ],
+ [
+ 139.82679810989012,
+ 35.72876590990991
+ ],
+ [
+ 139.82679810989012,
+ 35.72894609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidaKuyakusho.2238.1",
+ "name": "墨田区役所前",
+ "latitude": 35.710531,
+ "longitude": 139.801991,
+ "polygon": [
+ [
+ 139.8018811098901,
+ 35.71062109009009
+ ],
+ [
+ 139.80210089010987,
+ 35.71062109009009
+ ],
+ [
+ 139.80210089010987,
+ 35.71044090990991
+ ],
+ [
+ 139.8018811098901,
+ 35.71044090990991
+ ],
+ [
+ 139.8018811098901,
+ 35.71062109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaShako.2251.1",
+ "name": "東小松川車庫前",
+ "latitude": 35.688313,
+ "longitude": 139.864545,
+ "polygon": [
+ [
+ 139.8644351098901,
+ 35.68840309009009
+ ],
+ [
+ 139.86465489010988,
+ 35.68840309009009
+ ],
+ [
+ 139.86465489010988,
+ 35.68822290990991
+ ],
+ [
+ 139.8644351098901,
+ 35.68822290990991
+ ],
+ [
+ 139.8644351098901,
+ 35.68840309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKomatsugawaShako.2251.2",
+ "name": "東小松川車庫前",
+ "latitude": 35.688148,
+ "longitude": 139.864787,
+ "polygon": [
+ [
+ 139.86467710989012,
+ 35.68823809009009
+ ],
+ [
+ 139.8648968901099,
+ 35.68823809009009
+ ],
+ [
+ 139.8648968901099,
+ 35.68805790990991
+ ],
+ [
+ 139.86467710989012,
+ 35.68805790990991
+ ],
+ [
+ 139.86467710989012,
+ 35.68823809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriItchome.2252.1",
+ "name": "船堀一丁目",
+ "latitude": 35.68529,
+ "longitude": 139.864386,
+ "polygon": [
+ [
+ 139.8642761098901,
+ 35.68538009009009
+ ],
+ [
+ 139.86449589010988,
+ 35.68538009009009
+ ],
+ [
+ 139.86449589010988,
+ 35.68519990990991
+ ],
+ [
+ 139.8642761098901,
+ 35.68519990990991
+ ],
+ [
+ 139.8642761098901,
+ 35.68538009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuSangyoGijutsuKosenArakawaCampus.2253.1",
+ "name": "都立産業技術高専荒川キャンパス前",
+ "latitude": 35.734341,
+ "longitude": 139.807954,
+ "polygon": [
+ [
+ 139.8078441098901,
+ 35.73443109009009
+ ],
+ [
+ 139.80806389010988,
+ 35.73443109009009
+ ],
+ [
+ 139.80806389010988,
+ 35.73425090990991
+ ],
+ [
+ 139.8078441098901,
+ 35.73425090990991
+ ],
+ [
+ 139.8078441098901,
+ 35.73443109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToritsuSangyoGijutsuKosenArakawaCampus.2253.2",
+ "name": "都立産業技術高専荒川キャンパス前",
+ "latitude": 35.734455,
+ "longitude": 139.808037,
+ "polygon": [
+ [
+ 139.80792710989013,
+ 35.73454509009009
+ ],
+ [
+ 139.8081468901099,
+ 35.73454509009009
+ ],
+ [
+ 139.8081468901099,
+ 35.73436490990991
+ ],
+ [
+ 139.80792710989013,
+ 35.73436490990991
+ ],
+ [
+ 139.80792710989013,
+ 35.73454509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSengokubashiKitazume.2254.1",
+ "name": "南千石橋北詰",
+ "latitude": 35.635707,
+ "longitude": 139.823348,
+ "polygon": [
+ [
+ 139.82323810989013,
+ 35.63579709009009
+ ],
+ [
+ 139.8234578901099,
+ 35.63579709009009
+ ],
+ [
+ 139.8234578901099,
+ 35.635616909909906
+ ],
+ [
+ 139.82323810989013,
+ 35.635616909909906
+ ],
+ [
+ 139.82323810989013,
+ 35.63579709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidaNichome.2262.1",
+ "name": "墨田二丁目",
+ "latitude": 35.734352,
+ "longitude": 139.817795,
+ "polygon": [
+ [
+ 139.8176851098901,
+ 35.73444209009009
+ ],
+ [
+ 139.81790489010987,
+ 35.73444209009009
+ ],
+ [
+ 139.81790489010987,
+ 35.73426190990991
+ ],
+ [
+ 139.8176851098901,
+ 35.73426190990991
+ ],
+ [
+ 139.8176851098901,
+ 35.73444209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidaNichome.2262.2",
+ "name": "墨田二丁目",
+ "latitude": 35.734241,
+ "longitude": 139.817064,
+ "polygon": [
+ [
+ 139.8169541098901,
+ 35.73433109009009
+ ],
+ [
+ 139.81717389010987,
+ 35.73433109009009
+ ],
+ [
+ 139.81717389010987,
+ 35.73415090990991
+ ],
+ [
+ 139.8169541098901,
+ 35.73415090990991
+ ],
+ [
+ 139.8169541098901,
+ 35.73433109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuijinMae.2263.1",
+ "name": "水神前",
+ "latitude": 35.731697,
+ "longitude": 139.815268,
+ "polygon": [
+ [
+ 139.81515810989012,
+ 35.73178709009009
+ ],
+ [
+ 139.8153778901099,
+ 35.73178709009009
+ ],
+ [
+ 139.8153778901099,
+ 35.73160690990991
+ ],
+ [
+ 139.81515810989012,
+ 35.73160690990991
+ ],
+ [
+ 139.81515810989012,
+ 35.73178709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuijinMae.2263.2",
+ "name": "水神前",
+ "latitude": 35.731586,
+ "longitude": 139.814692,
+ "polygon": [
+ [
+ 139.81458210989013,
+ 35.73167609009009
+ ],
+ [
+ 139.8148018901099,
+ 35.73167609009009
+ ],
+ [
+ 139.8148018901099,
+ 35.73149590990991
+ ],
+ [
+ 139.81458210989013,
+ 35.73149590990991
+ ],
+ [
+ 139.81458210989013,
+ 35.73167609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sirahigebashi.2264.1",
+ "name": "白鬚橋",
+ "latitude": 35.728838,
+ "longitude": 139.813298,
+ "polygon": [
+ [
+ 139.81318810989012,
+ 35.72892809009009
+ ],
+ [
+ 139.8134078901099,
+ 35.72892809009009
+ ],
+ [
+ 139.8134078901099,
+ 35.72874790990991
+ ],
+ [
+ 139.81318810989012,
+ 35.72874790990991
+ ],
+ [
+ 139.81318810989012,
+ 35.72892809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Sirahigebashi.2264.2",
+ "name": "白鬚橋",
+ "latitude": 35.728977,
+ "longitude": 139.813706,
+ "polygon": [
+ [
+ 139.8135961098901,
+ 35.72906709009009
+ ],
+ [
+ 139.81381589010988,
+ 35.72906709009009
+ ],
+ [
+ 139.81381589010988,
+ 35.72888690990991
+ ],
+ [
+ 139.8135961098901,
+ 35.72888690990991
+ ],
+ [
+ 139.8135961098901,
+ 35.72906709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TennozuIsle.2271.3",
+ "name": "天王洲アイル",
+ "latitude": 35.621268,
+ "longitude": 139.750732,
+ "polygon": [
+ [
+ 139.75062210989012,
+ 35.62135809009009
+ ],
+ [
+ 139.75084189010988,
+ 35.62135809009009
+ ],
+ [
+ 139.75084189010988,
+ 35.62117790990991
+ ],
+ [
+ 139.75062210989012,
+ 35.62117790990991
+ ],
+ [
+ 139.75062210989012,
+ 35.62135809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidakuHikifuneBunkaCenter.2265.1",
+ "name": "墨田区曳舟文化センター前",
+ "latitude": 35.718524,
+ "longitude": 139.818583,
+ "polygon": [
+ [
+ 139.8184731098901,
+ 35.71861409009009
+ ],
+ [
+ 139.81869289010987,
+ 35.71861409009009
+ ],
+ [
+ 139.81869289010987,
+ 35.71843390990991
+ ],
+ [
+ 139.8184731098901,
+ 35.71843390990991
+ ],
+ [
+ 139.8184731098901,
+ 35.71861409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamaKoko.2375.1",
+ "name": "多摩高校前",
+ "latitude": 35.790529,
+ "longitude": 139.246974,
+ "polygon": [
+ [
+ 139.2468641098901,
+ 35.79061909009009
+ ],
+ [
+ 139.24708389010988,
+ 35.79061909009009
+ ],
+ [
+ 139.24708389010988,
+ 35.79043890990991
+ ],
+ [
+ 139.2468641098901,
+ 35.79043890990991
+ ],
+ [
+ 139.2468641098901,
+ 35.79061909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SumidakuHikifuneBunkaCenter.2265.2",
+ "name": "墨田区曳舟文化センター前",
+ "latitude": 35.718529,
+ "longitude": 139.818378,
+ "polygon": [
+ [
+ 139.8182681098901,
+ 35.71861909009009
+ ],
+ [
+ 139.81848789010988,
+ 35.71861909009009
+ ],
+ [
+ 139.81848789010988,
+ 35.718438909909906
+ ],
+ [
+ 139.8182681098901,
+ 35.718438909909906
+ ],
+ [
+ 139.8182681098901,
+ 35.71861909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OshiageNichome.2266.1",
+ "name": "押上二丁目",
+ "latitude": 35.714982,
+ "longitude": 139.814454,
+ "polygon": [
+ [
+ 139.81434410989013,
+ 35.71507209009009
+ ],
+ [
+ 139.8145638901099,
+ 35.71507209009009
+ ],
+ [
+ 139.8145638901099,
+ 35.71489190990991
+ ],
+ [
+ 139.81434410989013,
+ 35.71489190990991
+ ],
+ [
+ 139.81434410989013,
+ 35.71507209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OshiageNichome.2266.2",
+ "name": "押上二丁目",
+ "latitude": 35.715529,
+ "longitude": 139.814926,
+ "polygon": [
+ [
+ 139.81481610989013,
+ 35.71561909009009
+ ],
+ [
+ 139.8150358901099,
+ 35.71561909009009
+ ],
+ [
+ 139.8150358901099,
+ 35.715438909909906
+ ],
+ [
+ 139.81481610989013,
+ 35.715438909909906
+ ],
+ [
+ 139.81481610989013,
+ 35.71561909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukojimaSanchome.2267.1",
+ "name": "向島三丁目",
+ "latitude": 35.71279,
+ "longitude": 139.811859,
+ "polygon": [
+ [
+ 139.81174910989012,
+ 35.71288009009009
+ ],
+ [
+ 139.81196889010988,
+ 35.71288009009009
+ ],
+ [
+ 139.81196889010988,
+ 35.71269990990991
+ ],
+ [
+ 139.81174910989012,
+ 35.71269990990991
+ ],
+ [
+ 139.81174910989012,
+ 35.71288009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MukojimaSanchome.2267.2",
+ "name": "向島三丁目",
+ "latitude": 35.712915,
+ "longitude": 139.811784,
+ "polygon": [
+ [
+ 139.8116741098901,
+ 35.71300509009009
+ ],
+ [
+ 139.81189389010987,
+ 35.71300509009009
+ ],
+ [
+ 139.81189389010987,
+ 35.71282490990991
+ ],
+ [
+ 139.8116741098901,
+ 35.71282490990991
+ ],
+ [
+ 139.8116741098901,
+ 35.71300509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaItchomeApato.2272.1",
+ "name": "小松川一丁目アパート前",
+ "latitude": 35.691376,
+ "longitude": 139.848664,
+ "polygon": [
+ [
+ 139.84855410989013,
+ 35.69146609009009
+ ],
+ [
+ 139.8487738901099,
+ 35.69146609009009
+ ],
+ [
+ 139.8487738901099,
+ 35.69128590990991
+ ],
+ [
+ 139.84855410989013,
+ 35.69128590990991
+ ],
+ [
+ 139.84855410989013,
+ 35.69146609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.WakasuGolfLinks.2268.1",
+ "name": "若洲ゴルフリンクス前",
+ "latitude": 35.629463,
+ "longitude": 139.835555,
+ "polygon": [
+ [
+ 139.83544510989012,
+ 35.62955309009009
+ ],
+ [
+ 139.83566489010988,
+ 35.62955309009009
+ ],
+ [
+ 139.83566489010988,
+ 35.62937290990991
+ ],
+ [
+ 139.83544510989012,
+ 35.62937290990991
+ ],
+ [
+ 139.83544510989012,
+ 35.62955309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.WakasuGolfLinks.2268.2",
+ "name": "若洲ゴルフリンクス前",
+ "latitude": 35.631335,
+ "longitude": 139.836319,
+ "polygon": [
+ [
+ 139.83620910989012,
+ 35.63142509009009
+ ],
+ [
+ 139.8364288901099,
+ 35.63142509009009
+ ],
+ [
+ 139.8364288901099,
+ 35.63124490990991
+ ],
+ [
+ 139.83620910989012,
+ 35.63124490990991
+ ],
+ [
+ 139.83620910989012,
+ 35.63142509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.WakasuCampJo.2269.1",
+ "name": "若洲キャンプ場前",
+ "latitude": 35.619529,
+ "longitude": 139.834562,
+ "polygon": [
+ [
+ 139.83445210989012,
+ 35.61961909009009
+ ],
+ [
+ 139.8346718901099,
+ 35.61961909009009
+ ],
+ [
+ 139.8346718901099,
+ 35.61943890990991
+ ],
+ [
+ 139.83445210989012,
+ 35.61943890990991
+ ],
+ [
+ 139.83445210989012,
+ 35.61961909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TennozuIsle.2271.1",
+ "name": "天王洲アイル",
+ "latitude": 35.623057,
+ "longitude": 139.750689,
+ "polygon": [
+ [
+ 139.7505791098901,
+ 35.62314709009009
+ ],
+ [
+ 139.75079889010988,
+ 35.62314709009009
+ ],
+ [
+ 139.75079889010988,
+ 35.62296690990991
+ ],
+ [
+ 139.7505791098901,
+ 35.62296690990991
+ ],
+ [
+ 139.7505791098901,
+ 35.62314709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TennozuIsle.2271.2",
+ "name": "天王洲アイル",
+ "latitude": 35.623187,
+ "longitude": 139.749985,
+ "polygon": [
+ [
+ 139.74987510989013,
+ 35.62327709009009
+ ],
+ [
+ 139.7500948901099,
+ 35.62327709009009
+ ],
+ [
+ 139.7500948901099,
+ 35.62309690990991
+ ],
+ [
+ 139.74987510989013,
+ 35.62309690990991
+ ],
+ [
+ 139.74987510989013,
+ 35.62327709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraFuto.2540.2",
+ "name": "芝浦埠頭",
+ "latitude": 35.639748,
+ "longitude": 139.756952,
+ "polygon": [
+ [
+ 139.75684210989013,
+ 35.63983809009009
+ ],
+ [
+ 139.7570618901099,
+ 35.63983809009009
+ ],
+ [
+ 139.7570618901099,
+ 35.63965790990991
+ ],
+ [
+ 139.75684210989013,
+ 35.63965790990991
+ ],
+ [
+ 139.75684210989013,
+ 35.63983809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaItchomeApato.2272.2",
+ "name": "小松川一丁目アパート前",
+ "latitude": 35.691935,
+ "longitude": 139.848525,
+ "polygon": [
+ [
+ 139.8484151098901,
+ 35.69202509009009
+ ],
+ [
+ 139.84863489010988,
+ 35.69202509009009
+ ],
+ [
+ 139.84863489010988,
+ 35.69184490990991
+ ],
+ [
+ 139.8484151098901,
+ 35.69184490990991
+ ],
+ [
+ 139.8484151098901,
+ 35.69202509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MutsumataRikkyo.2273.1",
+ "name": "六ツ又陸橋",
+ "latitude": 35.732529,
+ "longitude": 139.7187,
+ "polygon": [
+ [
+ 139.71859010989013,
+ 35.73261909009009
+ ],
+ [
+ 139.7188098901099,
+ 35.73261909009009
+ ],
+ [
+ 139.7188098901099,
+ 35.73243890990991
+ ],
+ [
+ 139.71859010989013,
+ 35.73243890990991
+ ],
+ [
+ 139.71859010989013,
+ 35.73261909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiKaikan.2274.1",
+ "name": "南葛西会館前",
+ "latitude": 35.646395,
+ "longitude": 139.875711,
+ "polygon": [
+ [
+ 139.8756011098901,
+ 35.64648509009009
+ ],
+ [
+ 139.87582089010988,
+ 35.64648509009009
+ ],
+ [
+ 139.87582089010988,
+ 35.64630490990991
+ ],
+ [
+ 139.8756011098901,
+ 35.64630490990991
+ ],
+ [
+ 139.8756011098901,
+ 35.64648509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TennozuUnga.2283.2",
+ "name": "天王洲運河",
+ "latitude": 35.627393,
+ "longitude": 139.74988,
+ "polygon": [
+ [
+ 139.7497701098901,
+ 35.62748309009009
+ ],
+ [
+ 139.74998989010987,
+ 35.62748309009009
+ ],
+ [
+ 139.74998989010987,
+ 35.62730290990991
+ ],
+ [
+ 139.7497701098901,
+ 35.62730290990991
+ ],
+ [
+ 139.7497701098901,
+ 35.62748309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiKaikan.2274.2",
+ "name": "南葛西会館前",
+ "latitude": 35.646393,
+ "longitude": 139.875827,
+ "polygon": [
+ [
+ 139.8757171098901,
+ 35.64648309009009
+ ],
+ [
+ 139.87593689010987,
+ 35.64648309009009
+ ],
+ [
+ 139.87593689010987,
+ 35.64630290990991
+ ],
+ [
+ 139.8757171098901,
+ 35.64630290990991
+ ],
+ [
+ 139.8757171098901,
+ 35.64648309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiDaisanShogakko.2275.1",
+ "name": "南葛西第三小学校前",
+ "latitude": 35.642442,
+ "longitude": 139.87134,
+ "polygon": [
+ [
+ 139.87123010989012,
+ 35.64253209009009
+ ],
+ [
+ 139.8714498901099,
+ 35.64253209009009
+ ],
+ [
+ 139.8714498901099,
+ 35.64235190990991
+ ],
+ [
+ 139.87123010989012,
+ 35.64235190990991
+ ],
+ [
+ 139.87123010989012,
+ 35.64253209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiDaisanShogakko.2275.2",
+ "name": "南葛西第三小学校前",
+ "latitude": 35.643103,
+ "longitude": 139.87105,
+ "polygon": [
+ [
+ 139.8709401098901,
+ 35.643193090090094
+ ],
+ [
+ 139.87115989010988,
+ 35.643193090090094
+ ],
+ [
+ 139.87115989010988,
+ 35.64301290990991
+ ],
+ [
+ 139.8709401098901,
+ 35.64301290990991
+ ],
+ [
+ 139.8709401098901,
+ 35.643193090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinonomeNichome.2276.1",
+ "name": "東雲二丁目",
+ "latitude": 35.642094,
+ "longitude": 139.801436,
+ "polygon": [
+ [
+ 139.8013261098901,
+ 35.64218409009009
+ ],
+ [
+ 139.80154589010988,
+ 35.64218409009009
+ ],
+ [
+ 139.80154589010988,
+ 35.64200390990991
+ ],
+ [
+ 139.8013261098901,
+ 35.64200390990991
+ ],
+ [
+ 139.8013261098901,
+ 35.64218409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TennozuUnga.2283.1",
+ "name": "天王洲運河",
+ "latitude": 35.626094,
+ "longitude": 139.750157,
+ "polygon": [
+ [
+ 139.75004710989012,
+ 35.62618409009009
+ ],
+ [
+ 139.75026689010988,
+ 35.62618409009009
+ ],
+ [
+ 139.75026689010988,
+ 35.62600390990991
+ ],
+ [
+ 139.75004710989012,
+ 35.62600390990991
+ ],
+ [
+ 139.75004710989012,
+ 35.62618409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Harumibashi.2288.1",
+ "name": "春海橋",
+ "latitude": 35.659121,
+ "longitude": 139.790654,
+ "polygon": [
+ [
+ 139.7905441098901,
+ 35.65921109009009
+ ],
+ [
+ 139.79076389010987,
+ 35.65921109009009
+ ],
+ [
+ 139.79076389010987,
+ 35.65903090990991
+ ],
+ [
+ 139.7905441098901,
+ 35.65903090990991
+ ],
+ [
+ 139.7905441098901,
+ 35.65921109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiyaRikkyo.2290.3",
+ "name": "神谷陸橋",
+ "latitude": 35.770763,
+ "longitude": 139.733988,
+ "polygon": [
+ [
+ 139.73387810989013,
+ 35.77085309009009
+ ],
+ [
+ 139.7340978901099,
+ 35.77085309009009
+ ],
+ [
+ 139.7340978901099,
+ 35.77067290990991
+ ],
+ [
+ 139.73387810989013,
+ 35.77067290990991
+ ],
+ [
+ 139.73387810989013,
+ 35.77085309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Harumibashi.2288.3",
+ "name": "春海橋",
+ "latitude": 35.658779,
+ "longitude": 139.790741,
+ "polygon": [
+ [
+ 139.7906311098901,
+ 35.65886909009009
+ ],
+ [
+ 139.79085089010988,
+ 35.65886909009009
+ ],
+ [
+ 139.79085089010988,
+ 35.65868890990991
+ ],
+ [
+ 139.7906311098901,
+ 35.65868890990991
+ ],
+ [
+ 139.7906311098901,
+ 35.65886909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaRinkaiYubinkyoku.2289.1",
+ "name": "江戸川臨海郵便局前",
+ "latitude": 35.645993,
+ "longitude": 139.869942,
+ "polygon": [
+ [
+ 139.86983210989013,
+ 35.64608309009009
+ ],
+ [
+ 139.8700518901099,
+ 35.64608309009009
+ ],
+ [
+ 139.8700518901099,
+ 35.64590290990991
+ ],
+ [
+ 139.86983210989013,
+ 35.64590290990991
+ ],
+ [
+ 139.86983210989013,
+ 35.64608309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaRinkaiYubinkyoku.2289.2",
+ "name": "江戸川臨海郵便局前",
+ "latitude": 35.646051,
+ "longitude": 139.868739,
+ "polygon": [
+ [
+ 139.86862910989012,
+ 35.64614109009009
+ ],
+ [
+ 139.8688488901099,
+ 35.64614109009009
+ ],
+ [
+ 139.8688488901099,
+ 35.64596090990991
+ ],
+ [
+ 139.86862910989012,
+ 35.64596090990991
+ ],
+ [
+ 139.86862910989012,
+ 35.64614109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaRinkaiYubinkyoku.2289.3",
+ "name": "江戸川臨海郵便局前",
+ "latitude": 35.645777,
+ "longitude": 139.869021,
+ "polygon": [
+ [
+ 139.86891110989012,
+ 35.64586709009009
+ ],
+ [
+ 139.8691308901099,
+ 35.64586709009009
+ ],
+ [
+ 139.8691308901099,
+ 35.64568690990991
+ ],
+ [
+ 139.86891110989012,
+ 35.64568690990991
+ ],
+ [
+ 139.86891110989012,
+ 35.64586709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawaRinkaiYubinkyoku.2289.4",
+ "name": "江戸川臨海郵便局前",
+ "latitude": 35.645746,
+ "longitude": 139.870117,
+ "polygon": [
+ [
+ 139.8700071098901,
+ 35.64583609009009
+ ],
+ [
+ 139.87022689010988,
+ 35.64583609009009
+ ],
+ [
+ 139.87022689010988,
+ 35.64565590990991
+ ],
+ [
+ 139.8700071098901,
+ 35.64565590990991
+ ],
+ [
+ 139.8700071098901,
+ 35.64583609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KamiyaRikkyo.2290.2",
+ "name": "神谷陸橋",
+ "latitude": 35.771333,
+ "longitude": 139.733503,
+ "polygon": [
+ [
+ 139.73339310989013,
+ 35.77142309009009
+ ],
+ [
+ 139.7336128901099,
+ 35.77142309009009
+ ],
+ [
+ 139.7336128901099,
+ 35.77124290990991
+ ],
+ [
+ 139.73339310989013,
+ 35.77124290990991
+ ],
+ [
+ 139.73339310989013,
+ 35.77142309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaShakoIriguchi.2294.1",
+ "name": "北車庫入口",
+ "latitude": 35.775058,
+ "longitude": 139.733336,
+ "polygon": [
+ [
+ 139.73322610989013,
+ 35.77514809009009
+ ],
+ [
+ 139.7334458901099,
+ 35.77514809009009
+ ],
+ [
+ 139.7334458901099,
+ 35.77496790990991
+ ],
+ [
+ 139.73322610989013,
+ 35.77496790990991
+ ],
+ [
+ 139.73322610989013,
+ 35.77514809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoNanachome.2298.1",
+ "name": "東陽七丁目",
+ "latitude": 35.675758,
+ "longitude": 139.818296,
+ "polygon": [
+ [
+ 139.81818610989012,
+ 35.67584809009009
+ ],
+ [
+ 139.8184058901099,
+ 35.67584809009009
+ ],
+ [
+ 139.8184058901099,
+ 35.67566790990991
+ ],
+ [
+ 139.81818610989012,
+ 35.67566790990991
+ ],
+ [
+ 139.81818610989012,
+ 35.67584809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoNanachome.2298.2",
+ "name": "東陽七丁目",
+ "latitude": 35.675972,
+ "longitude": 139.819372,
+ "polygon": [
+ [
+ 139.8192621098901,
+ 35.67606209009009
+ ],
+ [
+ 139.81948189010987,
+ 35.67606209009009
+ ],
+ [
+ 139.81948189010987,
+ 35.67588190990991
+ ],
+ [
+ 139.8192621098901,
+ 35.67588190990991
+ ],
+ [
+ 139.8192621098901,
+ 35.67606209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.WakasuChuo.2309.1",
+ "name": "若洲中央",
+ "latitude": 35.627524,
+ "longitude": 139.831042,
+ "polygon": [
+ [
+ 139.8309321098901,
+ 35.62761409009009
+ ],
+ [
+ 139.83115189010988,
+ 35.62761409009009
+ ],
+ [
+ 139.83115189010988,
+ 35.62743390990991
+ ],
+ [
+ 139.8309321098901,
+ 35.62743390990991
+ ],
+ [
+ 139.8309321098901,
+ 35.62761409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RiverCityNijuichi.2305.1",
+ "name": "リバーシティ21",
+ "latitude": 35.669007,
+ "longitude": 139.785027,
+ "polygon": [
+ [
+ 139.78491710989013,
+ 35.66909709009009
+ ],
+ [
+ 139.7851368901099,
+ 35.66909709009009
+ ],
+ [
+ 139.7851368901099,
+ 35.66891690990991
+ ],
+ [
+ 139.78491710989013,
+ 35.66891690990991
+ ],
+ [
+ 139.78491710989013,
+ 35.66909709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RiverCityNijuichi.2305.2",
+ "name": "リバーシティ21",
+ "latitude": 35.668495,
+ "longitude": 139.785346,
+ "polygon": [
+ [
+ 139.78523610989012,
+ 35.66858509009009
+ ],
+ [
+ 139.7854558901099,
+ 35.66858509009009
+ ],
+ [
+ 139.7854558901099,
+ 35.66840490990991
+ ],
+ [
+ 139.78523610989012,
+ 35.66840490990991
+ ],
+ [
+ 139.78523610989012,
+ 35.66858509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukudaNichome.2306.1",
+ "name": "佃二丁目",
+ "latitude": 35.66738,
+ "longitude": 139.785879,
+ "polygon": [
+ [
+ 139.7857691098901,
+ 35.66747009009009
+ ],
+ [
+ 139.78598889010988,
+ 35.66747009009009
+ ],
+ [
+ 139.78598889010988,
+ 35.66728990990991
+ ],
+ [
+ 139.7857691098901,
+ 35.66728990990991
+ ],
+ [
+ 139.7857691098901,
+ 35.66747009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TsukudaNichome.2306.2",
+ "name": "佃二丁目",
+ "latitude": 35.667456,
+ "longitude": 139.786046,
+ "polygon": [
+ [
+ 139.78593610989012,
+ 35.66754609009009
+ ],
+ [
+ 139.78615589010988,
+ 35.66754609009009
+ ],
+ [
+ 139.78615589010988,
+ 35.66736590990991
+ ],
+ [
+ 139.78593610989012,
+ 35.66736590990991
+ ],
+ [
+ 139.78593610989012,
+ 35.66754609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChassisSeirijo.2308.1",
+ "name": "シャシー整理場前",
+ "latitude": 35.628827,
+ "longitude": 139.832366,
+ "polygon": [
+ [
+ 139.83225610989012,
+ 35.62891709009009
+ ],
+ [
+ 139.8324758901099,
+ 35.62891709009009
+ ],
+ [
+ 139.8324758901099,
+ 35.62873690990991
+ ],
+ [
+ 139.83225610989012,
+ 35.62873690990991
+ ],
+ [
+ 139.83225610989012,
+ 35.62891709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChassisSeirijo.2308.2",
+ "name": "シャシー整理場前",
+ "latitude": 35.62863,
+ "longitude": 139.832514,
+ "polygon": [
+ [
+ 139.83240410989012,
+ 35.62872009009009
+ ],
+ [
+ 139.8326238901099,
+ 35.62872009009009
+ ],
+ [
+ 139.8326238901099,
+ 35.62853990990991
+ ],
+ [
+ 139.83240410989012,
+ 35.62853990990991
+ ],
+ [
+ 139.83240410989012,
+ 35.62872009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.WakasuChuo.2309.2",
+ "name": "若洲中央",
+ "latitude": 35.627472,
+ "longitude": 139.8308,
+ "polygon": [
+ [
+ 139.83069010989013,
+ 35.62756209009009
+ ],
+ [
+ 139.8309098901099,
+ 35.62756209009009
+ ],
+ [
+ 139.8309098901099,
+ 35.62738190990991
+ ],
+ [
+ 139.83069010989013,
+ 35.62738190990991
+ ],
+ [
+ 139.83069010989013,
+ 35.62756209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoSokoKumiai.2310.1",
+ "name": "江東倉庫組合前",
+ "latitude": 35.626297,
+ "longitude": 139.832387,
+ "polygon": [
+ [
+ 139.83227710989013,
+ 35.62638709009009
+ ],
+ [
+ 139.8324968901099,
+ 35.62638709009009
+ ],
+ [
+ 139.8324968901099,
+ 35.62620690990991
+ ],
+ [
+ 139.83227710989013,
+ 35.62620690990991
+ ],
+ [
+ 139.83227710989013,
+ 35.62638709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoSokoKumiai.2310.2",
+ "name": "江東倉庫組合前",
+ "latitude": 35.626484,
+ "longitude": 139.832217,
+ "polygon": [
+ [
+ 139.83210710989013,
+ 35.62657409009009
+ ],
+ [
+ 139.8323268901099,
+ 35.62657409009009
+ ],
+ [
+ 139.8323268901099,
+ 35.62639390990991
+ ],
+ [
+ 139.83210710989013,
+ 35.62639390990991
+ ],
+ [
+ 139.83210710989013,
+ 35.62657409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoSokoKaikan.2311.1",
+ "name": "江東倉庫会館前",
+ "latitude": 35.624922,
+ "longitude": 139.833547,
+ "polygon": [
+ [
+ 139.83343710989013,
+ 35.62501209009009
+ ],
+ [
+ 139.8336568901099,
+ 35.62501209009009
+ ],
+ [
+ 139.8336568901099,
+ 35.62483190990991
+ ],
+ [
+ 139.83343710989013,
+ 35.62483190990991
+ ],
+ [
+ 139.83343710989013,
+ 35.62501209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoSokoKaikan.2311.2",
+ "name": "江東倉庫会館前",
+ "latitude": 35.62472,
+ "longitude": 139.833526,
+ "polygon": [
+ [
+ 139.83341610989012,
+ 35.624810090090094
+ ],
+ [
+ 139.8336358901099,
+ 35.624810090090094
+ ],
+ [
+ 139.8336358901099,
+ 35.62462990990991
+ ],
+ [
+ 139.83341610989012,
+ 35.62462990990991
+ ],
+ [
+ 139.83341610989012,
+ 35.624810090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinTsukishimaKoen.2312.1",
+ "name": "新月島公園前",
+ "latitude": 35.659457,
+ "longitude": 139.78827,
+ "polygon": [
+ [
+ 139.78816010989013,
+ 35.65954709009009
+ ],
+ [
+ 139.7883798901099,
+ 35.65954709009009
+ ],
+ [
+ 139.7883798901099,
+ 35.65936690990991
+ ],
+ [
+ 139.78816010989013,
+ 35.65936690990991
+ ],
+ [
+ 139.78816010989013,
+ 35.65954709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinTsukishimaKoen.2312.2",
+ "name": "新月島公園前",
+ "latitude": 35.660093,
+ "longitude": 139.787919,
+ "polygon": [
+ [
+ 139.7878091098901,
+ 35.660183090090094
+ ],
+ [
+ 139.78802889010987,
+ 35.660183090090094
+ ],
+ [
+ 139.78802889010987,
+ 35.66000290990991
+ ],
+ [
+ 139.7878091098901,
+ 35.66000290990991
+ ],
+ [
+ 139.7878091098901,
+ 35.660183090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraItchome.2319.1",
+ "name": "芝浦一丁目",
+ "latitude": 35.645609,
+ "longitude": 139.752459,
+ "polygon": [
+ [
+ 139.7523491098901,
+ 35.64569909009009
+ ],
+ [
+ 139.75256889010987,
+ 35.64569909009009
+ ],
+ [
+ 139.75256889010987,
+ 35.64551890990991
+ ],
+ [
+ 139.7523491098901,
+ 35.64551890990991
+ ],
+ [
+ 139.7523491098901,
+ 35.64569909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraItchome.2319.2",
+ "name": "芝浦一丁目",
+ "latitude": 35.645802,
+ "longitude": 139.753357,
+ "polygon": [
+ [
+ 139.7532471098901,
+ 35.64589209009009
+ ],
+ [
+ 139.75346689010988,
+ 35.64589209009009
+ ],
+ [
+ 139.75346689010988,
+ 35.64571190990991
+ ],
+ [
+ 139.7532471098901,
+ 35.64571190990991
+ ],
+ [
+ 139.7532471098901,
+ 35.64589209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Manaitabashi.2320.1",
+ "name": "まないた橋",
+ "latitude": 35.696158,
+ "longitude": 139.75296,
+ "polygon": [
+ [
+ 139.75285010989012,
+ 35.69624809009009
+ ],
+ [
+ 139.75306989010988,
+ 35.69624809009009
+ ],
+ [
+ 139.75306989010988,
+ 35.69606790990991
+ ],
+ [
+ 139.75285010989012,
+ 35.69606790990991
+ ],
+ [
+ 139.75285010989012,
+ 35.69624809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokusaiTenjijoStation.2323.1",
+ "name": "国際展示場駅前",
+ "latitude": 35.633634,
+ "longitude": 139.791573,
+ "polygon": [
+ [
+ 139.79146310989012,
+ 35.63372409009009
+ ],
+ [
+ 139.79168289010988,
+ 35.63372409009009
+ ],
+ [
+ 139.79168289010988,
+ 35.63354390990991
+ ],
+ [
+ 139.79146310989012,
+ 35.63354390990991
+ ],
+ [
+ 139.79146310989012,
+ 35.63372409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoBigSightStation.2325.2",
+ "name": "東京ビッグサイト駅前",
+ "latitude": 35.630019,
+ "longitude": 139.791363,
+ "polygon": [
+ [
+ 139.7912531098901,
+ 35.63010909009009
+ ],
+ [
+ 139.79147289010987,
+ 35.63010909009009
+ ],
+ [
+ 139.79147289010987,
+ 35.62992890990991
+ ],
+ [
+ 139.7912531098901,
+ 35.62992890990991
+ ],
+ [
+ 139.7912531098901,
+ 35.63010909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokusaiTenjijoStation.2323.2",
+ "name": "国際展示場駅前",
+ "latitude": 35.633715,
+ "longitude": 139.791484,
+ "polygon": [
+ [
+ 139.7913741098901,
+ 35.63380509009009
+ ],
+ [
+ 139.79159389010988,
+ 35.63380509009009
+ ],
+ [
+ 139.79159389010988,
+ 35.63362490990991
+ ],
+ [
+ 139.7913741098901,
+ 35.63362490990991
+ ],
+ [
+ 139.7913741098901,
+ 35.63380509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoBigSight.2324.1",
+ "name": "東京ビッグサイト",
+ "latitude": 35.630234,
+ "longitude": 139.793056,
+ "polygon": [
+ [
+ 139.79294610989012,
+ 35.63032409009009
+ ],
+ [
+ 139.7931658901099,
+ 35.63032409009009
+ ],
+ [
+ 139.7931658901099,
+ 35.63014390990991
+ ],
+ [
+ 139.79294610989012,
+ 35.63014390990991
+ ],
+ [
+ 139.79294610989012,
+ 35.63032409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoBigSight.2324.3",
+ "name": "東京ビッグサイト",
+ "latitude": 35.629883,
+ "longitude": 139.793027,
+ "polygon": [
+ [
+ 139.7929171098901,
+ 35.62997309009009
+ ],
+ [
+ 139.79313689010988,
+ 35.62997309009009
+ ],
+ [
+ 139.79313689010988,
+ 35.62979290990991
+ ],
+ [
+ 139.7929171098901,
+ 35.62979290990991
+ ],
+ [
+ 139.7929171098901,
+ 35.62997309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoBigSight.2324.4",
+ "name": "東京ビッグサイト",
+ "latitude": 35.62986,
+ "longitude": 139.793248,
+ "polygon": [
+ [
+ 139.79313810989012,
+ 35.62995009009009
+ ],
+ [
+ 139.7933578901099,
+ 35.62995009009009
+ ],
+ [
+ 139.7933578901099,
+ 35.62976990990991
+ ],
+ [
+ 139.79313810989012,
+ 35.62976990990991
+ ],
+ [
+ 139.79313810989012,
+ 35.62995009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoBigSight.2324.5",
+ "name": "東京ビッグサイト",
+ "latitude": 35.630141,
+ "longitude": 139.793139,
+ "polygon": [
+ [
+ 139.7930291098901,
+ 35.63023109009009
+ ],
+ [
+ 139.79324889010988,
+ 35.63023109009009
+ ],
+ [
+ 139.79324889010988,
+ 35.63005090990991
+ ],
+ [
+ 139.7930291098901,
+ 35.63005090990991
+ ],
+ [
+ 139.7930291098901,
+ 35.63023109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoBigSightStation.2325.1",
+ "name": "東京ビッグサイト駅前",
+ "latitude": 35.630418,
+ "longitude": 139.79141,
+ "polygon": [
+ [
+ 139.79130010989013,
+ 35.63050809009009
+ ],
+ [
+ 139.7915198901099,
+ 35.63050809009009
+ ],
+ [
+ 139.7915198901099,
+ 35.63032790990991
+ ],
+ [
+ 139.79130010989013,
+ 35.63032790990991
+ ],
+ [
+ 139.79130010989013,
+ 35.63050809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTeleportStation.2326.4",
+ "name": "東京テレポート駅前",
+ "latitude": 35.627213,
+ "longitude": 139.779062,
+ "polygon": [
+ [
+ 139.77895210989013,
+ 35.62730309009009
+ ],
+ [
+ 139.7791718901099,
+ 35.62730309009009
+ ],
+ [
+ 139.7791718901099,
+ 35.62712290990991
+ ],
+ [
+ 139.77895210989013,
+ 35.62712290990991
+ ],
+ [
+ 139.77895210989013,
+ 35.62730309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiKuyakusho.2330.3",
+ "name": "足立区役所",
+ "latitude": 35.775082,
+ "longitude": 139.803605,
+ "polygon": [
+ [
+ 139.80349510989012,
+ 35.77517209009009
+ ],
+ [
+ 139.8037148901099,
+ 35.77517209009009
+ ],
+ [
+ 139.8037148901099,
+ 35.77499190990991
+ ],
+ [
+ 139.80349510989012,
+ 35.77499190990991
+ ],
+ [
+ 139.80349510989012,
+ 35.77517209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTeleportStation.2326.5",
+ "name": "東京テレポート駅前",
+ "latitude": 35.627171,
+ "longitude": 139.779406,
+ "polygon": [
+ [
+ 139.7792961098901,
+ 35.62726109009009
+ ],
+ [
+ 139.77951589010988,
+ 35.62726109009009
+ ],
+ [
+ 139.77951589010988,
+ 35.62708090990991
+ ],
+ [
+ 139.7792961098901,
+ 35.62708090990991
+ ],
+ [
+ 139.7792961098901,
+ 35.62726109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTeleportStation.2326.6",
+ "name": "東京テレポート駅前",
+ "latitude": 35.627045,
+ "longitude": 139.779637,
+ "polygon": [
+ [
+ 139.77952710989013,
+ 35.62713509009009
+ ],
+ [
+ 139.7797468901099,
+ 35.62713509009009
+ ],
+ [
+ 139.7797468901099,
+ 35.62695490990991
+ ],
+ [
+ 139.77952710989013,
+ 35.62695490990991
+ ],
+ [
+ 139.77952710989013,
+ 35.62713509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTeleportStation.2326.7",
+ "name": "東京テレポート駅前",
+ "latitude": 35.626795,
+ "longitude": 139.7785,
+ "polygon": [
+ [
+ 139.77839010989013,
+ 35.62688509009009
+ ],
+ [
+ 139.7786098901099,
+ 35.62688509009009
+ ],
+ [
+ 139.7786098901099,
+ 35.62670490990991
+ ],
+ [
+ 139.77839010989013,
+ 35.62670490990991
+ ],
+ [
+ 139.77839010989013,
+ 35.62688509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoTeleportStation.2326.8",
+ "name": "東京テレポート駅前",
+ "latitude": 35.626914,
+ "longitude": 139.779771,
+ "polygon": [
+ [
+ 139.77966110989013,
+ 35.62700409009009
+ ],
+ [
+ 139.7798808901099,
+ 35.62700409009009
+ ],
+ [
+ 139.7798808901099,
+ 35.62682390990991
+ ],
+ [
+ 139.77966110989013,
+ 35.62682390990991
+ ],
+ [
+ 139.77966110989013,
+ 35.62700409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TelecomCenterStation.2327.1",
+ "name": "テレコムセンター駅前",
+ "latitude": 35.617403,
+ "longitude": 139.778878,
+ "polygon": [
+ [
+ 139.7787681098901,
+ 35.61749309009009
+ ],
+ [
+ 139.77898789010987,
+ 35.61749309009009
+ ],
+ [
+ 139.77898789010987,
+ 35.61731290990991
+ ],
+ [
+ 139.7787681098901,
+ 35.61731290990991
+ ],
+ [
+ 139.7787681098901,
+ 35.61749309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TennozuKoen.2335.1",
+ "name": "天王洲公園前",
+ "latitude": 35.619796,
+ "longitude": 139.750722,
+ "polygon": [
+ [
+ 139.7506121098901,
+ 35.61988609009009
+ ],
+ [
+ 139.75083189010988,
+ 35.61988609009009
+ ],
+ [
+ 139.75083189010988,
+ 35.61970590990991
+ ],
+ [
+ 139.7506121098901,
+ 35.61970590990991
+ ],
+ [
+ 139.7506121098901,
+ 35.61988609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TelecomCenterStation.2327.2",
+ "name": "テレコムセンター駅前",
+ "latitude": 35.617405,
+ "longitude": 139.779545,
+ "polygon": [
+ [
+ 139.77943510989013,
+ 35.61749509009009
+ ],
+ [
+ 139.7796548901099,
+ 35.61749509009009
+ ],
+ [
+ 139.7796548901099,
+ 35.61731490990991
+ ],
+ [
+ 139.77943510989013,
+ 35.61731490990991
+ ],
+ [
+ 139.77943510989013,
+ 35.61749509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiokazeKoenIriguchi.2328.1",
+ "name": "潮風公園入口",
+ "latitude": 35.624391,
+ "longitude": 139.770533,
+ "polygon": [
+ [
+ 139.77042310989012,
+ 35.62448109009009
+ ],
+ [
+ 139.77064289010988,
+ 35.62448109009009
+ ],
+ [
+ 139.77064289010988,
+ 35.62430090990991
+ ],
+ [
+ 139.77042310989012,
+ 35.62430090990991
+ ],
+ [
+ 139.77042310989012,
+ 35.62448109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaibaStation.2329.1",
+ "name": "台場駅前",
+ "latitude": 35.626008,
+ "longitude": 139.771384,
+ "polygon": [
+ [
+ 139.77127410989013,
+ 35.62609809009009
+ ],
+ [
+ 139.7714938901099,
+ 35.62609809009009
+ ],
+ [
+ 139.7714938901099,
+ 35.62591790990991
+ ],
+ [
+ 139.77127410989013,
+ 35.62591790990991
+ ],
+ [
+ 139.77127410989013,
+ 35.62609809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaibaStation.2329.2",
+ "name": "台場駅前",
+ "latitude": 35.625783,
+ "longitude": 139.771503,
+ "polygon": [
+ [
+ 139.7713931098901,
+ 35.62587309009009
+ ],
+ [
+ 139.77161289010988,
+ 35.62587309009009
+ ],
+ [
+ 139.77161289010988,
+ 35.62569290990991
+ ],
+ [
+ 139.7713931098901,
+ 35.62569290990991
+ ],
+ [
+ 139.7713931098901,
+ 35.62587309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiKuyakusho.2330.2",
+ "name": "足立区役所",
+ "latitude": 35.775389,
+ "longitude": 139.803766,
+ "polygon": [
+ [
+ 139.8036561098901,
+ 35.77547909009009
+ ],
+ [
+ 139.80387589010988,
+ 35.77547909009009
+ ],
+ [
+ 139.80387589010988,
+ 35.77529890990991
+ ],
+ [
+ 139.8036561098901,
+ 35.77529890990991
+ ],
+ [
+ 139.8036561098901,
+ 35.77547909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiKuyakusho.2330.4",
+ "name": "足立区役所",
+ "latitude": 35.775146,
+ "longitude": 139.804059,
+ "polygon": [
+ [
+ 139.8039491098901,
+ 35.77523609009009
+ ],
+ [
+ 139.80416889010988,
+ 35.77523609009009
+ ],
+ [
+ 139.80416889010988,
+ 35.77505590990991
+ ],
+ [
+ 139.8039491098901,
+ 35.77505590990991
+ ],
+ [
+ 139.8039491098901,
+ 35.77523609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MomijigawaKoko.2331.1",
+ "name": "紅葉川高校前",
+ "latitude": 35.6532,
+ "longitude": 139.859148,
+ "polygon": [
+ [
+ 139.85903810989012,
+ 35.65329009009009
+ ],
+ [
+ 139.8592578901099,
+ 35.65329009009009
+ ],
+ [
+ 139.8592578901099,
+ 35.65310990990991
+ ],
+ [
+ 139.85903810989012,
+ 35.65310990990991
+ ],
+ [
+ 139.85903810989012,
+ 35.65329009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MomijigawaKoko.2331.2",
+ "name": "紅葉川高校前",
+ "latitude": 35.653217,
+ "longitude": 139.859137,
+ "polygon": [
+ [
+ 139.85902710989012,
+ 35.65330709009009
+ ],
+ [
+ 139.8592468901099,
+ 35.65330709009009
+ ],
+ [
+ 139.8592468901099,
+ 35.65312690990991
+ ],
+ [
+ 139.85902710989012,
+ 35.65312690990991
+ ],
+ [
+ 139.85902710989012,
+ 35.65330709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeCleanCenter.2333.1",
+ "name": "有明クリーンセンター前",
+ "latitude": 35.63288,
+ "longitude": 139.785634,
+ "polygon": [
+ [
+ 139.7855241098901,
+ 35.63297009009009
+ ],
+ [
+ 139.78574389010987,
+ 35.63297009009009
+ ],
+ [
+ 139.78574389010987,
+ 35.63278990990991
+ ],
+ [
+ 139.7855241098901,
+ 35.63278990990991
+ ],
+ [
+ 139.7855241098901,
+ 35.63297009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TennozuIsleStation.2334.1",
+ "name": "りんかい線天王洲アイル駅前",
+ "latitude": 35.620148,
+ "longitude": 139.750961,
+ "polygon": [
+ [
+ 139.7508511098901,
+ 35.62023809009009
+ ],
+ [
+ 139.75107089010987,
+ 35.62023809009009
+ ],
+ [
+ 139.75107089010987,
+ 35.62005790990991
+ ],
+ [
+ 139.7508511098901,
+ 35.62005790990991
+ ],
+ [
+ 139.7508511098901,
+ 35.62023809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ebisubashi.2339.1",
+ "name": "恵比寿橋",
+ "latitude": 35.648202,
+ "longitude": 139.714688,
+ "polygon": [
+ [
+ 139.7145781098901,
+ 35.64829209009009
+ ],
+ [
+ 139.71479789010988,
+ 35.64829209009009
+ ],
+ [
+ 139.71479789010988,
+ 35.64811190990991
+ ],
+ [
+ 139.7145781098901,
+ 35.64811190990991
+ ],
+ [
+ 139.7145781098901,
+ 35.64829209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Ebisubashi.2339.2",
+ "name": "恵比寿橋",
+ "latitude": 35.648544,
+ "longitude": 139.715668,
+ "polygon": [
+ [
+ 139.7155581098901,
+ 35.64863409009009
+ ],
+ [
+ 139.71577789010988,
+ 35.64863409009009
+ ],
+ [
+ 139.71577789010988,
+ 35.64845390990991
+ ],
+ [
+ 139.7155581098901,
+ 35.64845390990991
+ ],
+ [
+ 139.7155581098901,
+ 35.64863409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaShobosho.2341.1",
+ "name": "小平消防署前",
+ "latitude": 35.730613,
+ "longitude": 139.478972,
+ "polygon": [
+ [
+ 139.47886210989012,
+ 35.73070309009009
+ ],
+ [
+ 139.47908189010988,
+ 35.73070309009009
+ ],
+ [
+ 139.47908189010988,
+ 35.73052290990991
+ ],
+ [
+ 139.47886210989012,
+ 35.73052290990991
+ ],
+ [
+ 139.47886210989012,
+ 35.73070309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KodairaShobosho.2341.2",
+ "name": "小平消防署前",
+ "latitude": 35.730505,
+ "longitude": 139.478968,
+ "polygon": [
+ [
+ 139.47885810989013,
+ 35.73059509009009
+ ],
+ [
+ 139.4790778901099,
+ 35.73059509009009
+ ],
+ [
+ 139.4790778901099,
+ 35.73041490990991
+ ],
+ [
+ 139.47885810989013,
+ 35.73041490990991
+ ],
+ [
+ 139.47885810989013,
+ 35.73059509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mitsuhashi.2342.1",
+ "name": "三ツ橋",
+ "latitude": 35.756767,
+ "longitude": 139.400794,
+ "polygon": [
+ [
+ 139.4006841098901,
+ 35.756857090090094
+ ],
+ [
+ 139.40090389010987,
+ 35.756857090090094
+ ],
+ [
+ 139.40090389010987,
+ 35.75667690990991
+ ],
+ [
+ 139.4006841098901,
+ 35.75667690990991
+ ],
+ [
+ 139.4006841098901,
+ 35.756857090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Mitsuhashi.2342.2",
+ "name": "三ツ橋",
+ "latitude": 35.756897,
+ "longitude": 139.400984,
+ "polygon": [
+ [
+ 139.4008741098901,
+ 35.75698709009009
+ ],
+ [
+ 139.40109389010988,
+ 35.75698709009009
+ ],
+ [
+ 139.40109389010988,
+ 35.75680690990991
+ ],
+ [
+ 139.4008741098901,
+ 35.75680690990991
+ ],
+ [
+ 139.4008741098901,
+ 35.75698709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Chigase.2343.1",
+ "name": "千ヶ瀬",
+ "latitude": 35.78552,
+ "longitude": 139.264994,
+ "polygon": [
+ [
+ 139.26488410989012,
+ 35.78561009009009
+ ],
+ [
+ 139.26510389010988,
+ 35.78561009009009
+ ],
+ [
+ 139.26510389010988,
+ 35.78542990990991
+ ],
+ [
+ 139.26488410989012,
+ 35.78542990990991
+ ],
+ [
+ 139.26488410989012,
+ 35.78561009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Chigase.2343.2",
+ "name": "千ヶ瀬",
+ "latitude": 35.785451,
+ "longitude": 139.265168,
+ "polygon": [
+ [
+ 139.2650581098901,
+ 35.78554109009009
+ ],
+ [
+ 139.26527789010987,
+ 35.78554109009009
+ ],
+ [
+ 139.26527789010987,
+ 35.78536090990991
+ ],
+ [
+ 139.2650581098901,
+ 35.78536090990991
+ ],
+ [
+ 139.2650581098901,
+ 35.78554109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiYonchome.2436.2",
+ "name": "南葛西四丁目",
+ "latitude": 35.651799,
+ "longitude": 139.874643,
+ "polygon": [
+ [
+ 139.8745331098901,
+ 35.65188909009009
+ ],
+ [
+ 139.87475289010987,
+ 35.65188909009009
+ ],
+ [
+ 139.87475289010987,
+ 35.65170890990991
+ ],
+ [
+ 139.8745331098901,
+ 35.65170890990991
+ ],
+ [
+ 139.8745331098901,
+ 35.65188909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukiageChugakkoIriguchi.2344.1",
+ "name": "吹上中学校入口",
+ "latitude": 35.798825,
+ "longitude": 139.283251,
+ "polygon": [
+ [
+ 139.28314110989012,
+ 35.79891509009009
+ ],
+ [
+ 139.2833608901099,
+ 35.79891509009009
+ ],
+ [
+ 139.2833608901099,
+ 35.79873490990991
+ ],
+ [
+ 139.28314110989012,
+ 35.79873490990991
+ ],
+ [
+ 139.28314110989012,
+ 35.79891509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukiageChugakkoIriguchi.2344.2",
+ "name": "吹上中学校入口",
+ "latitude": 35.798851,
+ "longitude": 139.283962,
+ "polygon": [
+ [
+ 139.28385210989012,
+ 35.79894109009009
+ ],
+ [
+ 139.28407189010989,
+ 35.79894109009009
+ ],
+ [
+ 139.28407189010989,
+ 35.79876090990991
+ ],
+ [
+ 139.28385210989012,
+ 35.79876090990991
+ ],
+ [
+ 139.28385210989012,
+ 35.79894109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamaKoko.2375.2",
+ "name": "多摩高校前",
+ "latitude": 35.790475,
+ "longitude": 139.247396,
+ "polygon": [
+ [
+ 139.24728610989013,
+ 35.79056509009009
+ ],
+ [
+ 139.2475058901099,
+ 35.79056509009009
+ ],
+ [
+ 139.2475058901099,
+ 35.79038490990991
+ ],
+ [
+ 139.24728610989013,
+ 35.79038490990991
+ ],
+ [
+ 139.24728610989013,
+ 35.79056509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.YugichoSanchome.2345.2",
+ "name": "柚木町三丁目",
+ "latitude": 35.803516,
+ "longitude": 139.207156,
+ "polygon": [
+ [
+ 139.20704610989011,
+ 35.80360609009009
+ ],
+ [
+ 139.20726589010988,
+ 35.80360609009009
+ ],
+ [
+ 139.20726589010988,
+ 35.80342590990991
+ ],
+ [
+ 139.20704610989011,
+ 35.80342590990991
+ ],
+ [
+ 139.20704610989011,
+ 35.80360609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FujiTerebi.2346.1",
+ "name": "フジテレビ前",
+ "latitude": 35.627785,
+ "longitude": 139.774644,
+ "polygon": [
+ [
+ 139.7745341098901,
+ 35.62787509009009
+ ],
+ [
+ 139.77475389010988,
+ 35.62787509009009
+ ],
+ [
+ 139.77475389010988,
+ 35.62769490990991
+ ],
+ [
+ 139.7745341098901,
+ 35.62769490990991
+ ],
+ [
+ 139.7745341098901,
+ 35.62787509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FujiTerebi.2346.2",
+ "name": "フジテレビ前",
+ "latitude": 35.627674,
+ "longitude": 139.774979,
+ "polygon": [
+ [
+ 139.77486910989012,
+ 35.62776409009009
+ ],
+ [
+ 139.77508889010988,
+ 35.62776409009009
+ ],
+ [
+ 139.77508889010988,
+ 35.62758390990991
+ ],
+ [
+ 139.77486910989012,
+ 35.62758390990991
+ ],
+ [
+ 139.77486910989012,
+ 35.62776409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaFutobashi.2353.1",
+ "name": "品川ふ頭橋",
+ "latitude": 35.622297,
+ "longitude": 139.753716,
+ "polygon": [
+ [
+ 139.75360610989011,
+ 35.62238709009009
+ ],
+ [
+ 139.75382589010988,
+ 35.62238709009009
+ ],
+ [
+ 139.75382589010988,
+ 35.62220690990991
+ ],
+ [
+ 139.75360610989011,
+ 35.62220690990991
+ ],
+ [
+ 139.75360610989011,
+ 35.62238709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaimonShiminCenter.2358.1",
+ "name": "大門市民センター前",
+ "latitude": 35.79529,
+ "longitude": 139.291131,
+ "polygon": [
+ [
+ 139.29102110989012,
+ 35.79538009009009
+ ],
+ [
+ 139.2912408901099,
+ 35.79538009009009
+ ],
+ [
+ 139.2912408901099,
+ 35.79519990990991
+ ],
+ [
+ 139.29102110989012,
+ 35.79519990990991
+ ],
+ [
+ 139.29102110989012,
+ 35.79538009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaimonShiminCenter.2358.2",
+ "name": "大門市民センター前",
+ "latitude": 35.795354,
+ "longitude": 139.290863,
+ "polygon": [
+ [
+ 139.29075310989012,
+ 35.79544409009009
+ ],
+ [
+ 139.29097289010988,
+ 35.79544409009009
+ ],
+ [
+ 139.29097289010988,
+ 35.79526390990991
+ ],
+ [
+ 139.29075310989012,
+ 35.79526390990991
+ ],
+ [
+ 139.29075310989012,
+ 35.79544409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeStationKitaguchi.2359.1",
+ "name": "東青梅駅北口",
+ "latitude": 35.79099,
+ "longitude": 139.271896,
+ "polygon": [
+ [
+ 139.27178610989012,
+ 35.79108009009009
+ ],
+ [
+ 139.27200589010988,
+ 35.79108009009009
+ ],
+ [
+ 139.27200589010988,
+ 35.79089990990991
+ ],
+ [
+ 139.27178610989012,
+ 35.79089990990991
+ ],
+ [
+ 139.27178610989012,
+ 35.79108009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeStationKitaguchi.2359.2",
+ "name": "東青梅駅北口",
+ "latitude": 35.790888,
+ "longitude": 139.271968,
+ "polygon": [
+ [
+ 139.2718581098901,
+ 35.79097809009009
+ ],
+ [
+ 139.27207789010987,
+ 35.79097809009009
+ ],
+ [
+ 139.27207789010987,
+ 35.79079790990991
+ ],
+ [
+ 139.2718581098901,
+ 35.79079790990991
+ ],
+ [
+ 139.2718581098901,
+ 35.79097809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtakibashiShako.2361.1",
+ "name": "小滝橋車庫前",
+ "latitude": 35.710259,
+ "longitude": 139.693251,
+ "polygon": [
+ [
+ 139.69314110989012,
+ 35.71034909009009
+ ],
+ [
+ 139.6933608901099,
+ 35.71034909009009
+ ],
+ [
+ 139.6933608901099,
+ 35.71016890990991
+ ],
+ [
+ 139.69314110989012,
+ 35.71016890990991
+ ],
+ [
+ 139.69314110989012,
+ 35.71034909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtakibashiShako.2361.2",
+ "name": "小滝橋車庫前",
+ "latitude": 35.710132,
+ "longitude": 139.693088,
+ "polygon": [
+ [
+ 139.6929781098901,
+ 35.71022209009009
+ ],
+ [
+ 139.69319789010987,
+ 35.71022209009009
+ ],
+ [
+ 139.69319789010987,
+ 35.71004190990991
+ ],
+ [
+ 139.6929781098901,
+ 35.71004190990991
+ ],
+ [
+ 139.6929781098901,
+ 35.71022209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiTritonSquareChuo.2437.1",
+ "name": "晴海トリトンスクエア中央",
+ "latitude": 35.658226,
+ "longitude": 139.783393,
+ "polygon": [
+ [
+ 139.7832831098901,
+ 35.65831609009009
+ ],
+ [
+ 139.78350289010987,
+ 35.65831609009009
+ ],
+ [
+ 139.78350289010987,
+ 35.65813590990991
+ ],
+ [
+ 139.7832831098901,
+ 35.65813590990991
+ ],
+ [
+ 139.7832831098901,
+ 35.65831609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiShinagawaGochome.2364.1",
+ "name": "南品川五丁目",
+ "latitude": 35.612156,
+ "longitude": 139.741915,
+ "polygon": [
+ [
+ 139.74180510989012,
+ 35.61224609009009
+ ],
+ [
+ 139.7420248901099,
+ 35.61224609009009
+ ],
+ [
+ 139.7420248901099,
+ 35.61206590990991
+ ],
+ [
+ 139.74180510989012,
+ 35.61206590990991
+ ],
+ [
+ 139.74180510989012,
+ 35.61224609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueDaiyonChugakko.2370.2",
+ "name": "松江第四中学校前",
+ "latitude": 35.697236,
+ "longitude": 139.87666,
+ "polygon": [
+ [
+ 139.8765501098901,
+ 35.69732609009009
+ ],
+ [
+ 139.87676989010987,
+ 35.69732609009009
+ ],
+ [
+ 139.87676989010987,
+ 35.697145909909906
+ ],
+ [
+ 139.8765501098901,
+ 35.697145909909906
+ ],
+ [
+ 139.8765501098901,
+ 35.69732609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriSportsKoen.2365.1",
+ "name": "船堀スポーツ公園前",
+ "latitude": 35.681673,
+ "longitude": 139.867449,
+ "polygon": [
+ [
+ 139.8673391098901,
+ 35.681763090090094
+ ],
+ [
+ 139.86755889010988,
+ 35.681763090090094
+ ],
+ [
+ 139.86755889010988,
+ 35.68158290990991
+ ],
+ [
+ 139.8673391098901,
+ 35.68158290990991
+ ],
+ [
+ 139.8673391098901,
+ 35.681763090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriSportsKoen.2365.2",
+ "name": "船堀スポーツ公園前",
+ "latitude": 35.682045,
+ "longitude": 139.867087,
+ "polygon": [
+ [
+ 139.86697710989012,
+ 35.68213509009009
+ ],
+ [
+ 139.86719689010988,
+ 35.68213509009009
+ ],
+ [
+ 139.86719689010988,
+ 35.68195490990991
+ ],
+ [
+ 139.86697710989012,
+ 35.68195490990991
+ ],
+ [
+ 139.86697710989012,
+ 35.68213509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueRokuchome.2366.2",
+ "name": "松江六丁目",
+ "latitude": 35.686168,
+ "longitude": 139.870426,
+ "polygon": [
+ [
+ 139.87031610989013,
+ 35.68625809009009
+ ],
+ [
+ 139.8705358901099,
+ 35.68625809009009
+ ],
+ [
+ 139.8705358901099,
+ 35.68607790990991
+ ],
+ [
+ 139.87031610989013,
+ 35.68607790990991
+ ],
+ [
+ 139.87031610989013,
+ 35.68625809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueRokuchome.2366.4",
+ "name": "松江六丁目",
+ "latitude": 35.685717,
+ "longitude": 139.870307,
+ "polygon": [
+ [
+ 139.8701971098901,
+ 35.68580709009009
+ ],
+ [
+ 139.87041689010988,
+ 35.68580709009009
+ ],
+ [
+ 139.87041689010988,
+ 35.68562690990991
+ ],
+ [
+ 139.8701971098901,
+ 35.68562690990991
+ ],
+ [
+ 139.8701971098901,
+ 35.68580709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandMinami.2564.2",
+ "name": "ハートアイランド南",
+ "latitude": 35.768704,
+ "longitude": 139.749423,
+ "polygon": [
+ [
+ 139.74931310989012,
+ 35.76879409009009
+ ],
+ [
+ 139.7495328901099,
+ 35.76879409009009
+ ],
+ [
+ 139.7495328901099,
+ 35.76861390990991
+ ],
+ [
+ 139.74931310989012,
+ 35.76861390990991
+ ],
+ [
+ 139.74931310989012,
+ 35.76879409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueCommunityKaikan.2367.1",
+ "name": "松江コミュニティ会館前",
+ "latitude": 35.690844,
+ "longitude": 139.871837,
+ "polygon": [
+ [
+ 139.87172710989012,
+ 35.69093409009009
+ ],
+ [
+ 139.87194689010988,
+ 35.69093409009009
+ ],
+ [
+ 139.87194689010988,
+ 35.69075390990991
+ ],
+ [
+ 139.87172710989012,
+ 35.69075390990991
+ ],
+ [
+ 139.87172710989012,
+ 35.69093409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueCommunityKaikan.2367.2",
+ "name": "松江コミュニティ会館前",
+ "latitude": 35.690855,
+ "longitude": 139.871961,
+ "polygon": [
+ [
+ 139.87185110989012,
+ 35.69094509009009
+ ],
+ [
+ 139.87207089010988,
+ 35.69094509009009
+ ],
+ [
+ 139.87207089010988,
+ 35.69076490990991
+ ],
+ [
+ 139.87185110989012,
+ 35.69076490990991
+ ],
+ [
+ 139.87185110989012,
+ 35.69094509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchoNamikiDori.2368.1",
+ "name": "銀杏並木通り",
+ "latitude": 35.693007,
+ "longitude": 139.87233,
+ "polygon": [
+ [
+ 139.87222010989012,
+ 35.69309709009009
+ ],
+ [
+ 139.8724398901099,
+ 35.69309709009009
+ ],
+ [
+ 139.8724398901099,
+ 35.69291690990991
+ ],
+ [
+ 139.87222010989012,
+ 35.69291690990991
+ ],
+ [
+ 139.87222010989012,
+ 35.69309709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IchoNamikiDori.2368.2",
+ "name": "銀杏並木通り",
+ "latitude": 35.692916,
+ "longitude": 139.872428,
+ "polygon": [
+ [
+ 139.87231810989013,
+ 35.69300609009009
+ ],
+ [
+ 139.8725378901099,
+ 35.69300609009009
+ ],
+ [
+ 139.8725378901099,
+ 35.69282590990991
+ ],
+ [
+ 139.87231810989013,
+ 35.69282590990991
+ ],
+ [
+ 139.87231810989013,
+ 35.69300609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueYonchuDori.2369.1",
+ "name": "松江四中通り",
+ "latitude": 35.695324,
+ "longitude": 139.875291,
+ "polygon": [
+ [
+ 139.87518110989012,
+ 35.69541409009009
+ ],
+ [
+ 139.8754008901099,
+ 35.69541409009009
+ ],
+ [
+ 139.8754008901099,
+ 35.69523390990991
+ ],
+ [
+ 139.87518110989012,
+ 35.69523390990991
+ ],
+ [
+ 139.87518110989012,
+ 35.69541409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueYonchuDori.2369.2",
+ "name": "松江四中通り",
+ "latitude": 35.695166,
+ "longitude": 139.875061,
+ "polygon": [
+ [
+ 139.8749511098901,
+ 35.69525609009009
+ ],
+ [
+ 139.87517089010987,
+ 35.69525609009009
+ ],
+ [
+ 139.87517089010987,
+ 35.69507590990991
+ ],
+ [
+ 139.8749511098901,
+ 35.69507590990991
+ ],
+ [
+ 139.8749511098901,
+ 35.69525609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MatsueDaiyonChugakko.2370.1",
+ "name": "松江第四中学校前",
+ "latitude": 35.697282,
+ "longitude": 139.876835,
+ "polygon": [
+ [
+ 139.87672510989012,
+ 35.69737209009009
+ ],
+ [
+ 139.87694489010988,
+ 35.69737209009009
+ ],
+ [
+ 139.87694489010988,
+ 35.69719190990991
+ ],
+ [
+ 139.87672510989012,
+ 35.69719190990991
+ ],
+ [
+ 139.87672510989012,
+ 35.69737209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiHigashiShogakko.2371.1",
+ "name": "大杉東小学校前",
+ "latitude": 35.699973,
+ "longitude": 139.878149,
+ "polygon": [
+ [
+ 139.87803910989012,
+ 35.70006309009009
+ ],
+ [
+ 139.8782588901099,
+ 35.70006309009009
+ ],
+ [
+ 139.8782588901099,
+ 35.69988290990991
+ ],
+ [
+ 139.87803910989012,
+ 35.69988290990991
+ ],
+ [
+ 139.87803910989012,
+ 35.70006309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OsugiHigashiShogakko.2371.2",
+ "name": "大杉東小学校前",
+ "latitude": 35.700474,
+ "longitude": 139.878342,
+ "polygon": [
+ [
+ 139.87823210989012,
+ 35.70056409009009
+ ],
+ [
+ 139.8784518901099,
+ 35.70056409009009
+ ],
+ [
+ 139.8784518901099,
+ 35.70038390990991
+ ],
+ [
+ 139.87823210989012,
+ 35.70038390990991
+ ],
+ [
+ 139.87823210989012,
+ 35.70056409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKokaSemmongakko.2372.1",
+ "name": "東京工科専門学校前",
+ "latitude": 35.606722,
+ "longitude": 139.744712,
+ "polygon": [
+ [
+ 139.7446021098901,
+ 35.60681209009009
+ ],
+ [
+ 139.74482189010988,
+ 35.60681209009009
+ ],
+ [
+ 139.74482189010988,
+ 35.60663190990991
+ ],
+ [
+ 139.7446021098901,
+ 35.60663190990991
+ ],
+ [
+ 139.7446021098901,
+ 35.60681209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hiranocho.2379.1",
+ "name": "平野町",
+ "latitude": 35.784901,
+ "longitude": 139.803091,
+ "polygon": [
+ [
+ 139.8029811098901,
+ 35.78499109009009
+ ],
+ [
+ 139.80320089010988,
+ 35.78499109009009
+ ],
+ [
+ 139.80320089010988,
+ 35.78481090990991
+ ],
+ [
+ 139.8029811098901,
+ 35.78481090990991
+ ],
+ [
+ 139.8029811098901,
+ 35.78499109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanOhashiHigashizume.2373.1",
+ "name": "港南大橋東詰",
+ "latitude": 35.629698,
+ "longitude": 139.756054,
+ "polygon": [
+ [
+ 139.75594410989012,
+ 35.62978809009009
+ ],
+ [
+ 139.7561638901099,
+ 35.62978809009009
+ ],
+ [
+ 139.7561638901099,
+ 35.62960790990991
+ ],
+ [
+ 139.75594410989012,
+ 35.62960790990991
+ ],
+ [
+ 139.75594410989012,
+ 35.62978809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDaiichiChugakko.2376.1",
+ "name": "青梅第一中学校前",
+ "latitude": 35.79024,
+ "longitude": 139.244939,
+ "polygon": [
+ [
+ 139.2448291098901,
+ 35.79033009009009
+ ],
+ [
+ 139.24504889010987,
+ 35.79033009009009
+ ],
+ [
+ 139.24504889010987,
+ 35.79014990990991
+ ],
+ [
+ 139.2448291098901,
+ 35.79014990990991
+ ],
+ [
+ 139.2448291098901,
+ 35.79033009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeDaiichiChugakko.2376.2",
+ "name": "青梅第一中学校前",
+ "latitude": 35.79019,
+ "longitude": 139.245364,
+ "polygon": [
+ [
+ 139.2452541098901,
+ 35.79028009009009
+ ],
+ [
+ 139.24547389010988,
+ 35.79028009009009
+ ],
+ [
+ 139.24547389010988,
+ 35.79009990990991
+ ],
+ [
+ 139.2452541098901,
+ 35.79009990990991
+ ],
+ [
+ 139.2452541098901,
+ 35.79028009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Urajukucho.2377.1",
+ "name": "裏宿町",
+ "latitude": 35.789827,
+ "longitude": 139.243235,
+ "polygon": [
+ [
+ 139.24312510989012,
+ 35.78991709009009
+ ],
+ [
+ 139.24334489010988,
+ 35.78991709009009
+ ],
+ [
+ 139.24334489010988,
+ 35.78973690990991
+ ],
+ [
+ 139.24312510989012,
+ 35.78973690990991
+ ],
+ [
+ 139.24312510989012,
+ 35.78991709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Urajukucho.2377.2",
+ "name": "裏宿町",
+ "latitude": 35.789814,
+ "longitude": 139.243155,
+ "polygon": [
+ [
+ 139.24304510989012,
+ 35.78990409009009
+ ],
+ [
+ 139.24326489010988,
+ 35.78990409009009
+ ],
+ [
+ 139.24326489010988,
+ 35.78972390990991
+ ],
+ [
+ 139.24304510989012,
+ 35.78972390990991
+ ],
+ [
+ 139.24304510989012,
+ 35.78990409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hiranocho.2379.2",
+ "name": "平野町",
+ "latitude": 35.785438,
+ "longitude": 139.80281,
+ "polygon": [
+ [
+ 139.8027001098901,
+ 35.78552809009009
+ ],
+ [
+ 139.80291989010988,
+ 35.78552809009009
+ ],
+ [
+ 139.80291989010988,
+ 35.78534790990991
+ ],
+ [
+ 139.8027001098901,
+ 35.78534790990991
+ ],
+ [
+ 139.8027001098901,
+ 35.78552809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KushiKanzashiBijutsukan.2380.2",
+ "name": "櫛かんざし美術館前",
+ "latitude": 35.803113,
+ "longitude": 139.19701,
+ "polygon": [
+ [
+ 139.19690010989012,
+ 35.80320309009009
+ ],
+ [
+ 139.1971198901099,
+ 35.80320309009009
+ ],
+ [
+ 139.1971198901099,
+ 35.80302290990991
+ ],
+ [
+ 139.19690010989012,
+ 35.80302290990991
+ ],
+ [
+ 139.19690010989012,
+ 35.80320309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaShinagawa.2434.1",
+ "name": "北品川",
+ "latitude": 35.621138,
+ "longitude": 139.739353,
+ "polygon": [
+ [
+ 139.7392431098901,
+ 35.62122809009009
+ ],
+ [
+ 139.73946289010988,
+ 35.62122809009009
+ ],
+ [
+ 139.73946289010988,
+ 35.62104790990991
+ ],
+ [
+ 139.7392431098901,
+ 35.62104790990991
+ ],
+ [
+ 139.7392431098901,
+ 35.62122809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriNanachome.2382.1",
+ "name": "船堀七丁目",
+ "latitude": 35.676924,
+ "longitude": 139.86958,
+ "polygon": [
+ [
+ 139.86947010989013,
+ 35.67701409009009
+ ],
+ [
+ 139.8696898901099,
+ 35.67701409009009
+ ],
+ [
+ 139.8696898901099,
+ 35.67683390990991
+ ],
+ [
+ 139.86947010989013,
+ 35.67683390990991
+ ],
+ [
+ 139.86947010989013,
+ 35.67701409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriNanachome.2382.2",
+ "name": "船堀七丁目",
+ "latitude": 35.677471,
+ "longitude": 139.869104,
+ "polygon": [
+ [
+ 139.8689941098901,
+ 35.67756109009009
+ ],
+ [
+ 139.86921389010988,
+ 35.67756109009009
+ ],
+ [
+ 139.86921389010988,
+ 35.67738090990991
+ ],
+ [
+ 139.8689941098901,
+ 35.67738090990991
+ ],
+ [
+ 139.8689941098901,
+ 35.67756109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinatogaokaFutoKoen.2383.1",
+ "name": "みなとが丘ふ頭公園前",
+ "latitude": 35.595366,
+ "longitude": 139.764656,
+ "polygon": [
+ [
+ 139.76454610989012,
+ 35.59545609009009
+ ],
+ [
+ 139.76476589010989,
+ 35.59545609009009
+ ],
+ [
+ 139.76476589010989,
+ 35.59527590990991
+ ],
+ [
+ 139.76454610989012,
+ 35.59527590990991
+ ],
+ [
+ 139.76454610989012,
+ 35.59545609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeYonchome.2384.1",
+ "name": "東青梅四丁目",
+ "latitude": 35.785628,
+ "longitude": 139.279358,
+ "polygon": [
+ [
+ 139.27924810989012,
+ 35.78571809009009
+ ],
+ [
+ 139.27946789010988,
+ 35.78571809009009
+ ],
+ [
+ 139.27946789010988,
+ 35.78553790990991
+ ],
+ [
+ 139.27924810989012,
+ 35.78553790990991
+ ],
+ [
+ 139.27924810989012,
+ 35.78571809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiOmeYonchome.2384.2",
+ "name": "東青梅四丁目",
+ "latitude": 35.785392,
+ "longitude": 139.279485,
+ "polygon": [
+ [
+ 139.2793751098901,
+ 35.78548209009009
+ ],
+ [
+ 139.27959489010988,
+ 35.78548209009009
+ ],
+ [
+ 139.27959489010988,
+ 35.78530190990991
+ ],
+ [
+ 139.2793751098901,
+ 35.78530190990991
+ ],
+ [
+ 139.2793751098901,
+ 35.78548209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SogoIryoCenter.2385.1",
+ "name": "総合医療センター前",
+ "latitude": 35.782373,
+ "longitude": 139.282668,
+ "polygon": [
+ [
+ 139.28255810989012,
+ 35.78246309009009
+ ],
+ [
+ 139.28277789010988,
+ 35.78246309009009
+ ],
+ [
+ 139.28277789010988,
+ 35.78228290990991
+ ],
+ [
+ 139.28255810989012,
+ 35.78228290990991
+ ],
+ [
+ 139.28255810989012,
+ 35.78246309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SogoIryoCenter.2385.2",
+ "name": "総合医療センター前",
+ "latitude": 35.78267,
+ "longitude": 139.281988,
+ "polygon": [
+ [
+ 139.28187810989013,
+ 35.78276009009009
+ ],
+ [
+ 139.2820978901099,
+ 35.78276009009009
+ ],
+ [
+ 139.2820978901099,
+ 35.78257990990991
+ ],
+ [
+ 139.28187810989013,
+ 35.78257990990991
+ ],
+ [
+ 139.28187810989013,
+ 35.78276009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KabeStationMinamiguchi.2386.3",
+ "name": "河辺駅南口",
+ "latitude": 35.784063,
+ "longitude": 139.284424,
+ "polygon": [
+ [
+ 139.28431410989012,
+ 35.78415309009009
+ ],
+ [
+ 139.28453389010988,
+ 35.78415309009009
+ ],
+ [
+ 139.28453389010988,
+ 35.78397290990991
+ ],
+ [
+ 139.28431410989012,
+ 35.78397290990991
+ ],
+ [
+ 139.28431410989012,
+ 35.78415309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AomiStation.2387.1",
+ "name": "青海駅前",
+ "latitude": 35.624911,
+ "longitude": 139.781227,
+ "polygon": [
+ [
+ 139.78111710989012,
+ 35.62500109009009
+ ],
+ [
+ 139.78133689010988,
+ 35.62500109009009
+ ],
+ [
+ 139.78133689010988,
+ 35.62482090990991
+ ],
+ [
+ 139.78111710989012,
+ 35.62482090990991
+ ],
+ [
+ 139.78111710989012,
+ 35.62500109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AomiStation.2387.2",
+ "name": "青海駅前",
+ "latitude": 35.624645,
+ "longitude": 139.781565,
+ "polygon": [
+ [
+ 139.78145510989012,
+ 35.62473509009009
+ ],
+ [
+ 139.78167489010988,
+ 35.62473509009009
+ ],
+ [
+ 139.78167489010988,
+ 35.62455490990991
+ ],
+ [
+ 139.78145510989012,
+ 35.62455490990991
+ ],
+ [
+ 139.78145510989012,
+ 35.62473509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaSakuraHall.2388.1",
+ "name": "小松川さくらホール前",
+ "latitude": 35.696542,
+ "longitude": 139.849394,
+ "polygon": [
+ [
+ 139.8492841098901,
+ 35.69663209009009
+ ],
+ [
+ 139.84950389010987,
+ 35.69663209009009
+ ],
+ [
+ 139.84950389010987,
+ 35.69645190990991
+ ],
+ [
+ 139.8492841098901,
+ 35.69645190990991
+ ],
+ [
+ 139.8492841098901,
+ 35.69663209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KomatsugawaDainiHoikuen.2389.1",
+ "name": "小松川第二保育園前",
+ "latitude": 35.696923,
+ "longitude": 139.850997,
+ "polygon": [
+ [
+ 139.85088710989012,
+ 35.69701309009009
+ ],
+ [
+ 139.8511068901099,
+ 35.69701309009009
+ ],
+ [
+ 139.8511068901099,
+ 35.69683290990991
+ ],
+ [
+ 139.85088710989012,
+ 35.69683290990991
+ ],
+ [
+ 139.85088710989012,
+ 35.69701309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.CherryGarden.2390.1",
+ "name": "チェリーガーデン前",
+ "latitude": 35.695449,
+ "longitude": 139.851691,
+ "polygon": [
+ [
+ 139.8515811098901,
+ 35.695539090090094
+ ],
+ [
+ 139.85180089010987,
+ 35.695539090090094
+ ],
+ [
+ 139.85180089010987,
+ 35.69535890990991
+ ],
+ [
+ 139.8515811098901,
+ 35.69535890990991
+ ],
+ [
+ 139.8515811098901,
+ 35.695539090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.JiyuNoHiroba.2391.1",
+ "name": "自由の広場前",
+ "latitude": 35.694523,
+ "longitude": 139.850983,
+ "polygon": [
+ [
+ 139.85087310989013,
+ 35.69461309009009
+ ],
+ [
+ 139.8510928901099,
+ 35.69461309009009
+ ],
+ [
+ 139.8510928901099,
+ 35.69443290990991
+ ],
+ [
+ 139.85087310989013,
+ 35.69443290990991
+ ],
+ [
+ 139.85087310989013,
+ 35.69461309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DainiKasaiShogakkoIriguchi.2392.1",
+ "name": "第二葛西小学校入口",
+ "latitude": 35.65979,
+ "longitude": 139.87733,
+ "polygon": [
+ [
+ 139.87722010989012,
+ 35.65988009009009
+ ],
+ [
+ 139.87743989010988,
+ 35.65988009009009
+ ],
+ [
+ 139.87743989010988,
+ 35.65969990990991
+ ],
+ [
+ 139.87722010989012,
+ 35.65969990990991
+ ],
+ [
+ 139.87722010989012,
+ 35.65988009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DainiKasaiShogakko.2393.1",
+ "name": "第二葛西小学校前",
+ "latitude": 35.661522,
+ "longitude": 139.878631,
+ "polygon": [
+ [
+ 139.87852110989013,
+ 35.66161209009009
+ ],
+ [
+ 139.8787408901099,
+ 35.66161209009009
+ ],
+ [
+ 139.8787408901099,
+ 35.66143190990991
+ ],
+ [
+ 139.87852110989013,
+ 35.66143190990991
+ ],
+ [
+ 139.87852110989013,
+ 35.66161209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiRokuchome.2394.1",
+ "name": "東葛西六丁目",
+ "latitude": 35.659425,
+ "longitude": 139.879778,
+ "polygon": [
+ [
+ 139.8796681098901,
+ 35.65951509009009
+ ],
+ [
+ 139.87988789010987,
+ 35.65951509009009
+ ],
+ [
+ 139.87988789010987,
+ 35.65933490990991
+ ],
+ [
+ 139.8796681098901,
+ 35.65933490990991
+ ],
+ [
+ 139.8796681098901,
+ 35.65951509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiRokuchome.2394.2",
+ "name": "東葛西六丁目",
+ "latitude": 35.659637,
+ "longitude": 139.881332,
+ "polygon": [
+ [
+ 139.8812221098901,
+ 35.65972709009009
+ ],
+ [
+ 139.88144189010987,
+ 35.65972709009009
+ ],
+ [
+ 139.88144189010987,
+ 35.659546909909906
+ ],
+ [
+ 139.8812221098901,
+ 35.659546909909906
+ ],
+ [
+ 139.8812221098901,
+ 35.65972709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiNanachome.2395.1",
+ "name": "東葛西七丁目",
+ "latitude": 35.658059,
+ "longitude": 139.881102,
+ "polygon": [
+ [
+ 139.88099210989012,
+ 35.65814909009009
+ ],
+ [
+ 139.88121189010988,
+ 35.65814909009009
+ ],
+ [
+ 139.88121189010988,
+ 35.65796890990991
+ ],
+ [
+ 139.88099210989012,
+ 35.65796890990991
+ ],
+ [
+ 139.88099210989012,
+ 35.65814909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiNanachome.2395.2",
+ "name": "東葛西七丁目",
+ "latitude": 35.657871,
+ "longitude": 139.881324,
+ "polygon": [
+ [
+ 139.88121410989012,
+ 35.65796109009009
+ ],
+ [
+ 139.8814338901099,
+ 35.65796109009009
+ ],
+ [
+ 139.8814338901099,
+ 35.65778090990991
+ ],
+ [
+ 139.88121410989012,
+ 35.65778090990991
+ ],
+ [
+ 139.88121410989012,
+ 35.65796109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiHatchome.2396.1",
+ "name": "東葛西八丁目",
+ "latitude": 35.655948,
+ "longitude": 139.880741,
+ "polygon": [
+ [
+ 139.88063110989012,
+ 35.65603809009009
+ ],
+ [
+ 139.88085089010988,
+ 35.65603809009009
+ ],
+ [
+ 139.88085089010988,
+ 35.65585790990991
+ ],
+ [
+ 139.88063110989012,
+ 35.65585790990991
+ ],
+ [
+ 139.88063110989012,
+ 35.65603809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiHatchome.2396.2",
+ "name": "東葛西八丁目",
+ "latitude": 35.655908,
+ "longitude": 139.88099,
+ "polygon": [
+ [
+ 139.88088010989011,
+ 35.65599809009009
+ ],
+ [
+ 139.88109989010988,
+ 35.65599809009009
+ ],
+ [
+ 139.88109989010988,
+ 35.655817909909906
+ ],
+ [
+ 139.88088010989011,
+ 35.655817909909906
+ ],
+ [
+ 139.88088010989011,
+ 35.65599809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiKyuchome.2397.1",
+ "name": "東葛西九丁目",
+ "latitude": 35.652185,
+ "longitude": 139.880088,
+ "polygon": [
+ [
+ 139.87997810989012,
+ 35.65227509009009
+ ],
+ [
+ 139.88019789010988,
+ 35.65227509009009
+ ],
+ [
+ 139.88019789010988,
+ 35.65209490990991
+ ],
+ [
+ 139.87997810989012,
+ 35.65209490990991
+ ],
+ [
+ 139.87997810989012,
+ 35.65227509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjimaHatchome.2401.1",
+ "name": "大島八丁目",
+ "latitude": 35.690447,
+ "longitude": 139.843559,
+ "polygon": [
+ [
+ 139.84344910989012,
+ 35.69053709009009
+ ],
+ [
+ 139.84366889010988,
+ 35.69053709009009
+ ],
+ [
+ 139.84366889010988,
+ 35.69035690990991
+ ],
+ [
+ 139.84344910989012,
+ 35.69035690990991
+ ],
+ [
+ 139.84344910989012,
+ 35.69053709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiKasaiKyuchome.2397.2",
+ "name": "東葛西九丁目",
+ "latitude": 35.652582,
+ "longitude": 139.88041,
+ "polygon": [
+ [
+ 139.88030010989013,
+ 35.65267209009009
+ ],
+ [
+ 139.8805198901099,
+ 35.65267209009009
+ ],
+ [
+ 139.8805198901099,
+ 35.65249190990991
+ ],
+ [
+ 139.88030010989013,
+ 35.65249190990991
+ ],
+ [
+ 139.88030010989013,
+ 35.65267209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MahoNoBungakukanIriguchi.2398.1",
+ "name": "魔法の文学館入口",
+ "latitude": 35.64884,
+ "longitude": 139.879635,
+ "polygon": [
+ [
+ 139.87952510989012,
+ 35.64893009009009
+ ],
+ [
+ 139.8797448901099,
+ 35.64893009009009
+ ],
+ [
+ 139.8797448901099,
+ 35.64874990990991
+ ],
+ [
+ 139.87952510989012,
+ 35.64874990990991
+ ],
+ [
+ 139.87952510989012,
+ 35.64893009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MahoNoBungakukanIriguchi.2398.2",
+ "name": "魔法の文学館入口",
+ "latitude": 35.649931,
+ "longitude": 139.880016,
+ "polygon": [
+ [
+ 139.87990610989013,
+ 35.65002109009009
+ ],
+ [
+ 139.8801258901099,
+ 35.65002109009009
+ ],
+ [
+ 139.8801258901099,
+ 35.64984090990991
+ ],
+ [
+ 139.87990610989013,
+ 35.64984090990991
+ ],
+ [
+ 139.87990610989013,
+ 35.65002109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shiromaebashi.2399.1",
+ "name": "城前橋",
+ "latitude": 35.792632,
+ "longitude": 139.274385,
+ "polygon": [
+ [
+ 139.2742751098901,
+ 35.79272209009009
+ ],
+ [
+ 139.27449489010988,
+ 35.79272209009009
+ ],
+ [
+ 139.27449489010988,
+ 35.79254190990991
+ ],
+ [
+ 139.2742751098901,
+ 35.79254190990991
+ ],
+ [
+ 139.2742751098901,
+ 35.79272209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Yamashirobashi.2400.1",
+ "name": "山城橋",
+ "latitude": 35.793136,
+ "longitude": 139.276644,
+ "polygon": [
+ [
+ 139.27653410989012,
+ 35.79322609009009
+ ],
+ [
+ 139.2767538901099,
+ 35.79322609009009
+ ],
+ [
+ 139.2767538901099,
+ 35.79304590990991
+ ],
+ [
+ 139.27653410989012,
+ 35.79304590990991
+ ],
+ [
+ 139.27653410989012,
+ 35.79322609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MonzenNakachoNichome.2403.1",
+ "name": "門前仲町二丁目",
+ "latitude": 35.673882,
+ "longitude": 139.795978,
+ "polygon": [
+ [
+ 139.7958681098901,
+ 35.67397209009009
+ ],
+ [
+ 139.79608789010987,
+ 35.67397209009009
+ ],
+ [
+ 139.79608789010987,
+ 35.67379190990991
+ ],
+ [
+ 139.7958681098901,
+ 35.67379190990991
+ ],
+ [
+ 139.7958681098901,
+ 35.67397209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroStationHigashiguchi.2405.10",
+ "name": "池袋駅東口(⑩のりば)",
+ "latitude": 35.731542,
+ "longitude": 139.714097,
+ "polygon": [
+ [
+ 139.71398710989013,
+ 35.73163209009009
+ ],
+ [
+ 139.7142068901099,
+ 35.73163209009009
+ ],
+ [
+ 139.7142068901099,
+ 35.73145190990991
+ ],
+ [
+ 139.71398710989013,
+ 35.73145190990991
+ ],
+ [
+ 139.71398710989013,
+ 35.73163209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKowanGodochosha.2407.4",
+ "name": "東京港湾合同庁舎前",
+ "latitude": 35.617548,
+ "longitude": 139.776382,
+ "polygon": [
+ [
+ 139.77627210989013,
+ 35.61763809009009
+ ],
+ [
+ 139.7764918901099,
+ 35.61763809009009
+ ],
+ [
+ 139.7764918901099,
+ 35.61745790990991
+ ],
+ [
+ 139.77627210989013,
+ 35.61745790990991
+ ],
+ [
+ 139.77627210989013,
+ 35.61763809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKowanGodochosha.2407.5",
+ "name": "東京港湾合同庁舎前",
+ "latitude": 35.617164,
+ "longitude": 139.776331,
+ "polygon": [
+ [
+ 139.77622110989012,
+ 35.61725409009009
+ ],
+ [
+ 139.77644089010988,
+ 35.61725409009009
+ ],
+ [
+ 139.77644089010988,
+ 35.61707390990991
+ ],
+ [
+ 139.77622110989012,
+ 35.61707390990991
+ ],
+ [
+ 139.77622110989012,
+ 35.61725409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HiraiYonchome.2409.1",
+ "name": "平井四丁目",
+ "latitude": 35.706708,
+ "longitude": 139.845066,
+ "polygon": [
+ [
+ 139.84495610989012,
+ 35.70679809009009
+ ],
+ [
+ 139.84517589010989,
+ 35.70679809009009
+ ],
+ [
+ 139.84517589010989,
+ 35.70661790990991
+ ],
+ [
+ 139.84495610989012,
+ 35.70661790990991
+ ],
+ [
+ 139.84495610989012,
+ 35.70679809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KandaTomiyamacho.2410.1",
+ "name": "神田富山町",
+ "latitude": 35.693662,
+ "longitude": 139.772958,
+ "polygon": [
+ [
+ 139.7728481098901,
+ 35.69375209009009
+ ],
+ [
+ 139.77306789010987,
+ 35.69375209009009
+ ],
+ [
+ 139.77306789010987,
+ 35.69357190990991
+ ],
+ [
+ 139.7728481098901,
+ 35.69357190990991
+ ],
+ [
+ 139.7728481098901,
+ 35.69375209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.BunkyoGreenCourt.2412.1",
+ "name": "文京グリーンコート前",
+ "latitude": 35.730135,
+ "longitude": 139.746197,
+ "polygon": [
+ [
+ 139.7460871098901,
+ 35.73022509009009
+ ],
+ [
+ 139.74630689010988,
+ 35.73022509009009
+ ],
+ [
+ 139.74630689010988,
+ 35.73004490990991
+ ],
+ [
+ 139.7460871098901,
+ 35.73004490990991
+ ],
+ [
+ 139.7460871098901,
+ 35.73022509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.BunkyoGreenCourt.2412.2",
+ "name": "文京グリーンコート前",
+ "latitude": 35.730634,
+ "longitude": 139.746797,
+ "polygon": [
+ [
+ 139.7466871098901,
+ 35.73072409009009
+ ],
+ [
+ 139.74690689010987,
+ 35.73072409009009
+ ],
+ [
+ 139.74690689010987,
+ 35.73054390990991
+ ],
+ [
+ 139.7466871098901,
+ 35.73054390990991
+ ],
+ [
+ 139.7466871098901,
+ 35.73072409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KitaShinagawa.2434.2",
+ "name": "北品川",
+ "latitude": 35.621292,
+ "longitude": 139.73959,
+ "polygon": [
+ [
+ 139.7394801098901,
+ 35.62138209009009
+ ],
+ [
+ 139.73969989010988,
+ 35.62138209009009
+ ],
+ [
+ 139.73969989010988,
+ 35.62120190990991
+ ],
+ [
+ 139.7394801098901,
+ 35.62120190990991
+ ],
+ [
+ 139.7394801098901,
+ 35.62138209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HanamizukiDoriChuo.2413.1",
+ "name": "はなみずき通り中央",
+ "latitude": 35.738345,
+ "longitude": 139.809002,
+ "polygon": [
+ [
+ 139.8088921098901,
+ 35.73843509009009
+ ],
+ [
+ 139.80911189010988,
+ 35.73843509009009
+ ],
+ [
+ 139.80911189010988,
+ 35.73825490990991
+ ],
+ [
+ 139.8088921098901,
+ 35.73825490990991
+ ],
+ [
+ 139.8088921098901,
+ 35.73843509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HanamizukiDoriChuo.2413.2",
+ "name": "はなみずき通り中央",
+ "latitude": 35.738237,
+ "longitude": 139.809153,
+ "polygon": [
+ [
+ 139.80904310989013,
+ 35.73832709009009
+ ],
+ [
+ 139.8092628901099,
+ 35.73832709009009
+ ],
+ [
+ 139.8092628901099,
+ 35.73814690990991
+ ],
+ [
+ 139.80904310989013,
+ 35.73814690990991
+ ],
+ [
+ 139.80904310989013,
+ 35.73832709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawakuritsuDaisanChugakko.2414.1",
+ "name": "荒川区立第三中学校前",
+ "latitude": 35.738049,
+ "longitude": 139.810959,
+ "polygon": [
+ [
+ 139.8108491098901,
+ 35.73813909009009
+ ],
+ [
+ 139.81106889010988,
+ 35.73813909009009
+ ],
+ [
+ 139.81106889010988,
+ 35.737958909909906
+ ],
+ [
+ 139.8108491098901,
+ 35.737958909909906
+ ],
+ [
+ 139.8108491098901,
+ 35.73813909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ArakawakuritsuDaisanChugakko.2414.2",
+ "name": "荒川区立第三中学校前",
+ "latitude": 35.73789,
+ "longitude": 139.811059,
+ "polygon": [
+ [
+ 139.81094910989012,
+ 35.73798009009009
+ ],
+ [
+ 139.81116889010988,
+ 35.73798009009009
+ ],
+ [
+ 139.81116889010988,
+ 35.73779990990991
+ ],
+ [
+ 139.81094910989012,
+ 35.73779990990991
+ ],
+ [
+ 139.81094910989012,
+ 35.73798009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FujiKoen.2435.1",
+ "name": "富士公園前",
+ "latitude": 35.649892,
+ "longitude": 139.876005,
+ "polygon": [
+ [
+ 139.8758951098901,
+ 35.64998209009009
+ ],
+ [
+ 139.87611489010987,
+ 35.64998209009009
+ ],
+ [
+ 139.87611489010987,
+ 35.64980190990991
+ ],
+ [
+ 139.8758951098901,
+ 35.64980190990991
+ ],
+ [
+ 139.8758951098901,
+ 35.64998209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FujiKoen.2435.2",
+ "name": "富士公園前",
+ "latitude": 35.649928,
+ "longitude": 139.876139,
+ "polygon": [
+ [
+ 139.8760291098901,
+ 35.65001809009009
+ ],
+ [
+ 139.87624889010988,
+ 35.65001809009009
+ ],
+ [
+ 139.87624889010988,
+ 35.64983790990991
+ ],
+ [
+ 139.8760291098901,
+ 35.64983790990991
+ ],
+ [
+ 139.8760291098901,
+ 35.65001809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiYonchome.2436.1",
+ "name": "南葛西四丁目",
+ "latitude": 35.652123,
+ "longitude": 139.87277,
+ "polygon": [
+ [
+ 139.87266010989012,
+ 35.65221309009009
+ ],
+ [
+ 139.87287989010989,
+ 35.65221309009009
+ ],
+ [
+ 139.87287989010989,
+ 35.65203290990991
+ ],
+ [
+ 139.87266010989012,
+ 35.65203290990991
+ ],
+ [
+ 139.87266010989012,
+ 35.65221309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSunamachiStation.2439.1",
+ "name": "南砂町駅前",
+ "latitude": 35.669219,
+ "longitude": 139.831324,
+ "polygon": [
+ [
+ 139.8312141098901,
+ 35.66930909009009
+ ],
+ [
+ 139.83143389010988,
+ 35.66930909009009
+ ],
+ [
+ 139.83143389010988,
+ 35.66912890990991
+ ],
+ [
+ 139.8312141098901,
+ 35.66912890990991
+ ],
+ [
+ 139.8312141098901,
+ 35.66930909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSunamachiStation.2439.2",
+ "name": "南砂町駅前",
+ "latitude": 35.669184,
+ "longitude": 139.831534,
+ "polygon": [
+ [
+ 139.83142410989012,
+ 35.66927409009009
+ ],
+ [
+ 139.8316438901099,
+ 35.66927409009009
+ ],
+ [
+ 139.8316438901099,
+ 35.66909390990991
+ ],
+ [
+ 139.83142410989012,
+ 35.66909390990991
+ ],
+ [
+ 139.83142410989012,
+ 35.66927409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaSanchomeMidoriDanchi.2440.3",
+ "name": "南砂三丁目みどり団地前",
+ "latitude": 35.671047,
+ "longitude": 139.832113,
+ "polygon": [
+ [
+ 139.8320031098901,
+ 35.67113709009009
+ ],
+ [
+ 139.83222289010988,
+ 35.67113709009009
+ ],
+ [
+ 139.83222289010988,
+ 35.67095690990991
+ ],
+ [
+ 139.8320031098901,
+ 35.67095690990991
+ ],
+ [
+ 139.8320031098901,
+ 35.67113709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamisunaSanchomeMidoriDanchi.2440.4",
+ "name": "南砂三丁目みどり団地前",
+ "latitude": 35.671209,
+ "longitude": 139.832404,
+ "polygon": [
+ [
+ 139.8322941098901,
+ 35.67129909009009
+ ],
+ [
+ 139.83251389010988,
+ 35.67129909009009
+ ],
+ [
+ 139.83251389010988,
+ 35.67111890990991
+ ],
+ [
+ 139.8322941098901,
+ 35.67111890990991
+ ],
+ [
+ 139.8322941098901,
+ 35.67129909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiTritonSquare.2442.1",
+ "name": "晴海トリトンスクエア前",
+ "latitude": 35.656745,
+ "longitude": 139.78056,
+ "polygon": [
+ [
+ 139.78045010989013,
+ 35.65683509009009
+ ],
+ [
+ 139.7806698901099,
+ 35.65683509009009
+ ],
+ [
+ 139.7806698901099,
+ 35.65665490990991
+ ],
+ [
+ 139.78045010989013,
+ 35.65665490990991
+ ],
+ [
+ 139.78045010989013,
+ 35.65683509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuStationHigashiguchi.2443.1",
+ "name": "南千住駅東口",
+ "latitude": 35.733487,
+ "longitude": 139.799893,
+ "polygon": [
+ [
+ 139.79978310989011,
+ 35.73357709009009
+ ],
+ [
+ 139.80000289010988,
+ 35.73357709009009
+ ],
+ [
+ 139.80000289010988,
+ 35.73339690990991
+ ],
+ [
+ 139.79978310989011,
+ 35.73339690990991
+ ],
+ [
+ 139.79978310989011,
+ 35.73357709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuStationHigashiguchi.2443.3",
+ "name": "南千住駅東口",
+ "latitude": 35.733322,
+ "longitude": 139.799823,
+ "polygon": [
+ [
+ 139.79971310989012,
+ 35.73341209009009
+ ],
+ [
+ 139.7999328901099,
+ 35.73341209009009
+ ],
+ [
+ 139.7999328901099,
+ 35.73323190990991
+ ],
+ [
+ 139.79971310989012,
+ 35.73323190990991
+ ],
+ [
+ 139.79971310989012,
+ 35.73341209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuStationHigashiguchi.2443.4",
+ "name": "南千住駅東口",
+ "latitude": 35.733196,
+ "longitude": 139.800126,
+ "polygon": [
+ [
+ 139.80001610989012,
+ 35.73328609009009
+ ],
+ [
+ 139.8002358901099,
+ 35.73328609009009
+ ],
+ [
+ 139.8002358901099,
+ 35.73310590990991
+ ],
+ [
+ 139.80001610989012,
+ 35.73310590990991
+ ],
+ [
+ 139.80001610989012,
+ 35.73328609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuYonchome.2444.1",
+ "name": "南千住四丁目",
+ "latitude": 35.735527,
+ "longitude": 139.80459,
+ "polygon": [
+ [
+ 139.8044801098901,
+ 35.73561709009009
+ ],
+ [
+ 139.80469989010987,
+ 35.73561709009009
+ ],
+ [
+ 139.80469989010987,
+ 35.73543690990991
+ ],
+ [
+ 139.8044801098901,
+ 35.73543690990991
+ ],
+ [
+ 139.8044801098901,
+ 35.73561709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuYonchome.2444.2",
+ "name": "南千住四丁目",
+ "latitude": 35.735638,
+ "longitude": 139.804249,
+ "polygon": [
+ [
+ 139.80413910989012,
+ 35.73572809009009
+ ],
+ [
+ 139.80435889010988,
+ 35.73572809009009
+ ],
+ [
+ 139.80435889010988,
+ 35.73554790990991
+ ],
+ [
+ 139.80413910989012,
+ 35.73554790990991
+ ],
+ [
+ 139.80413910989012,
+ 35.73572809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UmewakabashiCommunityKaikan.2445.1",
+ "name": "梅若橋コミュニティ会館前",
+ "latitude": 35.735065,
+ "longitude": 139.816824,
+ "polygon": [
+ [
+ 139.8167141098901,
+ 35.73515509009009
+ ],
+ [
+ 139.81693389010988,
+ 35.73515509009009
+ ],
+ [
+ 139.81693389010988,
+ 35.73497490990991
+ ],
+ [
+ 139.8167141098901,
+ 35.73497490990991
+ ],
+ [
+ 139.8167141098901,
+ 35.73515509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiDaisanChugakkoIriguchi.2448.1",
+ "name": "葛西第三中学校入口",
+ "latitude": 35.658078,
+ "longitude": 139.863975,
+ "polygon": [
+ [
+ 139.86386510989013,
+ 35.65816809009009
+ ],
+ [
+ 139.8640848901099,
+ 35.65816809009009
+ ],
+ [
+ 139.8640848901099,
+ 35.65798790990991
+ ],
+ [
+ 139.86386510989013,
+ 35.65798790990991
+ ],
+ [
+ 139.86386510989013,
+ 35.65816809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KasaiDaisanChugakkoIriguchi.2448.2",
+ "name": "葛西第三中学校入口",
+ "latitude": 35.659269,
+ "longitude": 139.863797,
+ "polygon": [
+ [
+ 139.86368710989012,
+ 35.65935909009009
+ ],
+ [
+ 139.8639068901099,
+ 35.65935909009009
+ ],
+ [
+ 139.8639068901099,
+ 35.65917890990991
+ ],
+ [
+ 139.86368710989012,
+ 35.65917890990991
+ ],
+ [
+ 139.86368710989012,
+ 35.65935909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoRinkaiByoin.2449.1",
+ "name": "東京臨海病院前",
+ "latitude": 35.651536,
+ "longitude": 139.854996,
+ "polygon": [
+ [
+ 139.85488610989012,
+ 35.65162609009009
+ ],
+ [
+ 139.85510589010988,
+ 35.65162609009009
+ ],
+ [
+ 139.85510589010988,
+ 35.65144590990991
+ ],
+ [
+ 139.85488610989012,
+ 35.65144590990991
+ ],
+ [
+ 139.85488610989012,
+ 35.65162609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoRinkaiByoin.2449.2",
+ "name": "東京臨海病院前",
+ "latitude": 35.653703,
+ "longitude": 139.854035,
+ "polygon": [
+ [
+ 139.85392510989013,
+ 35.65379309009009
+ ],
+ [
+ 139.8541448901099,
+ 35.65379309009009
+ ],
+ [
+ 139.8541448901099,
+ 35.65361290990991
+ ],
+ [
+ 139.85392510989013,
+ 35.65361290990991
+ ],
+ [
+ 139.85392510989013,
+ 35.65379309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GyosenKoen.2452.1",
+ "name": "行船公園前",
+ "latitude": 35.671636,
+ "longitude": 139.86032,
+ "polygon": [
+ [
+ 139.86021010989012,
+ 35.67172609009009
+ ],
+ [
+ 139.86042989010988,
+ 35.67172609009009
+ ],
+ [
+ 139.86042989010988,
+ 35.67154590990991
+ ],
+ [
+ 139.86021010989012,
+ 35.67154590990991
+ ],
+ [
+ 139.86021010989012,
+ 35.67172609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoRinkaiByoin.2449.3",
+ "name": "東京臨海病院前",
+ "latitude": 35.653483,
+ "longitude": 139.853999,
+ "polygon": [
+ [
+ 139.8538891098901,
+ 35.65357309009009
+ ],
+ [
+ 139.85410889010987,
+ 35.65357309009009
+ ],
+ [
+ 139.85410889010987,
+ 35.65339290990991
+ ],
+ [
+ 139.8538891098901,
+ 35.65339290990991
+ ],
+ [
+ 139.8538891098901,
+ 35.65357309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriSanchome.2450.1",
+ "name": "船堀三丁目",
+ "latitude": 35.680151,
+ "longitude": 139.865926,
+ "polygon": [
+ [
+ 139.86581610989012,
+ 35.68024109009009
+ ],
+ [
+ 139.86603589010988,
+ 35.68024109009009
+ ],
+ [
+ 139.86603589010988,
+ 35.68006090990991
+ ],
+ [
+ 139.86581610989012,
+ 35.68006090990991
+ ],
+ [
+ 139.86581610989012,
+ 35.68024109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FunaboriSanchome.2450.2",
+ "name": "船堀三丁目",
+ "latitude": 35.680339,
+ "longitude": 139.866366,
+ "polygon": [
+ [
+ 139.86625610989012,
+ 35.68042909009009
+ ],
+ [
+ 139.86647589010988,
+ 35.68042909009009
+ ],
+ [
+ 139.86647589010988,
+ 35.680248909909906
+ ],
+ [
+ 139.86625610989012,
+ 35.680248909909906
+ ],
+ [
+ 139.86625610989012,
+ 35.68042909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KusunokiCultureCenter.2451.1",
+ "name": "くすのきカルチャーセンター前",
+ "latitude": 35.672634,
+ "longitude": 139.861465,
+ "polygon": [
+ [
+ 139.86135510989013,
+ 35.67272409009009
+ ],
+ [
+ 139.8615748901099,
+ 35.67272409009009
+ ],
+ [
+ 139.8615748901099,
+ 35.67254390990991
+ ],
+ [
+ 139.86135510989013,
+ 35.67254390990991
+ ],
+ [
+ 139.86135510989013,
+ 35.67272409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KusunokiCultureCenter.2451.2",
+ "name": "くすのきカルチャーセンター前",
+ "latitude": 35.672876,
+ "longitude": 139.86193,
+ "polygon": [
+ [
+ 139.86182010989012,
+ 35.67296609009009
+ ],
+ [
+ 139.86203989010988,
+ 35.67296609009009
+ ],
+ [
+ 139.86203989010988,
+ 35.67278590990991
+ ],
+ [
+ 139.86182010989012,
+ 35.67278590990991
+ ],
+ [
+ 139.86182010989012,
+ 35.67296609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GyosenKoen.2452.2",
+ "name": "行船公園前",
+ "latitude": 35.670641,
+ "longitude": 139.859305,
+ "polygon": [
+ [
+ 139.85919510989012,
+ 35.670731090090094
+ ],
+ [
+ 139.8594148901099,
+ 35.670731090090094
+ ],
+ [
+ 139.8594148901099,
+ 35.67055090990991
+ ],
+ [
+ 139.85919510989012,
+ 35.67055090990991
+ ],
+ [
+ 139.85919510989012,
+ 35.670731090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiJutaku.2453.1",
+ "name": "南葛西住宅前",
+ "latitude": 35.65294,
+ "longitude": 139.867339,
+ "polygon": [
+ [
+ 139.8672291098901,
+ 35.65303009009009
+ ],
+ [
+ 139.86744889010987,
+ 35.65303009009009
+ ],
+ [
+ 139.86744889010987,
+ 35.65284990990991
+ ],
+ [
+ 139.8672291098901,
+ 35.65284990990991
+ ],
+ [
+ 139.8672291098901,
+ 35.65303009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiKasaiJutaku.2453.2",
+ "name": "南葛西住宅前",
+ "latitude": 35.652809,
+ "longitude": 139.866319,
+ "polygon": [
+ [
+ 139.86620910989012,
+ 35.65289909009009
+ ],
+ [
+ 139.8664288901099,
+ 35.65289909009009
+ ],
+ [
+ 139.8664288901099,
+ 35.65271890990991
+ ],
+ [
+ 139.86620910989012,
+ 35.65271890990991
+ ],
+ [
+ 139.86620910989012,
+ 35.65289909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SanEicho.2454.1",
+ "name": "三栄町",
+ "latitude": 35.689741,
+ "longitude": 139.72411,
+ "polygon": [
+ [
+ 139.7240001098901,
+ 35.68983109009009
+ ],
+ [
+ 139.72421989010988,
+ 35.68983109009009
+ ],
+ [
+ 139.72421989010988,
+ 35.68965090990991
+ ],
+ [
+ 139.7240001098901,
+ 35.68965090990991
+ ],
+ [
+ 139.7240001098901,
+ 35.68983109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SanEicho.2454.2",
+ "name": "三栄町",
+ "latitude": 35.689355,
+ "longitude": 139.724071,
+ "polygon": [
+ [
+ 139.72396110989013,
+ 35.68944509009009
+ ],
+ [
+ 139.7241808901099,
+ 35.68944509009009
+ ],
+ [
+ 139.7241808901099,
+ 35.68926490990991
+ ],
+ [
+ 139.72396110989013,
+ 35.68926490990991
+ ],
+ [
+ 139.72396110989013,
+ 35.68944509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuShobosho.2455.1",
+ "name": "新宿消防署",
+ "latitude": 35.706201,
+ "longitude": 139.694237,
+ "polygon": [
+ [
+ 139.6941271098901,
+ 35.70629109009009
+ ],
+ [
+ 139.69434689010987,
+ 35.70629109009009
+ ],
+ [
+ 139.69434689010987,
+ 35.70611090990991
+ ],
+ [
+ 139.6941271098901,
+ 35.70611090990991
+ ],
+ [
+ 139.6941271098901,
+ 35.70629109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKaiyoDaigakuHombu.2456.1",
+ "name": "東京海洋大学本部前",
+ "latitude": 35.628996,
+ "longitude": 139.747435,
+ "polygon": [
+ [
+ 139.7473251098901,
+ 35.62908609009009
+ ],
+ [
+ 139.74754489010988,
+ 35.62908609009009
+ ],
+ [
+ 139.74754489010988,
+ 35.62890590990991
+ ],
+ [
+ 139.7473251098901,
+ 35.62890590990991
+ ],
+ [
+ 139.7473251098901,
+ 35.62908609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoKaiyoDaigakuHombu.2456.2",
+ "name": "東京海洋大学本部前",
+ "latitude": 35.628787,
+ "longitude": 139.747236,
+ "polygon": [
+ [
+ 139.7471261098901,
+ 35.62887709009009
+ ],
+ [
+ 139.74734589010987,
+ 35.62887709009009
+ ],
+ [
+ 139.74734589010987,
+ 35.62869690990991
+ ],
+ [
+ 139.7471261098901,
+ 35.62869690990991
+ ],
+ [
+ 139.7471261098901,
+ 35.62887709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukiageShobuKoenIriguchi.2457.1",
+ "name": "吹上しょうぶ公園入口",
+ "latitude": 35.796029,
+ "longitude": 139.277836,
+ "polygon": [
+ [
+ 139.27772610989012,
+ 35.79611909009009
+ ],
+ [
+ 139.2779458901099,
+ 35.79611909009009
+ ],
+ [
+ 139.2779458901099,
+ 35.79593890990991
+ ],
+ [
+ 139.27772610989012,
+ 35.79593890990991
+ ],
+ [
+ 139.27772610989012,
+ 35.79611909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukiageShobuKoenIriguchi.2457.2",
+ "name": "吹上しょうぶ公園入口",
+ "latitude": 35.795903,
+ "longitude": 139.277876,
+ "polygon": [
+ [
+ 139.2777661098901,
+ 35.79599309009009
+ ],
+ [
+ 139.27798589010987,
+ 35.79599309009009
+ ],
+ [
+ 139.27798589010987,
+ 35.79581290990991
+ ],
+ [
+ 139.2777661098901,
+ 35.79581290990991
+ ],
+ [
+ 139.2777661098901,
+ 35.79599309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoKoreishaIryoCenter.2458.1",
+ "name": "江東高齢者医療センター",
+ "latitude": 35.665158,
+ "longitude": 139.834188,
+ "polygon": [
+ [
+ 139.83407810989013,
+ 35.66524809009009
+ ],
+ [
+ 139.8342978901099,
+ 35.66524809009009
+ ],
+ [
+ 139.8342978901099,
+ 35.66506790990991
+ ],
+ [
+ 139.83407810989013,
+ 35.66506790990991
+ ],
+ [
+ 139.83407810989013,
+ 35.66524809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoKoreishaIryoCenter.2458.2",
+ "name": "江東高齢者医療センター",
+ "latitude": 35.665158,
+ "longitude": 139.834181,
+ "polygon": [
+ [
+ 139.83407110989012,
+ 35.66524809009009
+ ],
+ [
+ 139.83429089010988,
+ 35.66524809009009
+ ],
+ [
+ 139.83429089010988,
+ 35.66506790990991
+ ],
+ [
+ 139.83407110989012,
+ 35.66506790990991
+ ],
+ [
+ 139.83407110989012,
+ 35.66524809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OnagigawaShogakkoIriguchi.2459.1",
+ "name": "小名木川小学校入口",
+ "latitude": 35.683933,
+ "longitude": 139.829707,
+ "polygon": [
+ [
+ 139.82959710989013,
+ 35.68402309009009
+ ],
+ [
+ 139.8298168901099,
+ 35.68402309009009
+ ],
+ [
+ 139.8298168901099,
+ 35.68384290990991
+ ],
+ [
+ 139.82959710989013,
+ 35.68384290990991
+ ],
+ [
+ 139.82959710989013,
+ 35.68402309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OnagigawaShogakkoIriguchi.2459.2",
+ "name": "小名木川小学校入口",
+ "latitude": 35.683855,
+ "longitude": 139.829274,
+ "polygon": [
+ [
+ 139.82916410989012,
+ 35.68394509009009
+ ],
+ [
+ 139.82938389010988,
+ 35.68394509009009
+ ],
+ [
+ 139.82938389010988,
+ 35.68376490990991
+ ],
+ [
+ 139.82916410989012,
+ 35.68376490990991
+ ],
+ [
+ 139.82916410989012,
+ 35.68394509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinsunaSanchomeApato.2460.1",
+ "name": "新砂三丁目アパート",
+ "latitude": 35.666742,
+ "longitude": 139.833071,
+ "polygon": [
+ [
+ 139.8329611098901,
+ 35.66683209009009
+ ],
+ [
+ 139.83318089010987,
+ 35.66683209009009
+ ],
+ [
+ 139.83318089010987,
+ 35.66665190990991
+ ],
+ [
+ 139.8329611098901,
+ 35.66665190990991
+ ],
+ [
+ 139.8329611098901,
+ 35.66683209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiTabataItchome.2462.1",
+ "name": "東田端一丁目",
+ "latitude": 35.738275,
+ "longitude": 139.764257,
+ "polygon": [
+ [
+ 139.7641471098901,
+ 35.73836509009009
+ ],
+ [
+ 139.76436689010987,
+ 35.73836509009009
+ ],
+ [
+ 139.76436689010987,
+ 35.73818490990991
+ ],
+ [
+ 139.7641471098901,
+ 35.73818490990991
+ ],
+ [
+ 139.7641471098901,
+ 35.73836509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashiTabataItchome.2462.2",
+ "name": "東田端一丁目",
+ "latitude": 35.738015,
+ "longitude": 139.763807,
+ "polygon": [
+ [
+ 139.76369710989013,
+ 35.73810509009009
+ ],
+ [
+ 139.7639168901099,
+ 35.73810509009009
+ ],
+ [
+ 139.7639168901099,
+ 35.73792490990991
+ ],
+ [
+ 139.76369710989013,
+ 35.73792490990991
+ ],
+ [
+ 139.76369710989013,
+ 35.73810509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaSeasideStation.2463.1",
+ "name": "品川シーサイド駅前",
+ "latitude": 35.609057,
+ "longitude": 139.749621,
+ "polygon": [
+ [
+ 139.7495111098901,
+ 35.60914709009009
+ ],
+ [
+ 139.74973089010987,
+ 35.60914709009009
+ ],
+ [
+ 139.74973089010987,
+ 35.60896690990991
+ ],
+ [
+ 139.7495111098901,
+ 35.60896690990991
+ ],
+ [
+ 139.7495111098901,
+ 35.60914709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinagawaSeasideStation.2463.2",
+ "name": "品川シーサイド駅前",
+ "latitude": 35.609233,
+ "longitude": 139.749629,
+ "polygon": [
+ [
+ 139.74951910989012,
+ 35.60932309009009
+ ],
+ [
+ 139.74973889010988,
+ 35.60932309009009
+ ],
+ [
+ 139.74973889010988,
+ 35.60914290990991
+ ],
+ [
+ 139.74951910989012,
+ 35.60914290990991
+ ],
+ [
+ 139.74951910989012,
+ 35.60932309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AsakusaKaminarimonMinami.2464.1",
+ "name": "浅草雷門南",
+ "latitude": 35.709559,
+ "longitude": 139.796238,
+ "polygon": [
+ [
+ 139.7961281098901,
+ 35.70964909009009
+ ],
+ [
+ 139.79634789010987,
+ 35.70964909009009
+ ],
+ [
+ 139.79634789010987,
+ 35.70946890990991
+ ],
+ [
+ 139.7961281098901,
+ 35.70946890990991
+ ],
+ [
+ 139.7961281098901,
+ 35.70964909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaminarimonItchome.2465.1",
+ "name": "雷門一丁目",
+ "latitude": 35.709304,
+ "longitude": 139.793637,
+ "polygon": [
+ [
+ 139.7935271098901,
+ 35.70939409009009
+ ],
+ [
+ 139.79374689010987,
+ 35.70939409009009
+ ],
+ [
+ 139.79374689010987,
+ 35.70921390990991
+ ],
+ [
+ 139.7935271098901,
+ 35.70921390990991
+ ],
+ [
+ 139.7935271098901,
+ 35.70939409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KAMINUMATACHUUGAKKOUMAE.2467.1",
+ "name": "江北小学校前",
+ "latitude": 35.77518,
+ "longitude": 139.765341,
+ "polygon": [
+ [
+ 139.76523110989012,
+ 35.77527009009009
+ ],
+ [
+ 139.7654508901099,
+ 35.77527009009009
+ ],
+ [
+ 139.7654508901099,
+ 35.77508990990991
+ ],
+ [
+ 139.76523110989012,
+ 35.77508990990991
+ ],
+ [
+ 139.76523110989012,
+ 35.77527009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KAMINUMATACHUUGAKKOUMAE.2467.2",
+ "name": "江北小学校前",
+ "latitude": 35.775902,
+ "longitude": 139.765365,
+ "polygon": [
+ [
+ 139.76525510989012,
+ 35.77599209009009
+ ],
+ [
+ 139.76547489010989,
+ 35.77599209009009
+ ],
+ [
+ 139.76547489010989,
+ 35.77581190990991
+ ],
+ [
+ 139.76525510989012,
+ 35.77581190990991
+ ],
+ [
+ 139.76525510989012,
+ 35.77599209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KAMINUMATASHOUGAKKOUIRIGUCHI.2468.1",
+ "name": "鹿浜菜の花中学校入口",
+ "latitude": 35.78017,
+ "longitude": 139.765006,
+ "polygon": [
+ [
+ 139.76489610989012,
+ 35.78026009009009
+ ],
+ [
+ 139.76511589010988,
+ 35.78026009009009
+ ],
+ [
+ 139.76511589010988,
+ 35.78007990990991
+ ],
+ [
+ 139.76489610989012,
+ 35.78007990990991
+ ],
+ [
+ 139.76489610989012,
+ 35.78026009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KAMINUMATASHOUGAKKOUIRIGUCHI.2468.2",
+ "name": "鹿浜菜の花中学校入口",
+ "latitude": 35.780275,
+ "longitude": 139.765221,
+ "polygon": [
+ [
+ 139.7651111098901,
+ 35.78036509009009
+ ],
+ [
+ 139.76533089010988,
+ 35.78036509009009
+ ],
+ [
+ 139.76533089010988,
+ 35.78018490990991
+ ],
+ [
+ 139.7651111098901,
+ 35.78018490990991
+ ],
+ [
+ 139.7651111098901,
+ 35.78036509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoHokubuByoin.2469.1",
+ "name": "東京北部病院前",
+ "latitude": 35.78215,
+ "longitude": 139.765119,
+ "polygon": [
+ [
+ 139.76500910989012,
+ 35.78224009009009
+ ],
+ [
+ 139.76522889010988,
+ 35.78224009009009
+ ],
+ [
+ 139.76522889010988,
+ 35.78205990990991
+ ],
+ [
+ 139.76500910989012,
+ 35.78205990990991
+ ],
+ [
+ 139.76500910989012,
+ 35.78224009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HoshaJuichigoToneri.2477.2",
+ "name": "放射11号舎人",
+ "latitude": 35.808484,
+ "longitude": 139.769945,
+ "polygon": [
+ [
+ 139.76983510989012,
+ 35.80857409009009
+ ],
+ [
+ 139.7700548901099,
+ 35.80857409009009
+ ],
+ [
+ 139.7700548901099,
+ 35.80839390990991
+ ],
+ [
+ 139.76983510989012,
+ 35.80839390990991
+ ],
+ [
+ 139.76983510989012,
+ 35.80857409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoHokubuByoin.2469.2",
+ "name": "東京北部病院前",
+ "latitude": 35.782557,
+ "longitude": 139.765263,
+ "polygon": [
+ [
+ 139.76515310989012,
+ 35.78264709009009
+ ],
+ [
+ 139.7653728901099,
+ 35.78264709009009
+ ],
+ [
+ 139.7653728901099,
+ 35.78246690990991
+ ],
+ [
+ 139.76515310989012,
+ 35.78246690990991
+ ],
+ [
+ 139.76515310989012,
+ 35.78264709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oshibe.2470.1",
+ "name": "押部",
+ "latitude": 35.785782,
+ "longitude": 139.762847,
+ "polygon": [
+ [
+ 139.7627371098901,
+ 35.78587209009009
+ ],
+ [
+ 139.76295689010988,
+ 35.78587209009009
+ ],
+ [
+ 139.76295689010988,
+ 35.78569190990991
+ ],
+ [
+ 139.7627371098901,
+ 35.78569190990991
+ ],
+ [
+ 139.7627371098901,
+ 35.78587209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Oshibe.2470.2",
+ "name": "押部",
+ "latitude": 35.785281,
+ "longitude": 139.763289,
+ "polygon": [
+ [
+ 139.7631791098901,
+ 35.78537109009009
+ ],
+ [
+ 139.76339889010987,
+ 35.78537109009009
+ ],
+ [
+ 139.76339889010987,
+ 35.78519090990991
+ ],
+ [
+ 139.7631791098901,
+ 35.78519090990991
+ ],
+ [
+ 139.7631791098901,
+ 35.78537109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikahamaHatchome.2471.1",
+ "name": "鹿浜八丁目",
+ "latitude": 35.789551,
+ "longitude": 139.762108,
+ "polygon": [
+ [
+ 139.76199810989013,
+ 35.78964109009009
+ ],
+ [
+ 139.7622178901099,
+ 35.78964109009009
+ ],
+ [
+ 139.7622178901099,
+ 35.78946090990991
+ ],
+ [
+ 139.76199810989013,
+ 35.78946090990991
+ ],
+ [
+ 139.76199810989013,
+ 35.78964109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShikahamaHatchome.2471.2",
+ "name": "鹿浜八丁目",
+ "latitude": 35.788612,
+ "longitude": 139.762083,
+ "polygon": [
+ [
+ 139.7619731098901,
+ 35.78870209009009
+ ],
+ [
+ 139.76219289010987,
+ 35.78870209009009
+ ],
+ [
+ 139.76219289010987,
+ 35.78852190990991
+ ],
+ [
+ 139.7619731098901,
+ 35.78852190990991
+ ],
+ [
+ 139.7619731098901,
+ 35.78870209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SaranumaItchome.2472.1",
+ "name": "皿沼一丁目",
+ "latitude": 35.791009,
+ "longitude": 139.761908,
+ "polygon": [
+ [
+ 139.76179810989012,
+ 35.79109909009009
+ ],
+ [
+ 139.7620178901099,
+ 35.79109909009009
+ ],
+ [
+ 139.7620178901099,
+ 35.79091890990991
+ ],
+ [
+ 139.76179810989012,
+ 35.79091890990991
+ ],
+ [
+ 139.76179810989012,
+ 35.79109909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KagaDanchi.2473.1",
+ "name": "加賀団地",
+ "latitude": 35.794226,
+ "longitude": 139.761726,
+ "polygon": [
+ [
+ 139.76161610989013,
+ 35.79431609009009
+ ],
+ [
+ 139.7618358901099,
+ 35.79431609009009
+ ],
+ [
+ 139.7618358901099,
+ 35.79413590990991
+ ],
+ [
+ 139.76161610989013,
+ 35.79413590990991
+ ],
+ [
+ 139.76161610989013,
+ 35.79431609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NerimaStation.2474.1",
+ "name": "練馬駅",
+ "latitude": 35.738581,
+ "longitude": 139.654091,
+ "polygon": [
+ [
+ 139.6539811098901,
+ 35.738671090090094
+ ],
+ [
+ 139.65420089010988,
+ 35.738671090090094
+ ],
+ [
+ 139.65420089010988,
+ 35.73849090990991
+ ],
+ [
+ 139.6539811098901,
+ 35.73849090990991
+ ],
+ [
+ 139.6539811098901,
+ 35.738671090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HikawaJinja.2476.1",
+ "name": "氷川神社前",
+ "latitude": 35.81249,
+ "longitude": 139.770469,
+ "polygon": [
+ [
+ 139.7703591098901,
+ 35.81258009009009
+ ],
+ [
+ 139.77057889010987,
+ 35.81258009009009
+ ],
+ [
+ 139.77057889010987,
+ 35.81239990990991
+ ],
+ [
+ 139.7703591098901,
+ 35.81239990990991
+ ],
+ [
+ 139.7703591098901,
+ 35.81258009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HikawaJinja.2476.2",
+ "name": "氷川神社前",
+ "latitude": 35.812668,
+ "longitude": 139.770286,
+ "polygon": [
+ [
+ 139.77017610989012,
+ 35.81275809009009
+ ],
+ [
+ 139.77039589010988,
+ 35.81275809009009
+ ],
+ [
+ 139.77039589010988,
+ 35.81257790990991
+ ],
+ [
+ 139.77017610989012,
+ 35.81257790990991
+ ],
+ [
+ 139.77017610989012,
+ 35.81275809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HoshaJuichigoToneri.2477.1",
+ "name": "放射11号舎人",
+ "latitude": 35.808121,
+ "longitude": 139.770193,
+ "polygon": [
+ [
+ 139.77008310989012,
+ 35.80821109009009
+ ],
+ [
+ 139.7703028901099,
+ 35.80821109009009
+ ],
+ [
+ 139.7703028901099,
+ 35.80803090990991
+ ],
+ [
+ 139.77008310989012,
+ 35.80803090990991
+ ],
+ [
+ 139.77008310989012,
+ 35.80821109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IriyaItchome.2478.1",
+ "name": "入谷一丁目",
+ "latitude": 35.803721,
+ "longitude": 139.770307,
+ "polygon": [
+ [
+ 139.77019710989012,
+ 35.80381109009009
+ ],
+ [
+ 139.77041689010989,
+ 35.80381109009009
+ ],
+ [
+ 139.77041689010989,
+ 35.80363090990991
+ ],
+ [
+ 139.77019710989012,
+ 35.80363090990991
+ ],
+ [
+ 139.77019710989012,
+ 35.80381109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IriyaItchome.2478.2",
+ "name": "入谷一丁目",
+ "latitude": 35.804038,
+ "longitude": 139.769956,
+ "polygon": [
+ [
+ 139.76984610989012,
+ 35.80412809009009
+ ],
+ [
+ 139.7700658901099,
+ 35.80412809009009
+ ],
+ [
+ 139.7700658901099,
+ 35.80394790990991
+ ],
+ [
+ 139.76984610989012,
+ 35.80394790990991
+ ],
+ [
+ 139.76984610989012,
+ 35.80412809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiHills.2480.1",
+ "name": "六本木ヒルズ",
+ "latitude": 35.660541,
+ "longitude": 139.729633,
+ "polygon": [
+ [
+ 139.72952310989012,
+ 35.66063109009009
+ ],
+ [
+ 139.7297428901099,
+ 35.66063109009009
+ ],
+ [
+ 139.7297428901099,
+ 35.66045090990991
+ ],
+ [
+ 139.72952310989012,
+ 35.66045090990991
+ ],
+ [
+ 139.72952310989012,
+ 35.66063109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RoppongiKeyakizaka.2481.2",
+ "name": "六本木けやき坂",
+ "latitude": 35.659235,
+ "longitude": 139.730604,
+ "polygon": [
+ [
+ 139.73049410989012,
+ 35.65932509009009
+ ],
+ [
+ 139.73071389010988,
+ 35.65932509009009
+ ],
+ [
+ 139.73071389010988,
+ 35.65914490990991
+ ],
+ [
+ 139.73049410989012,
+ 35.65914490990991
+ ],
+ [
+ 139.73049410989012,
+ 35.65932509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KansenEnKoen.2482.13",
+ "name": "甘泉園公園前",
+ "latitude": 35.711481,
+ "longitude": 139.716976,
+ "polygon": [
+ [
+ 139.7168661098901,
+ 35.71157109009009
+ ],
+ [
+ 139.71708589010987,
+ 35.71157109009009
+ ],
+ [
+ 139.71708589010987,
+ 35.71139090990991
+ ],
+ [
+ 139.7168661098901,
+ 35.71139090990991
+ ],
+ [
+ 139.7168661098901,
+ 35.71157109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KansenEnKoen.2482.14",
+ "name": "甘泉園公園前",
+ "latitude": 35.711737,
+ "longitude": 139.717247,
+ "polygon": [
+ [
+ 139.7171371098901,
+ 35.71182709009009
+ ],
+ [
+ 139.71735689010987,
+ 35.71182709009009
+ ],
+ [
+ 139.71735689010987,
+ 35.71164690990991
+ ],
+ [
+ 139.7171371098901,
+ 35.71164690990991
+ ],
+ [
+ 139.7171371098901,
+ 35.71182709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaItchome.2489.1",
+ "name": "木場一丁目",
+ "latitude": 35.665873,
+ "longitude": 139.802777,
+ "polygon": [
+ [
+ 139.8026671098901,
+ 35.66596309009009
+ ],
+ [
+ 139.80288689010987,
+ 35.66596309009009
+ ],
+ [
+ 139.80288689010987,
+ 35.66578290990991
+ ],
+ [
+ 139.8026671098901,
+ 35.66578290990991
+ ],
+ [
+ 139.8026671098901,
+ 35.66596309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shiozakiso.2490.1",
+ "name": "塩崎荘前",
+ "latitude": 35.662268,
+ "longitude": 139.804767,
+ "polygon": [
+ [
+ 139.80465710989012,
+ 35.66235809009009
+ ],
+ [
+ 139.80487689010988,
+ 35.66235809009009
+ ],
+ [
+ 139.80487689010988,
+ 35.66217790990991
+ ],
+ [
+ 139.80465710989012,
+ 35.66217790990991
+ ],
+ [
+ 139.80465710989012,
+ 35.66235809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiNichome.2491.1",
+ "name": "潮見二丁目",
+ "latitude": 35.658102,
+ "longitude": 139.815472,
+ "polygon": [
+ [
+ 139.81536210989012,
+ 35.65819209009009
+ ],
+ [
+ 139.81558189010988,
+ 35.65819209009009
+ ],
+ [
+ 139.81558189010988,
+ 35.65801190990991
+ ],
+ [
+ 139.81536210989012,
+ 35.65801190990991
+ ],
+ [
+ 139.81536210989012,
+ 35.65819209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiNichome.2491.2",
+ "name": "潮見二丁目",
+ "latitude": 35.658066,
+ "longitude": 139.815501,
+ "polygon": [
+ [
+ 139.81539110989013,
+ 35.65815609009009
+ ],
+ [
+ 139.8156108901099,
+ 35.65815609009009
+ ],
+ [
+ 139.8156108901099,
+ 35.65797590990991
+ ],
+ [
+ 139.81539110989013,
+ 35.65797590990991
+ ],
+ [
+ 139.81539110989013,
+ 35.65815609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KowanJutaku.2493.1",
+ "name": "港湾住宅前",
+ "latitude": 35.647258,
+ "longitude": 139.81672,
+ "polygon": [
+ [
+ 139.81661010989012,
+ 35.64734809009009
+ ],
+ [
+ 139.8168298901099,
+ 35.64734809009009
+ ],
+ [
+ 139.8168298901099,
+ 35.64716790990991
+ ],
+ [
+ 139.81661010989012,
+ 35.64716790990991
+ ],
+ [
+ 139.81661010989012,
+ 35.64734809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.CanalCourtSanGaiku.2495.1",
+ "name": "キャナルコート3街区前",
+ "latitude": 35.646707,
+ "longitude": 139.802956,
+ "polygon": [
+ [
+ 139.8028461098901,
+ 35.64679709009009
+ ],
+ [
+ 139.80306589010988,
+ 35.64679709009009
+ ],
+ [
+ 139.80306589010988,
+ 35.64661690990991
+ ],
+ [
+ 139.8028461098901,
+ 35.64661690990991
+ ],
+ [
+ 139.8028461098901,
+ 35.64679709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.CanalCourtNiGaiku.2496.1",
+ "name": "キャナルコート2街区前",
+ "latitude": 35.646468,
+ "longitude": 139.804561,
+ "polygon": [
+ [
+ 139.80445110989012,
+ 35.64655809009009
+ ],
+ [
+ 139.8046708901099,
+ 35.64655809009009
+ ],
+ [
+ 139.8046708901099,
+ 35.64637790990991
+ ],
+ [
+ 139.80445110989012,
+ 35.64637790990991
+ ],
+ [
+ 139.80445110989012,
+ 35.64655809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.CanalCourtYonGaiku.2497.1",
+ "name": "キャナルコート4街区前",
+ "latitude": 35.647886,
+ "longitude": 139.804369,
+ "polygon": [
+ [
+ 139.80425910989013,
+ 35.64797609009009
+ ],
+ [
+ 139.8044788901099,
+ 35.64797609009009
+ ],
+ [
+ 139.8044788901099,
+ 35.64779590990991
+ ],
+ [
+ 139.80425910989013,
+ 35.64779590990991
+ ],
+ [
+ 139.80425910989013,
+ 35.64797609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamachiStationHigashiguchi.2498.7",
+ "name": "田町駅東口前",
+ "latitude": 35.644402,
+ "longitude": 139.749487,
+ "polygon": [
+ [
+ 139.7493771098901,
+ 35.64449209009009
+ ],
+ [
+ 139.74959689010987,
+ 35.64449209009009
+ ],
+ [
+ 139.74959689010987,
+ 35.64431190990991
+ ],
+ [
+ 139.7493771098901,
+ 35.64431190990991
+ ],
+ [
+ 139.7493771098901,
+ 35.64449209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamachiStationHigashiguchi.2498.8",
+ "name": "田町駅東口前",
+ "latitude": 35.643939,
+ "longitude": 139.748439,
+ "polygon": [
+ [
+ 139.7483291098901,
+ 35.64402909009009
+ ],
+ [
+ 139.74854889010987,
+ 35.64402909009009
+ ],
+ [
+ 139.74854889010987,
+ 35.64384890990991
+ ],
+ [
+ 139.7483291098901,
+ 35.64384890990991
+ ],
+ [
+ 139.7483291098901,
+ 35.64402909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TamachiStationHigashiguchi.2498.9",
+ "name": "田町駅東口前",
+ "latitude": 35.643898,
+ "longitude": 139.748019,
+ "polygon": [
+ [
+ 139.74790910989012,
+ 35.64398809009009
+ ],
+ [
+ 139.74812889010988,
+ 35.64398809009009
+ ],
+ [
+ 139.74812889010988,
+ 35.64380790990991
+ ],
+ [
+ 139.74790910989012,
+ 35.64380790990991
+ ],
+ [
+ 139.74790910989012,
+ 35.64398809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuritsuShizenDobutsuen.2502.2",
+ "name": "区立自然動物園前",
+ "latitude": 35.672787,
+ "longitude": 139.857861,
+ "polygon": [
+ [
+ 139.85775110989013,
+ 35.67287709009009
+ ],
+ [
+ 139.8579708901099,
+ 35.67287709009009
+ ],
+ [
+ 139.8579708901099,
+ 35.67269690990991
+ ],
+ [
+ 139.85775110989013,
+ 35.67269690990991
+ ],
+ [
+ 139.85775110989013,
+ 35.67287709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandIriguchi.2499.1",
+ "name": "ハートアイランド入口",
+ "latitude": 35.771346,
+ "longitude": 139.744533,
+ "polygon": [
+ [
+ 139.7444231098901,
+ 35.77143609009009
+ ],
+ [
+ 139.74464289010987,
+ 35.77143609009009
+ ],
+ [
+ 139.74464289010987,
+ 35.77125590990991
+ ],
+ [
+ 139.7444231098901,
+ 35.77125590990991
+ ],
+ [
+ 139.7444231098901,
+ 35.77143609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandIriguchi.2499.2",
+ "name": "ハートアイランド入口",
+ "latitude": 35.771292,
+ "longitude": 139.744852,
+ "polygon": [
+ [
+ 139.74474210989013,
+ 35.77138209009009
+ ],
+ [
+ 139.7449618901099,
+ 35.77138209009009
+ ],
+ [
+ 139.7449618901099,
+ 35.77120190990991
+ ],
+ [
+ 139.74474210989013,
+ 35.77120190990991
+ ],
+ [
+ 139.74474210989013,
+ 35.77138209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.RinkaiShako.2500.1",
+ "name": "臨海車庫",
+ "latitude": 35.646933,
+ "longitude": 139.858875,
+ "polygon": [
+ [
+ 139.85876510989013,
+ 35.64702309009009
+ ],
+ [
+ 139.8589848901099,
+ 35.64702309009009
+ ],
+ [
+ 139.8589848901099,
+ 35.64684290990991
+ ],
+ [
+ 139.85876510989013,
+ 35.64684290990991
+ ],
+ [
+ 139.85876510989013,
+ 35.64702309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UkitaKoen.2501.1",
+ "name": "宇喜田公園前",
+ "latitude": 35.67599,
+ "longitude": 139.859546,
+ "polygon": [
+ [
+ 139.8594361098901,
+ 35.67608009009009
+ ],
+ [
+ 139.85965589010988,
+ 35.67608009009009
+ ],
+ [
+ 139.85965589010988,
+ 35.67589990990991
+ ],
+ [
+ 139.8594361098901,
+ 35.67589990990991
+ ],
+ [
+ 139.8594361098901,
+ 35.67608009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UkitaKoen.2501.2",
+ "name": "宇喜田公園前",
+ "latitude": 35.67497,
+ "longitude": 139.859166,
+ "polygon": [
+ [
+ 139.8590561098901,
+ 35.67506009009009
+ ],
+ [
+ 139.85927589010987,
+ 35.67506009009009
+ ],
+ [
+ 139.85927589010987,
+ 35.67487990990991
+ ],
+ [
+ 139.8590561098901,
+ 35.67487990990991
+ ],
+ [
+ 139.8590561098901,
+ 35.67506009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KuritsuShizenDobutsuen.2502.1",
+ "name": "区立自然動物園前",
+ "latitude": 35.671643,
+ "longitude": 139.857411,
+ "polygon": [
+ [
+ 139.85730110989013,
+ 35.67173309009009
+ ],
+ [
+ 139.8575208901099,
+ 35.67173309009009
+ ],
+ [
+ 139.8575208901099,
+ 35.67155290990991
+ ],
+ [
+ 139.85730110989013,
+ 35.67155290990991
+ ],
+ [
+ 139.85730110989013,
+ 35.67173309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaRokuchomeKita.2503.1",
+ "name": "東砂六丁目北",
+ "latitude": 35.674157,
+ "longitude": 139.842845,
+ "polygon": [
+ [
+ 139.84273510989013,
+ 35.67424709009009
+ ],
+ [
+ 139.8429548901099,
+ 35.67424709009009
+ ],
+ [
+ 139.8429548901099,
+ 35.67406690990991
+ ],
+ [
+ 139.84273510989013,
+ 35.67406690990991
+ ],
+ [
+ 139.84273510989013,
+ 35.67424709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HigashisunaRokuchomeKita.2503.2",
+ "name": "東砂六丁目北",
+ "latitude": 35.674807,
+ "longitude": 139.841713,
+ "polygon": [
+ [
+ 139.84160310989012,
+ 35.67489709009009
+ ],
+ [
+ 139.84182289010988,
+ 35.67489709009009
+ ],
+ [
+ 139.84182289010988,
+ 35.67471690990991
+ ],
+ [
+ 139.84160310989012,
+ 35.67471690990991
+ ],
+ [
+ 139.84160310989012,
+ 35.67489709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdogawakuKokuHokenCenterIriguchi.2504.1",
+ "name": "江戸川区口腔保健センター入口",
+ "latitude": 35.674889,
+ "longitude": 139.881959,
+ "polygon": [
+ [
+ 139.8818491098901,
+ 35.67497909009009
+ ],
+ [
+ 139.88206889010988,
+ 35.67497909009009
+ ],
+ [
+ 139.88206889010988,
+ 35.67479890990991
+ ],
+ [
+ 139.8818491098901,
+ 35.67479890990991
+ ],
+ [
+ 139.8818491098901,
+ 35.67497909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.GankenAriakeByoin.2505.1",
+ "name": "がん研有明病院前",
+ "latitude": 35.633504,
+ "longitude": 139.794422,
+ "polygon": [
+ [
+ 139.79431210989011,
+ 35.63359409009009
+ ],
+ [
+ 139.79453189010988,
+ 35.63359409009009
+ ],
+ [
+ 139.79453189010988,
+ 35.63341390990991
+ ],
+ [
+ 139.79431210989011,
+ 35.63341390990991
+ ],
+ [
+ 139.79431210989011,
+ 35.63359409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NishiKasaiStationMinami.2506.1",
+ "name": "西葛西駅南",
+ "latitude": 35.66123,
+ "longitude": 139.858561,
+ "polygon": [
+ [
+ 139.85845110989013,
+ 35.66132009009009
+ ],
+ [
+ 139.8586708901099,
+ 35.66132009009009
+ ],
+ [
+ 139.8586708901099,
+ 35.66113990990991
+ ],
+ [
+ 139.85845110989013,
+ 35.66113990990991
+ ],
+ [
+ 139.85845110989013,
+ 35.66132009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SeishinchoKenkosupportCenter.2507.1",
+ "name": "清新町健康サポートセンター前",
+ "latitude": 35.66316,
+ "longitude": 139.856028,
+ "polygon": [
+ [
+ 139.85591810989013,
+ 35.66325009009009
+ ],
+ [
+ 139.8561378901099,
+ 35.66325009009009
+ ],
+ [
+ 139.8561378901099,
+ 35.66306990990991
+ ],
+ [
+ 139.85591810989013,
+ 35.66306990990991
+ ],
+ [
+ 139.85591810989013,
+ 35.66325009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KiyosunaOhashiNishi.2508.1",
+ "name": "清砂大橋西",
+ "latitude": 35.665784,
+ "longitude": 139.8371,
+ "polygon": [
+ [
+ 139.8369901098901,
+ 35.66587409009009
+ ],
+ [
+ 139.83720989010988,
+ 35.66587409009009
+ ],
+ [
+ 139.83720989010988,
+ 35.66569390990991
+ ],
+ [
+ 139.8369901098901,
+ 35.66569390990991
+ ],
+ [
+ 139.8369901098901,
+ 35.66587409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiRyutsuCenterMinami.2510.2",
+ "name": "足立流通センター南",
+ "latitude": 35.795903,
+ "longitude": 139.76643,
+ "polygon": [
+ [
+ 139.76632010989013,
+ 35.79599309009009
+ ],
+ [
+ 139.7665398901099,
+ 35.79599309009009
+ ],
+ [
+ 139.7665398901099,
+ 35.79581290990991
+ ],
+ [
+ 139.76632010989013,
+ 35.79581290990991
+ ],
+ [
+ 139.76632010989013,
+ 35.79599309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSunamachiStationIriguchi.2509.1",
+ "name": "南砂町駅入口",
+ "latitude": 35.66766,
+ "longitude": 139.830206,
+ "polygon": [
+ [
+ 139.83009610989012,
+ 35.66775009009009
+ ],
+ [
+ 139.8303158901099,
+ 35.66775009009009
+ ],
+ [
+ 139.8303158901099,
+ 35.66756990990991
+ ],
+ [
+ 139.83009610989012,
+ 35.66756990990991
+ ],
+ [
+ 139.83009610989012,
+ 35.66775009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSunamachiStationIriguchi.2509.2",
+ "name": "南砂町駅入口",
+ "latitude": 35.66726,
+ "longitude": 139.832234,
+ "polygon": [
+ [
+ 139.83212410989012,
+ 35.66735009009009
+ ],
+ [
+ 139.83234389010988,
+ 35.66735009009009
+ ],
+ [
+ 139.83234389010988,
+ 35.66716990990991
+ ],
+ [
+ 139.83212410989012,
+ 35.66716990990991
+ ],
+ [
+ 139.83212410989012,
+ 35.66735009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MitakeStation.2515.1",
+ "name": "御嶽駅前",
+ "latitude": 35.801287,
+ "longitude": 139.1836,
+ "polygon": [
+ [
+ 139.18349010989013,
+ 35.80137709009009
+ ],
+ [
+ 139.1837098901099,
+ 35.80137709009009
+ ],
+ [
+ 139.1837098901099,
+ 35.80119690990991
+ ],
+ [
+ 139.18349010989013,
+ 35.80119690990991
+ ],
+ [
+ 139.18349010989013,
+ 35.80137709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSunamachiStationIriguchi.2509.3",
+ "name": "南砂町駅入口",
+ "latitude": 35.667229,
+ "longitude": 139.830661,
+ "polygon": [
+ [
+ 139.8305511098901,
+ 35.66731909009009
+ ],
+ [
+ 139.83077089010987,
+ 35.66731909009009
+ ],
+ [
+ 139.83077089010987,
+ 35.66713890990991
+ ],
+ [
+ 139.8305511098901,
+ 35.66713890990991
+ ],
+ [
+ 139.8305511098901,
+ 35.66731909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiRyutsuCenterMinami.2510.1",
+ "name": "足立流通センター南",
+ "latitude": 35.796106,
+ "longitude": 139.76609,
+ "polygon": [
+ [
+ 139.7659801098901,
+ 35.79619609009009
+ ],
+ [
+ 139.76619989010987,
+ 35.79619609009009
+ ],
+ [
+ 139.76619989010987,
+ 35.79601590990991
+ ],
+ [
+ 139.7659801098901,
+ 35.79601590990991
+ ],
+ [
+ 139.7659801098901,
+ 35.79619609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkusabataStationIriguchi.2512.1",
+ "name": "軍畑駅入口",
+ "latitude": 35.805398,
+ "longitude": 139.206159,
+ "polygon": [
+ [
+ 139.20604910989013,
+ 35.80548809009009
+ ],
+ [
+ 139.2062688901099,
+ 35.80548809009009
+ ],
+ [
+ 139.2062688901099,
+ 35.80530790990991
+ ],
+ [
+ 139.20604910989013,
+ 35.80530790990991
+ ],
+ [
+ 139.20604910989013,
+ 35.80548809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SawaiStationIriguchi.2513.1",
+ "name": "沢井駅入口",
+ "latitude": 35.8046,
+ "longitude": 139.193089,
+ "polygon": [
+ [
+ 139.1929791098901,
+ 35.80469009009009
+ ],
+ [
+ 139.19319889010987,
+ 35.80469009009009
+ ],
+ [
+ 139.19319889010987,
+ 35.80450990990991
+ ],
+ [
+ 139.1929791098901,
+ 35.80450990990991
+ ],
+ [
+ 139.1929791098901,
+ 35.80469009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UnosebashiIriguchi.2514.1",
+ "name": "鵜の瀬橋入口",
+ "latitude": 35.804944,
+ "longitude": 139.186337,
+ "polygon": [
+ [
+ 139.18622710989013,
+ 35.80503409009009
+ ],
+ [
+ 139.1864468901099,
+ 35.80503409009009
+ ],
+ [
+ 139.1864468901099,
+ 35.80485390990991
+ ],
+ [
+ 139.18622710989013,
+ 35.80485390990991
+ ],
+ [
+ 139.18622710989013,
+ 35.80503409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandNishi.2519.1",
+ "name": "ハートアイランド西",
+ "latitude": 35.769335,
+ "longitude": 139.747788,
+ "polygon": [
+ [
+ 139.74767810989013,
+ 35.76942509009009
+ ],
+ [
+ 139.7478978901099,
+ 35.76942509009009
+ ],
+ [
+ 139.7478978901099,
+ 35.76924490990991
+ ],
+ [
+ 139.74767810989013,
+ 35.76924490990991
+ ],
+ [
+ 139.74767810989013,
+ 35.76942509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandNishi.2519.2",
+ "name": "ハートアイランド西",
+ "latitude": 35.769207,
+ "longitude": 139.747648,
+ "polygon": [
+ [
+ 139.74753810989012,
+ 35.76929709009009
+ ],
+ [
+ 139.74775789010988,
+ 35.76929709009009
+ ],
+ [
+ 139.74775789010988,
+ 35.76911690990991
+ ],
+ [
+ 139.74753810989012,
+ 35.76911690990991
+ ],
+ [
+ 139.74753810989012,
+ 35.76929709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoKoreishaIryoCenterIriguchi.2520.1",
+ "name": "江東高齢者医療センター入口",
+ "latitude": 35.666362,
+ "longitude": 139.834439,
+ "polygon": [
+ [
+ 139.83432910989012,
+ 35.66645209009009
+ ],
+ [
+ 139.8345488901099,
+ 35.66645209009009
+ ],
+ [
+ 139.8345488901099,
+ 35.66627190990991
+ ],
+ [
+ 139.83432910989012,
+ 35.66627190990991
+ ],
+ [
+ 139.83432910989012,
+ 35.66645209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoKoreishaIryoCenterIriguchi.2520.2",
+ "name": "江東高齢者医療センター入口",
+ "latitude": 35.666754,
+ "longitude": 139.833865,
+ "polygon": [
+ [
+ 139.83375510989012,
+ 35.66684409009009
+ ],
+ [
+ 139.8339748901099,
+ 35.66684409009009
+ ],
+ [
+ 139.8339748901099,
+ 35.66666390990991
+ ],
+ [
+ 139.83375510989012,
+ 35.66666390990991
+ ],
+ [
+ 139.83375510989012,
+ 35.66684409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanShogakko.2522.1",
+ "name": "港南小学校前",
+ "latitude": 35.628744,
+ "longitude": 139.749371,
+ "polygon": [
+ [
+ 139.7492611098901,
+ 35.62883409009009
+ ],
+ [
+ 139.74948089010988,
+ 35.62883409009009
+ ],
+ [
+ 139.74948089010988,
+ 35.62865390990991
+ ],
+ [
+ 139.7492611098901,
+ 35.62865390990991
+ ],
+ [
+ 139.7492611098901,
+ 35.62883409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaiganDoriUra.2539.1",
+ "name": "海岸通り裏",
+ "latitude": 35.638721,
+ "longitude": 139.75447,
+ "polygon": [
+ [
+ 139.75436010989011,
+ 35.63881109009009
+ ],
+ [
+ 139.75457989010988,
+ 35.63881109009009
+ ],
+ [
+ 139.75457989010988,
+ 35.63863090990991
+ ],
+ [
+ 139.75436010989011,
+ 35.63863090990991
+ ],
+ [
+ 139.75436010989011,
+ 35.63881109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanShogakko.2522.2",
+ "name": "港南小学校前",
+ "latitude": 35.628374,
+ "longitude": 139.750359,
+ "polygon": [
+ [
+ 139.75024910989012,
+ 35.62846409009009
+ ],
+ [
+ 139.7504688901099,
+ 35.62846409009009
+ ],
+ [
+ 139.7504688901099,
+ 35.62828390990991
+ ],
+ [
+ 139.75024910989012,
+ 35.62828390990991
+ ],
+ [
+ 139.75024910989012,
+ 35.62846409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaAkatsukiBashiMinami.2523.1",
+ "name": "深川暁橋南",
+ "latitude": 35.658468,
+ "longitude": 139.814615,
+ "polygon": [
+ [
+ 139.81450510989012,
+ 35.65855809009009
+ ],
+ [
+ 139.8147248901099,
+ 35.65855809009009
+ ],
+ [
+ 139.8147248901099,
+ 35.65837790990991
+ ],
+ [
+ 139.81450510989012,
+ 35.65837790990991
+ ],
+ [
+ 139.81450510989012,
+ 35.65855809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiItchomeApato.2524.1",
+ "name": "潮見一丁目アパート前",
+ "latitude": 35.656491,
+ "longitude": 139.816072,
+ "polygon": [
+ [
+ 139.8159621098901,
+ 35.65658109009009
+ ],
+ [
+ 139.81618189010987,
+ 35.65658109009009
+ ],
+ [
+ 139.81618189010987,
+ 35.65640090990991
+ ],
+ [
+ 139.8159621098901,
+ 35.65640090990991
+ ],
+ [
+ 139.8159621098901,
+ 35.65658109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShiomiItchomeApato.2524.2",
+ "name": "潮見一丁目アパート前",
+ "latitude": 35.656315,
+ "longitude": 139.815947,
+ "polygon": [
+ [
+ 139.8158371098901,
+ 35.65640509009009
+ ],
+ [
+ 139.81605689010988,
+ 35.65640509009009
+ ],
+ [
+ 139.81605689010988,
+ 35.65622490990991
+ ],
+ [
+ 139.8158371098901,
+ 35.65622490990991
+ ],
+ [
+ 139.8158371098901,
+ 35.65640509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SazanamibashiMinamizume.2525.1",
+ "name": "漣橋南詰",
+ "latitude": 35.652357,
+ "longitude": 139.816043,
+ "polygon": [
+ [
+ 139.81593310989012,
+ 35.65244709009009
+ ],
+ [
+ 139.8161528901099,
+ 35.65244709009009
+ ],
+ [
+ 139.8161528901099,
+ 35.65226690990991
+ ],
+ [
+ 139.81593310989012,
+ 35.65226690990991
+ ],
+ [
+ 139.81593310989012,
+ 35.65244709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShibauraFuto.2540.1",
+ "name": "芝浦埠頭",
+ "latitude": 35.640033,
+ "longitude": 139.756723,
+ "polygon": [
+ [
+ 139.7566131098901,
+ 35.64012309009009
+ ],
+ [
+ 139.75683289010988,
+ 35.64012309009009
+ ],
+ [
+ 139.75683289010988,
+ 35.63994290990991
+ ],
+ [
+ 139.7566131098901,
+ 35.63994290990991
+ ],
+ [
+ 139.7566131098901,
+ 35.64012309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SazanamibashiMinamizume.2525.2",
+ "name": "漣橋南詰",
+ "latitude": 35.652643,
+ "longitude": 139.815468,
+ "polygon": [
+ [
+ 139.81535810989013,
+ 35.65273309009009
+ ],
+ [
+ 139.8155778901099,
+ 35.65273309009009
+ ],
+ [
+ 139.8155778901099,
+ 35.65255290990991
+ ],
+ [
+ 139.81535810989013,
+ 35.65255290990991
+ ],
+ [
+ 139.81535810989013,
+ 35.65273309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DainiTatsumiShogakko.2526.1",
+ "name": "第二辰巳小学校前",
+ "latitude": 35.648988,
+ "longitude": 139.809729,
+ "polygon": [
+ [
+ 139.80961910989012,
+ 35.64907809009009
+ ],
+ [
+ 139.8098388901099,
+ 35.64907809009009
+ ],
+ [
+ 139.8098388901099,
+ 35.64889790990991
+ ],
+ [
+ 139.80961910989012,
+ 35.64889790990991
+ ],
+ [
+ 139.80961910989012,
+ 35.64907809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiChuo.2527.1",
+ "name": "辰巳中央",
+ "latitude": 35.651057,
+ "longitude": 139.808699,
+ "polygon": [
+ [
+ 139.8085891098901,
+ 35.65114709009009
+ ],
+ [
+ 139.80880889010987,
+ 35.65114709009009
+ ],
+ [
+ 139.80880889010987,
+ 35.65096690990991
+ ],
+ [
+ 139.8085891098901,
+ 35.65096690990991
+ ],
+ [
+ 139.8085891098901,
+ 35.65114709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TatsumiItchomeKita.2528.1",
+ "name": "辰巳一丁目北",
+ "latitude": 35.652001,
+ "longitude": 139.809083,
+ "polygon": [
+ [
+ 139.8089731098901,
+ 35.65209109009009
+ ],
+ [
+ 139.80919289010987,
+ 35.65209109009009
+ ],
+ [
+ 139.80919289010987,
+ 35.65191090990991
+ ],
+ [
+ 139.8089731098901,
+ 35.65191090990991
+ ],
+ [
+ 139.8089731098901,
+ 35.65209109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TobuRyoikuCenter.2529.1",
+ "name": "東部療育センター前",
+ "latitude": 35.66429,
+ "longitude": 139.833546,
+ "polygon": [
+ [
+ 139.83343610989013,
+ 35.66438009009009
+ ],
+ [
+ 139.8336558901099,
+ 35.66438009009009
+ ],
+ [
+ 139.8336558901099,
+ 35.66419990990991
+ ],
+ [
+ 139.83343610989013,
+ 35.66419990990991
+ ],
+ [
+ 139.83343610989013,
+ 35.66438009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdagawaSanchome.2530.1",
+ "name": "枝川三丁目",
+ "latitude": 35.659916,
+ "longitude": 139.810939,
+ "polygon": [
+ [
+ 139.8108291098901,
+ 35.66000609009009
+ ],
+ [
+ 139.81104889010987,
+ 35.66000609009009
+ ],
+ [
+ 139.81104889010987,
+ 35.65982590990991
+ ],
+ [
+ 139.8108291098901,
+ 35.65982590990991
+ ],
+ [
+ 139.8108291098901,
+ 35.66000609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EdagawaSanchome.2530.2",
+ "name": "枝川三丁目",
+ "latitude": 35.660082,
+ "longitude": 139.810757,
+ "polygon": [
+ [
+ 139.8106471098901,
+ 35.66017209009009
+ ],
+ [
+ 139.81086689010988,
+ 35.66017209009009
+ ],
+ [
+ 139.81086689010988,
+ 35.65999190990991
+ ],
+ [
+ 139.8106471098901,
+ 35.65999190990991
+ ],
+ [
+ 139.8106471098901,
+ 35.66017209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KOHOKUITCHOMEAPARTMENT.2533.1",
+ "name": "江北一丁目アパート前",
+ "latitude": 35.766188,
+ "longitude": 139.767275,
+ "polygon": [
+ [
+ 139.76716510989013,
+ 35.76627809009009
+ ],
+ [
+ 139.7673848901099,
+ 35.76627809009009
+ ],
+ [
+ 139.7673848901099,
+ 35.76609790990991
+ ],
+ [
+ 139.76716510989013,
+ 35.76609790990991
+ ],
+ [
+ 139.76716510989013,
+ 35.76627809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KOHOKUITCHOMEAPARTMENT.2533.2",
+ "name": "江北一丁目アパート前",
+ "latitude": 35.766518,
+ "longitude": 139.767355,
+ "polygon": [
+ [
+ 139.76724510989013,
+ 35.76660809009009
+ ],
+ [
+ 139.7674648901099,
+ 35.76660809009009
+ ],
+ [
+ 139.7674648901099,
+ 35.76642790990991
+ ],
+ [
+ 139.76724510989013,
+ 35.76642790990991
+ ],
+ [
+ 139.76724510989013,
+ 35.76660809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KOHOKUNICHOME.2534.1",
+ "name": "江北二丁目",
+ "latitude": 35.76922,
+ "longitude": 139.766363,
+ "polygon": [
+ [
+ 139.76625310989013,
+ 35.76931009009009
+ ],
+ [
+ 139.7664728901099,
+ 35.76931009009009
+ ],
+ [
+ 139.7664728901099,
+ 35.76912990990991
+ ],
+ [
+ 139.76625310989013,
+ 35.76912990990991
+ ],
+ [
+ 139.76625310989013,
+ 35.76931009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KOHOKUNICHOME.2534.2",
+ "name": "江北二丁目",
+ "latitude": 35.768961,
+ "longitude": 139.766566,
+ "polygon": [
+ [
+ 139.76645610989013,
+ 35.76905109009009
+ ],
+ [
+ 139.7666758901099,
+ 35.76905109009009
+ ],
+ [
+ 139.7666758901099,
+ 35.76887090990991
+ ],
+ [
+ 139.76645610989013,
+ 35.76887090990991
+ ],
+ [
+ 139.76645610989013,
+ 35.76905109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KagaItchome.2535.2",
+ "name": "加賀一丁目",
+ "latitude": 35.790756,
+ "longitude": 139.761271,
+ "polygon": [
+ [
+ 139.7611611098901,
+ 35.79084609009009
+ ],
+ [
+ 139.76138089010988,
+ 35.79084609009009
+ ],
+ [
+ 139.76138089010988,
+ 35.79066590990991
+ ],
+ [
+ 139.7611611098901,
+ 35.79066590990991
+ ],
+ [
+ 139.7611611098901,
+ 35.79084609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Kaga.2536.2",
+ "name": "加賀",
+ "latitude": 35.790421,
+ "longitude": 139.759249,
+ "polygon": [
+ [
+ 139.75913910989013,
+ 35.79051109009009
+ ],
+ [
+ 139.7593588901099,
+ 35.79051109009009
+ ],
+ [
+ 139.7593588901099,
+ 35.79033090990991
+ ],
+ [
+ 139.75913910989013,
+ 35.79033090990991
+ ],
+ [
+ 139.75913910989013,
+ 35.79051109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KagaChugakkoIriguchi.2537.2",
+ "name": "加賀中学校入口",
+ "latitude": 35.793103,
+ "longitude": 139.758563,
+ "polygon": [
+ [
+ 139.75845310989013,
+ 35.79319309009009
+ ],
+ [
+ 139.7586728901099,
+ 35.79319309009009
+ ],
+ [
+ 139.7586728901099,
+ 35.79301290990991
+ ],
+ [
+ 139.75845310989013,
+ 35.79301290990991
+ ],
+ [
+ 139.75845310989013,
+ 35.79319309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hamajibashi.2538.1",
+ "name": "浜路橋",
+ "latitude": 35.634003,
+ "longitude": 139.748196,
+ "polygon": [
+ [
+ 139.74808610989012,
+ 35.63409309009009
+ ],
+ [
+ 139.7483058901099,
+ 35.63409309009009
+ ],
+ [
+ 139.7483058901099,
+ 35.63391290990991
+ ],
+ [
+ 139.74808610989012,
+ 35.63391290990991
+ ],
+ [
+ 139.74808610989012,
+ 35.63409309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Hamajibashi.2538.2",
+ "name": "浜路橋",
+ "latitude": 35.633287,
+ "longitude": 139.748071,
+ "polygon": [
+ [
+ 139.74796110989013,
+ 35.63337709009009
+ ],
+ [
+ 139.7481808901099,
+ 35.63337709009009
+ ],
+ [
+ 139.7481808901099,
+ 35.63319690990991
+ ],
+ [
+ 139.74796110989013,
+ 35.63319690990991
+ ],
+ [
+ 139.74796110989013,
+ 35.63337709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FutoKoenIriguchi.2541.1",
+ "name": "埠頭公園入口",
+ "latitude": 35.642213,
+ "longitude": 139.75599,
+ "polygon": [
+ [
+ 139.75588010989011,
+ 35.64230309009009
+ ],
+ [
+ 139.75609989010988,
+ 35.64230309009009
+ ],
+ [
+ 139.75609989010988,
+ 35.64212290990991
+ ],
+ [
+ 139.75588010989011,
+ 35.64212290990991
+ ],
+ [
+ 139.75588010989011,
+ 35.64230309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FutoKoenIriguchi.2541.2",
+ "name": "埠頭公園入口",
+ "latitude": 35.641962,
+ "longitude": 139.75621,
+ "polygon": [
+ [
+ 139.75610010989013,
+ 35.64205209009009
+ ],
+ [
+ 139.7563198901099,
+ 35.64205209009009
+ ],
+ [
+ 139.7563198901099,
+ 35.64187190990991
+ ],
+ [
+ 139.75610010989013,
+ 35.64187190990991
+ ],
+ [
+ 139.75610010989013,
+ 35.64205209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AomiNichome.2542.1",
+ "name": "青海二丁目",
+ "latitude": 35.618002,
+ "longitude": 139.781694,
+ "polygon": [
+ [
+ 139.7815841098901,
+ 35.61809209009009
+ ],
+ [
+ 139.78180389010987,
+ 35.61809209009009
+ ],
+ [
+ 139.78180389010987,
+ 35.61791190990991
+ ],
+ [
+ 139.7815841098901,
+ 35.61791190990991
+ ],
+ [
+ 139.7815841098901,
+ 35.61809209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AomiNichome.2542.2",
+ "name": "青海二丁目",
+ "latitude": 35.617167,
+ "longitude": 139.781753,
+ "polygon": [
+ [
+ 139.78164310989013,
+ 35.61725709009009
+ ],
+ [
+ 139.7818628901099,
+ 35.61725709009009
+ ],
+ [
+ 139.7818628901099,
+ 35.61707690990991
+ ],
+ [
+ 139.78164310989013,
+ 35.61707690990991
+ ],
+ [
+ 139.78164310989013,
+ 35.61725709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KankyokyokuChuboGodochosha.2543.1",
+ "name": "環境局中防合同庁舎前",
+ "latitude": 35.59873,
+ "longitude": 139.799159,
+ "polygon": [
+ [
+ 139.79904910989012,
+ 35.59882009009009
+ ],
+ [
+ 139.7992688901099,
+ 35.59882009009009
+ ],
+ [
+ 139.7992688901099,
+ 35.59863990990991
+ ],
+ [
+ 139.79904910989012,
+ 35.59863990990991
+ ],
+ [
+ 139.79904910989012,
+ 35.59882009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KankyokyokuChuboGodochosha.2543.2",
+ "name": "環境局中防合同庁舎前",
+ "latitude": 35.598956,
+ "longitude": 139.799223,
+ "polygon": [
+ [
+ 139.79911310989013,
+ 35.59904609009009
+ ],
+ [
+ 139.7993328901099,
+ 35.59904609009009
+ ],
+ [
+ 139.7993328901099,
+ 35.59886590990991
+ ],
+ [
+ 139.79911310989013,
+ 35.59886590990991
+ ],
+ [
+ 139.79911310989013,
+ 35.59904609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoBohatei.2544.1",
+ "name": "中央防波堤",
+ "latitude": 35.600865,
+ "longitude": 139.797433,
+ "polygon": [
+ [
+ 139.79732310989013,
+ 35.60095509009009
+ ],
+ [
+ 139.7975428901099,
+ 35.60095509009009
+ ],
+ [
+ 139.7975428901099,
+ 35.60077490990991
+ ],
+ [
+ 139.79732310989013,
+ 35.60077490990991
+ ],
+ [
+ 139.79732310989013,
+ 35.60095509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ChuoBohatei.2544.2",
+ "name": "中央防波堤",
+ "latitude": 35.600958,
+ "longitude": 139.797626,
+ "polygon": [
+ [
+ 139.79751610989013,
+ 35.60104809009009
+ ],
+ [
+ 139.7977358901099,
+ 35.60104809009009
+ ],
+ [
+ 139.7977358901099,
+ 35.60086790990991
+ ],
+ [
+ 139.79751610989013,
+ 35.60086790990991
+ ],
+ [
+ 139.79751610989013,
+ 35.60104809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NipponKagakuMiraikan.2546.1",
+ "name": "日本科学未来館前",
+ "latitude": 35.618961,
+ "longitude": 139.77524,
+ "polygon": [
+ [
+ 139.7751301098901,
+ 35.61905109009009
+ ],
+ [
+ 139.77534989010988,
+ 35.61905109009009
+ ],
+ [
+ 139.77534989010988,
+ 35.61887090990991
+ ],
+ [
+ 139.7751301098901,
+ 35.61887090990991
+ ],
+ [
+ 139.7751301098901,
+ 35.61905109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NipponKagakuMiraikan.2546.2",
+ "name": "日本科学未来館前",
+ "latitude": 35.618395,
+ "longitude": 139.775285,
+ "polygon": [
+ [
+ 139.7751751098901,
+ 35.61848509009009
+ ],
+ [
+ 139.77539489010988,
+ 35.61848509009009
+ ],
+ [
+ 139.77539489010988,
+ 35.61830490990991
+ ],
+ [
+ 139.7751751098901,
+ 35.61830490990991
+ ],
+ [
+ 139.7751751098901,
+ 35.61848509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SymbolPromenadeKoen.2547.1",
+ "name": "シンボルプロムナード公園前",
+ "latitude": 35.620482,
+ "longitude": 139.777191,
+ "polygon": [
+ [
+ 139.7770811098901,
+ 35.62057209009009
+ ],
+ [
+ 139.77730089010987,
+ 35.62057209009009
+ ],
+ [
+ 139.77730089010987,
+ 35.62039190990991
+ ],
+ [
+ 139.7770811098901,
+ 35.62039190990991
+ ],
+ [
+ 139.7770811098901,
+ 35.62057209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OmeShako.2548.3",
+ "name": "青梅車庫前",
+ "latitude": 35.790174,
+ "longitude": 139.250877,
+ "polygon": [
+ [
+ 139.25076710989012,
+ 35.79026409009009
+ ],
+ [
+ 139.25098689010989,
+ 35.79026409009009
+ ],
+ [
+ 139.25098689010989,
+ 35.79008390990991
+ ],
+ [
+ 139.25076710989012,
+ 35.79008390990991
+ ],
+ [
+ 139.25076710989012,
+ 35.79026409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokuritsuGanKenkyuCenter.2579.2",
+ "name": "国立がん研究センター前",
+ "latitude": 35.664506,
+ "longitude": 139.767226,
+ "polygon": [
+ [
+ 139.7671161098901,
+ 35.66459609009009
+ ],
+ [
+ 139.76733589010988,
+ 35.66459609009009
+ ],
+ [
+ 139.76733589010988,
+ 35.66441590990991
+ ],
+ [
+ 139.7671161098901,
+ 35.66441590990991
+ ],
+ [
+ 139.7671161098901,
+ 35.66459609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EnokichoTokubetsuShutchojo.2549.1",
+ "name": "榎町特別出張所前",
+ "latitude": 35.705721,
+ "longitude": 139.727198,
+ "polygon": [
+ [
+ 139.7270881098901,
+ 35.70581109009009
+ ],
+ [
+ 139.72730789010987,
+ 35.70581109009009
+ ],
+ [
+ 139.72730789010987,
+ 35.70563090990991
+ ],
+ [
+ 139.7270881098901,
+ 35.70563090990991
+ ],
+ [
+ 139.7270881098901,
+ 35.70581109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.EnokichoTokubetsuShutchojo.2549.2",
+ "name": "榎町特別出張所前",
+ "latitude": 35.706259,
+ "longitude": 139.726973,
+ "polygon": [
+ [
+ 139.7268631098901,
+ 35.70634909009009
+ ],
+ [
+ 139.72708289010987,
+ 35.70634909009009
+ ],
+ [
+ 139.72708289010987,
+ 35.70616890990991
+ ],
+ [
+ 139.7268631098901,
+ 35.70616890990991
+ ],
+ [
+ 139.7268631098901,
+ 35.70634909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandKita.2555.1",
+ "name": "ハートアイランド北",
+ "latitude": 35.771432,
+ "longitude": 139.746272,
+ "polygon": [
+ [
+ 139.74616210989012,
+ 35.77152209009009
+ ],
+ [
+ 139.7463818901099,
+ 35.77152209009009
+ ],
+ [
+ 139.7463818901099,
+ 35.77134190990991
+ ],
+ [
+ 139.74616210989012,
+ 35.77134190990991
+ ],
+ [
+ 139.74616210989012,
+ 35.77152209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandKita.2555.2",
+ "name": "ハートアイランド北",
+ "latitude": 35.771065,
+ "longitude": 139.746518,
+ "polygon": [
+ [
+ 139.74640810989013,
+ 35.77115509009009
+ ],
+ [
+ 139.7466278901099,
+ 35.77115509009009
+ ],
+ [
+ 139.7466278901099,
+ 35.77097490990991
+ ],
+ [
+ 139.74640810989013,
+ 35.77097490990991
+ ],
+ [
+ 139.74640810989013,
+ 35.77115509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandHigashi.2556.1",
+ "name": "ハートアイランド東",
+ "latitude": 35.770671,
+ "longitude": 139.747785,
+ "polygon": [
+ [
+ 139.7476751098901,
+ 35.77076109009009
+ ],
+ [
+ 139.74789489010988,
+ 35.77076109009009
+ ],
+ [
+ 139.74789489010988,
+ 35.77058090990991
+ ],
+ [
+ 139.7476751098901,
+ 35.77058090990991
+ ],
+ [
+ 139.7476751098901,
+ 35.77076109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandHigashi.2556.2",
+ "name": "ハートアイランド東",
+ "latitude": 35.770047,
+ "longitude": 139.748657,
+ "polygon": [
+ [
+ 139.74854710989013,
+ 35.77013709009009
+ ],
+ [
+ 139.7487668901099,
+ 35.77013709009009
+ ],
+ [
+ 139.7487668901099,
+ 35.76995690990991
+ ],
+ [
+ 139.74854710989013,
+ 35.76995690990991
+ ],
+ [
+ 139.74854710989013,
+ 35.77013709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shintoyobashi.2557.1",
+ "name": "新豊橋",
+ "latitude": 35.765836,
+ "longitude": 139.747998,
+ "polygon": [
+ [
+ 139.7478881098901,
+ 35.76592609009009
+ ],
+ [
+ 139.74810789010988,
+ 35.76592609009009
+ ],
+ [
+ 139.74810789010988,
+ 35.76574590990991
+ ],
+ [
+ 139.7478881098901,
+ 35.76574590990991
+ ],
+ [
+ 139.7478881098901,
+ 35.76592609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.Shintoyobashi.2557.2",
+ "name": "新豊橋",
+ "latitude": 35.766259,
+ "longitude": 139.747825,
+ "polygon": [
+ [
+ 139.74771510989012,
+ 35.76634909009009
+ ],
+ [
+ 139.7479348901099,
+ 35.76634909009009
+ ],
+ [
+ 139.7479348901099,
+ 35.76616890990991
+ ],
+ [
+ 139.74771510989012,
+ 35.76616890990991
+ ],
+ [
+ 139.74771510989012,
+ 35.76634909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaibaNichome.2558.1",
+ "name": "台場二丁目",
+ "latitude": 35.628369,
+ "longitude": 139.776246,
+ "polygon": [
+ [
+ 139.7761361098901,
+ 35.62845909009009
+ ],
+ [
+ 139.77635589010987,
+ 35.62845909009009
+ ],
+ [
+ 139.77635589010987,
+ 35.62827890990991
+ ],
+ [
+ 139.7761361098901,
+ 35.62827890990991
+ ],
+ [
+ 139.7761361098901,
+ 35.62845909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuStation.2566.1",
+ "name": "江北駅前",
+ "latitude": 35.774139,
+ "longitude": 139.770866,
+ "polygon": [
+ [
+ 139.77075610989013,
+ 35.77422909009009
+ ],
+ [
+ 139.7709758901099,
+ 35.77422909009009
+ ],
+ [
+ 139.7709758901099,
+ 35.77404890990991
+ ],
+ [
+ 139.77075610989013,
+ 35.77404890990991
+ ],
+ [
+ 139.77075610989013,
+ 35.77422909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DaibaNichome.2558.2",
+ "name": "台場二丁目",
+ "latitude": 35.628656,
+ "longitude": 139.77624,
+ "polygon": [
+ [
+ 139.77613010989012,
+ 35.62874609009009
+ ],
+ [
+ 139.77634989010988,
+ 35.62874609009009
+ ],
+ [
+ 139.77634989010988,
+ 35.62856590990991
+ ],
+ [
+ 139.77613010989012,
+ 35.62856590990991
+ ],
+ [
+ 139.77613010989012,
+ 35.62874609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NipponKagakuMiraikan.2560.1",
+ "name": "日本科学未来館",
+ "latitude": 35.619297,
+ "longitude": 139.776037,
+ "polygon": [
+ [
+ 139.77592710989012,
+ 35.61938709009009
+ ],
+ [
+ 139.77614689010989,
+ 35.61938709009009
+ ],
+ [
+ 139.77614689010989,
+ 35.61920690990991
+ ],
+ [
+ 139.77592710989012,
+ 35.61920690990991
+ ],
+ [
+ 139.77592710989012,
+ 35.61938709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IiguraKatamachi.2562.1",
+ "name": "飯倉片町",
+ "latitude": 35.660424,
+ "longitude": 139.737523,
+ "polygon": [
+ [
+ 139.73741310989013,
+ 35.66051409009009
+ ],
+ [
+ 139.7376328901099,
+ 35.66051409009009
+ ],
+ [
+ 139.7376328901099,
+ 35.66033390990991
+ ],
+ [
+ 139.73741310989013,
+ 35.66033390990991
+ ],
+ [
+ 139.73741310989013,
+ 35.66051409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IiguraKatamachi.2562.2",
+ "name": "飯倉片町",
+ "latitude": 35.660695,
+ "longitude": 139.737268,
+ "polygon": [
+ [
+ 139.73715810989012,
+ 35.66078509009009
+ ],
+ [
+ 139.73737789010988,
+ 35.66078509009009
+ ],
+ [
+ 139.73737789010988,
+ 35.66060490990991
+ ],
+ [
+ 139.73715810989012,
+ 35.66060490990991
+ ],
+ [
+ 139.73715810989012,
+ 35.66078509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HeartIslandMinami.2564.1",
+ "name": "ハートアイランド南",
+ "latitude": 35.768612,
+ "longitude": 139.749635,
+ "polygon": [
+ [
+ 139.74952510989013,
+ 35.76870209009009
+ ],
+ [
+ 139.7497448901099,
+ 35.76870209009009
+ ],
+ [
+ 139.7497448901099,
+ 35.76852190990991
+ ],
+ [
+ 139.74952510989013,
+ 35.76852190990991
+ ],
+ [
+ 139.74952510989013,
+ 35.76870209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuStation.2566.2",
+ "name": "江北駅前",
+ "latitude": 35.773891,
+ "longitude": 139.770744,
+ "polygon": [
+ [
+ 139.77063410989012,
+ 35.77398109009009
+ ],
+ [
+ 139.7708538901099,
+ 35.77398109009009
+ ],
+ [
+ 139.7708538901099,
+ 35.77380090990991
+ ],
+ [
+ 139.77063410989012,
+ 35.77380090990991
+ ],
+ [
+ 139.77063410989012,
+ 35.77398109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KohokuStation.2566.3",
+ "name": "江北駅前",
+ "latitude": 35.773889,
+ "longitude": 139.770183,
+ "polygon": [
+ [
+ 139.77007310989012,
+ 35.77397909009009
+ ],
+ [
+ 139.77029289010989,
+ 35.77397909009009
+ ],
+ [
+ 139.77029289010989,
+ 35.77379890990991
+ ],
+ [
+ 139.77007310989012,
+ 35.77379890990991
+ ],
+ [
+ 139.77007310989012,
+ 35.77397909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiOdaiStation.2567.1",
+ "name": "足立小台駅前",
+ "latitude": 35.754916,
+ "longitude": 139.770058,
+ "polygon": [
+ [
+ 139.76994810989012,
+ 35.75500609009009
+ ],
+ [
+ 139.7701678901099,
+ 35.75500609009009
+ ],
+ [
+ 139.7701678901099,
+ 35.75482590990991
+ ],
+ [
+ 139.76994810989012,
+ 35.75482590990991
+ ],
+ [
+ 139.76994810989012,
+ 35.75500609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiOdaiStation.2567.2",
+ "name": "足立小台駅前",
+ "latitude": 35.755067,
+ "longitude": 139.770313,
+ "polygon": [
+ [
+ 139.7702031098901,
+ 35.75515709009009
+ ],
+ [
+ 139.77042289010987,
+ 35.75515709009009
+ ],
+ [
+ 139.77042289010987,
+ 35.75497690990991
+ ],
+ [
+ 139.7702031098901,
+ 35.75497690990991
+ ],
+ [
+ 139.7702031098901,
+ 35.75515709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AdachiOdaiStation.2567.3",
+ "name": "足立小台駅前",
+ "latitude": 35.755262,
+ "longitude": 139.770855,
+ "polygon": [
+ [
+ 139.77074510989013,
+ 35.75535209009009
+ ],
+ [
+ 139.7709648901099,
+ 35.75535209009009
+ ],
+ [
+ 139.7709648901099,
+ 35.75517190990991
+ ],
+ [
+ 139.77074510989013,
+ 35.75517190990991
+ ],
+ [
+ 139.77074510989013,
+ 35.75535209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgiOhashiStation.2568.1",
+ "name": "扇大橋駅前",
+ "latitude": 35.762939,
+ "longitude": 139.770981,
+ "polygon": [
+ [
+ 139.77087110989012,
+ 35.76302909009009
+ ],
+ [
+ 139.7710908901099,
+ 35.76302909009009
+ ],
+ [
+ 139.7710908901099,
+ 35.76284890990991
+ ],
+ [
+ 139.77087110989012,
+ 35.76284890990991
+ ],
+ [
+ 139.77087110989012,
+ 35.76302909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgiOhashiStation.2568.2",
+ "name": "扇大橋駅前",
+ "latitude": 35.763796,
+ "longitude": 139.770619,
+ "polygon": [
+ [
+ 139.77050910989013,
+ 35.76388609009009
+ ],
+ [
+ 139.7707288901099,
+ 35.76388609009009
+ ],
+ [
+ 139.7707288901099,
+ 35.76370590990991
+ ],
+ [
+ 139.77050910989013,
+ 35.76370590990991
+ ],
+ [
+ 139.77050910989013,
+ 35.76388609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinumadaiShinsuiKoenStation.2569.1",
+ "name": "見沼代親水公園駅前",
+ "latitude": 35.81428,
+ "longitude": 139.770276,
+ "polygon": [
+ [
+ 139.7701661098901,
+ 35.81437009009009
+ ],
+ [
+ 139.77038589010988,
+ 35.81437009009009
+ ],
+ [
+ 139.77038589010988,
+ 35.814189909909906
+ ],
+ [
+ 139.7701661098901,
+ 35.814189909909906
+ ],
+ [
+ 139.7701661098901,
+ 35.81437009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinumadaiShinsuiKoenStation.2569.2",
+ "name": "見沼代親水公園駅前",
+ "latitude": 35.814237,
+ "longitude": 139.770101,
+ "polygon": [
+ [
+ 139.76999110989013,
+ 35.81432709009009
+ ],
+ [
+ 139.7702108901099,
+ 35.81432709009009
+ ],
+ [
+ 139.7702108901099,
+ 35.81414690990991
+ ],
+ [
+ 139.76999110989013,
+ 35.81414690990991
+ ],
+ [
+ 139.76999110989013,
+ 35.81432709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaKoen.2570.1",
+ "name": "木場公園",
+ "latitude": 35.676789,
+ "longitude": 139.807127,
+ "polygon": [
+ [
+ 139.80701710989013,
+ 35.67687909009009
+ ],
+ [
+ 139.8072368901099,
+ 35.67687909009009
+ ],
+ [
+ 139.8072368901099,
+ 35.67669890990991
+ ],
+ [
+ 139.80701710989013,
+ 35.67669890990991
+ ],
+ [
+ 139.80701710989013,
+ 35.67687909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OjiShobosho.2588.2",
+ "name": "王子消防署前",
+ "latitude": 35.763703,
+ "longitude": 139.737201,
+ "polygon": [
+ [
+ 139.73709110989012,
+ 35.76379309009009
+ ],
+ [
+ 139.73731089010988,
+ 35.76379309009009
+ ],
+ [
+ 139.73731089010988,
+ 35.76361290990991
+ ],
+ [
+ 139.73709110989012,
+ 35.76361290990991
+ ],
+ [
+ 139.73709110989012,
+ 35.76379309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KibaKoen.2570.2",
+ "name": "木場公園",
+ "latitude": 35.677277,
+ "longitude": 139.80685,
+ "polygon": [
+ [
+ 139.80674010989011,
+ 35.67736709009009
+ ],
+ [
+ 139.80695989010988,
+ 35.67736709009009
+ ],
+ [
+ 139.80695989010988,
+ 35.677186909909906
+ ],
+ [
+ 139.80674010989011,
+ 35.677186909909906
+ ],
+ [
+ 139.80674010989011,
+ 35.67736709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotobashiGochome.2571.1",
+ "name": "江東橋五丁目",
+ "latitude": 35.690644,
+ "longitude": 139.810487,
+ "polygon": [
+ [
+ 139.8103771098901,
+ 35.69073409009009
+ ],
+ [
+ 139.81059689010988,
+ 35.69073409009009
+ ],
+ [
+ 139.81059689010988,
+ 35.69055390990991
+ ],
+ [
+ 139.8103771098901,
+ 35.69055390990991
+ ],
+ [
+ 139.8103771098901,
+ 35.69073409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AKASAKAARKHILLS.2572.1",
+ "name": "赤坂アークヒルズ",
+ "latitude": 35.667632,
+ "longitude": 139.740007,
+ "polygon": [
+ [
+ 139.7398971098901,
+ 35.66772209009009
+ ],
+ [
+ 139.74011689010987,
+ 35.66772209009009
+ ],
+ [
+ 139.74011689010987,
+ 35.66754190990991
+ ],
+ [
+ 139.7398971098901,
+ 35.66754190990991
+ ],
+ [
+ 139.7398971098901,
+ 35.66772209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawachoItchomeApato.2573.1",
+ "name": "小川町一丁目アパート前",
+ "latitude": 35.732517,
+ "longitude": 139.438931,
+ "polygon": [
+ [
+ 139.4388211098901,
+ 35.73260709009009
+ ],
+ [
+ 139.43904089010988,
+ 35.73260709009009
+ ],
+ [
+ 139.43904089010988,
+ 35.73242690990991
+ ],
+ [
+ 139.4388211098901,
+ 35.73242690990991
+ ],
+ [
+ 139.4388211098901,
+ 35.73260709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OgawachoItchomeApato.2573.2",
+ "name": "小川町一丁目アパート前",
+ "latitude": 35.732713,
+ "longitude": 139.437333,
+ "polygon": [
+ [
+ 139.4372231098901,
+ 35.73280309009009
+ ],
+ [
+ 139.43744289010988,
+ 35.73280309009009
+ ],
+ [
+ 139.43744289010988,
+ 35.73262290990991
+ ],
+ [
+ 139.4372231098901,
+ 35.73262290990991
+ ],
+ [
+ 139.4372231098901,
+ 35.73280309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DonauDori.2574.1",
+ "name": "ドナウ通り",
+ "latitude": 35.734972,
+ "longitude": 139.801998,
+ "polygon": [
+ [
+ 139.80188810989011,
+ 35.73506209009009
+ ],
+ [
+ 139.80210789010988,
+ 35.73506209009009
+ ],
+ [
+ 139.80210789010988,
+ 35.73488190990991
+ ],
+ [
+ 139.80188810989011,
+ 35.73488190990991
+ ],
+ [
+ 139.80188810989011,
+ 35.73506209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.DonauDori.2574.2",
+ "name": "ドナウ通り",
+ "latitude": 35.735078,
+ "longitude": 139.801692,
+ "polygon": [
+ [
+ 139.80158210989012,
+ 35.73516809009009
+ ],
+ [
+ 139.80180189010989,
+ 35.73516809009009
+ ],
+ [
+ 139.80180189010989,
+ 35.73498790990991
+ ],
+ [
+ 139.80158210989012,
+ 35.73498790990991
+ ],
+ [
+ 139.80158210989012,
+ 35.73516809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NakachoKaikanIriguchi.2575.1",
+ "name": "仲町会館入口",
+ "latitude": 35.657693,
+ "longitude": 139.872513,
+ "polygon": [
+ [
+ 139.87240310989012,
+ 35.65778309009009
+ ],
+ [
+ 139.87262289010988,
+ 35.65778309009009
+ ],
+ [
+ 139.87262289010988,
+ 35.65760290990991
+ ],
+ [
+ 139.87240310989012,
+ 35.65760290990991
+ ],
+ [
+ 139.87240310989012,
+ 35.65778309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuKokokaraHiroba.2578.1",
+ "name": "新宿ここ・から広場前",
+ "latitude": 35.701462,
+ "longitude": 139.712654,
+ "polygon": [
+ [
+ 139.7125441098901,
+ 35.70155209009009
+ ],
+ [
+ 139.71276389010987,
+ 35.70155209009009
+ ],
+ [
+ 139.71276389010987,
+ 35.70137190990991
+ ],
+ [
+ 139.7125441098901,
+ 35.70137190990991
+ ],
+ [
+ 139.7125441098901,
+ 35.70155209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinjukuKokokaraHiroba.2578.2",
+ "name": "新宿ここ・から広場前",
+ "latitude": 35.701261,
+ "longitude": 139.712099,
+ "polygon": [
+ [
+ 139.7119891098901,
+ 35.70135109009009
+ ],
+ [
+ 139.71220889010988,
+ 35.70135109009009
+ ],
+ [
+ 139.71220889010988,
+ 35.70117090990991
+ ],
+ [
+ 139.7119891098901,
+ 35.70117090990991
+ ],
+ [
+ 139.7119891098901,
+ 35.70135109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokuritsuGanKenkyuCenter.2579.1",
+ "name": "国立がん研究センター前",
+ "latitude": 35.663871,
+ "longitude": 139.767355,
+ "polygon": [
+ [
+ 139.76724510989013,
+ 35.66396109009009
+ ],
+ [
+ 139.7674648901099,
+ 35.66396109009009
+ ],
+ [
+ 139.7674648901099,
+ 35.66378090990991
+ ],
+ [
+ 139.76724510989013,
+ 35.66378090990991
+ ],
+ [
+ 139.76724510989013,
+ 35.66396109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoToshokanIriguchi.2580.1",
+ "name": "江東図書館入口",
+ "latitude": 35.673023,
+ "longitude": 139.835126,
+ "polygon": [
+ [
+ 139.83501610989012,
+ 35.67311309009009
+ ],
+ [
+ 139.83523589010989,
+ 35.67311309009009
+ ],
+ [
+ 139.83523589010989,
+ 35.67293290990991
+ ],
+ [
+ 139.83501610989012,
+ 35.67293290990991
+ ],
+ [
+ 139.83501610989012,
+ 35.67311309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KotoToshokanIriguchi.2580.2",
+ "name": "江東図書館入口",
+ "latitude": 35.672853,
+ "longitude": 139.835081,
+ "polygon": [
+ [
+ 139.83497110989012,
+ 35.672943090090094
+ ],
+ [
+ 139.83519089010989,
+ 35.672943090090094
+ ],
+ [
+ 139.83519089010989,
+ 35.67276290990991
+ ],
+ [
+ 139.83497110989012,
+ 35.67276290990991
+ ],
+ [
+ 139.83497110989012,
+ 35.672943090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KonanOhashiShita.2581.1",
+ "name": "港南大橋下",
+ "latitude": 35.630298,
+ "longitude": 139.754423,
+ "polygon": [
+ [
+ 139.75431310989012,
+ 35.630388090090094
+ ],
+ [
+ 139.75453289010989,
+ 35.630388090090094
+ ],
+ [
+ 139.75453289010989,
+ 35.63020790990991
+ ],
+ [
+ 139.75431310989012,
+ 35.63020790990991
+ ],
+ [
+ 139.75431310989012,
+ 35.630388090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MinamiSenjuStationNishiguchi.2582.1",
+ "name": "南千住駅西口",
+ "latitude": 35.732958,
+ "longitude": 139.798607,
+ "polygon": [
+ [
+ 139.79849710989012,
+ 35.733048090090094
+ ],
+ [
+ 139.7987168901099,
+ 35.733048090090094
+ ],
+ [
+ 139.7987168901099,
+ 35.73286790990991
+ ],
+ [
+ 139.79849710989012,
+ 35.73286790990991
+ ],
+ [
+ 139.79849710989012,
+ 35.733048090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuisanNakaoroshiTo.2598.4",
+ "name": "水産仲卸棟",
+ "latitude": 35.645069,
+ "longitude": 139.782138,
+ "polygon": [
+ [
+ 139.78202810989012,
+ 35.64515909009009
+ ],
+ [
+ 139.7822478901099,
+ 35.64515909009009
+ ],
+ [
+ 139.7822478901099,
+ 35.64497890990991
+ ],
+ [
+ 139.78202810989012,
+ 35.64497890990991
+ ],
+ [
+ 139.78202810989012,
+ 35.64515909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AriakeGarden.2610.1",
+ "name": "有明ガーデン",
+ "latitude": 35.638641,
+ "longitude": 139.793311,
+ "polygon": [
+ [
+ 139.7932011098901,
+ 35.63873109009009
+ ],
+ [
+ 139.79342089010987,
+ 35.63873109009009
+ ],
+ [
+ 139.79342089010987,
+ 35.63855090990991
+ ],
+ [
+ 139.7932011098901,
+ 35.63855090990991
+ ],
+ [
+ 139.7932011098901,
+ 35.63873109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TachibanaItchome.2583.1",
+ "name": "立花一丁目",
+ "latitude": 35.705796,
+ "longitude": 139.826133,
+ "polygon": [
+ [
+ 139.82602310989012,
+ 35.70588609009009
+ ],
+ [
+ 139.82624289010988,
+ 35.70588609009009
+ ],
+ [
+ 139.82624289010988,
+ 35.70570590990991
+ ],
+ [
+ 139.82602310989012,
+ 35.70570590990991
+ ],
+ [
+ 139.82602310989012,
+ 35.70588609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TachibanaItchome.2583.2",
+ "name": "立花一丁目",
+ "latitude": 35.706416,
+ "longitude": 139.826697,
+ "polygon": [
+ [
+ 139.8265871098901,
+ 35.70650609009009
+ ],
+ [
+ 139.82680689010988,
+ 35.70650609009009
+ ],
+ [
+ 139.82680689010988,
+ 35.70632590990991
+ ],
+ [
+ 139.8265871098901,
+ 35.70632590990991
+ ],
+ [
+ 139.8265871098901,
+ 35.70650609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkabanebashiKosaten.2584.1",
+ "name": "赤羽橋交差点",
+ "latitude": 35.655808,
+ "longitude": 139.744836,
+ "polygon": [
+ [
+ 139.7447261098901,
+ 35.65589809009009
+ ],
+ [
+ 139.74494589010988,
+ 35.65589809009009
+ ],
+ [
+ 139.74494589010988,
+ 35.65571790990991
+ ],
+ [
+ 139.7447261098901,
+ 35.65571790990991
+ ],
+ [
+ 139.7447261098901,
+ 35.65589809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.AkabanebashiKosaten.2584.2",
+ "name": "赤羽橋交差点",
+ "latitude": 35.655898,
+ "longitude": 139.745138,
+ "polygon": [
+ [
+ 139.74502810989011,
+ 35.65598809009009
+ ],
+ [
+ 139.74524789010988,
+ 35.65598809009009
+ ],
+ [
+ 139.74524789010988,
+ 35.65580790990991
+ ],
+ [
+ 139.74502810989011,
+ 35.65580790990991
+ ],
+ [
+ 139.74502810989011,
+ 35.65598809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ImaiJidoKotsuKoen.2585.1",
+ "name": "今井児童交通公園前",
+ "latitude": 35.680878,
+ "longitude": 139.887049,
+ "polygon": [
+ [
+ 139.8869391098901,
+ 35.68096809009009
+ ],
+ [
+ 139.88715889010987,
+ 35.68096809009009
+ ],
+ [
+ 139.88715889010987,
+ 35.68078790990991
+ ],
+ [
+ 139.8869391098901,
+ 35.68078790990991
+ ],
+ [
+ 139.8869391098901,
+ 35.68096809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShowaDaigakuKotoToyosuByoin.2591.1",
+ "name": "昭和大学江東豊洲病院前",
+ "latitude": 35.65164,
+ "longitude": 139.796549,
+ "polygon": [
+ [
+ 139.79643910989012,
+ 35.65173009009009
+ ],
+ [
+ 139.79665889010988,
+ 35.65173009009009
+ ],
+ [
+ 139.79665889010988,
+ 35.65154990990991
+ ],
+ [
+ 139.79643910989012,
+ 35.65154990990991
+ ],
+ [
+ 139.79643910989012,
+ 35.65173009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ImaiJidoKotsuKoen.2585.2",
+ "name": "今井児童交通公園前",
+ "latitude": 35.680745,
+ "longitude": 139.887092,
+ "polygon": [
+ [
+ 139.8869821098901,
+ 35.68083509009009
+ ],
+ [
+ 139.88720189010988,
+ 35.68083509009009
+ ],
+ [
+ 139.88720189010988,
+ 35.68065490990991
+ ],
+ [
+ 139.8869821098901,
+ 35.68065490990991
+ ],
+ [
+ 139.8869821098901,
+ 35.68083509009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MusashinoDaigaku.2586.1",
+ "name": "武蔵野大学前",
+ "latitude": 35.630737,
+ "longitude": 139.787727,
+ "polygon": [
+ [
+ 139.7876171098901,
+ 35.630827090090094
+ ],
+ [
+ 139.78783689010987,
+ 35.630827090090094
+ ],
+ [
+ 139.78783689010987,
+ 35.63064690990991
+ ],
+ [
+ 139.7876171098901,
+ 35.63064690990991
+ ],
+ [
+ 139.7876171098901,
+ 35.630827090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.MusashinoDaigaku.2586.2",
+ "name": "武蔵野大学前",
+ "latitude": 35.63068,
+ "longitude": 139.787466,
+ "polygon": [
+ [
+ 139.7873561098901,
+ 35.63077009009009
+ ],
+ [
+ 139.78757589010988,
+ 35.63077009009009
+ ],
+ [
+ 139.78757589010988,
+ 35.63058990990991
+ ],
+ [
+ 139.7873561098901,
+ 35.63058990990991
+ ],
+ [
+ 139.7873561098901,
+ 35.63077009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaHatchuMinami.2587.1",
+ "name": "深川八中南",
+ "latitude": 35.663491,
+ "longitude": 139.812426,
+ "polygon": [
+ [
+ 139.8123161098901,
+ 35.66358109009009
+ ],
+ [
+ 139.81253589010987,
+ 35.66358109009009
+ ],
+ [
+ 139.81253589010987,
+ 35.66340090990991
+ ],
+ [
+ 139.8123161098901,
+ 35.66340090990991
+ ],
+ [
+ 139.8123161098901,
+ 35.66358109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.FukagawaHatchuMinami.2587.2",
+ "name": "深川八中南",
+ "latitude": 35.663652,
+ "longitude": 139.812473,
+ "polygon": [
+ [
+ 139.81236310989013,
+ 35.66374209009009
+ ],
+ [
+ 139.8125828901099,
+ 35.66374209009009
+ ],
+ [
+ 139.8125828901099,
+ 35.66356190990991
+ ],
+ [
+ 139.81236310989013,
+ 35.66356190990991
+ ],
+ [
+ 139.81236310989013,
+ 35.66374209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinToyosuStation.2589.1",
+ "name": "新豊洲駅前",
+ "latitude": 35.648294,
+ "longitude": 139.788552,
+ "polygon": [
+ [
+ 139.78844210989013,
+ 35.64838409009009
+ ],
+ [
+ 139.7886618901099,
+ 35.64838409009009
+ ],
+ [
+ 139.7886618901099,
+ 35.64820390990991
+ ],
+ [
+ 139.78844210989013,
+ 35.64820390990991
+ ],
+ [
+ 139.78844210989013,
+ 35.64838409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinToyosuStation.2589.2",
+ "name": "新豊洲駅前",
+ "latitude": 35.647722,
+ "longitude": 139.789651,
+ "polygon": [
+ [
+ 139.7895411098901,
+ 35.64781209009009
+ ],
+ [
+ 139.78976089010987,
+ 35.64781209009009
+ ],
+ [
+ 139.78976089010987,
+ 35.64763190990991
+ ],
+ [
+ 139.7895411098901,
+ 35.64763190990991
+ ],
+ [
+ 139.7895411098901,
+ 35.64781209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinToyosuStation.2589.3",
+ "name": "新豊洲駅前",
+ "latitude": 35.648836,
+ "longitude": 139.790092,
+ "polygon": [
+ [
+ 139.7899821098901,
+ 35.64892609009009
+ ],
+ [
+ 139.79020189010987,
+ 35.64892609009009
+ ],
+ [
+ 139.79020189010987,
+ 35.64874590990991
+ ],
+ [
+ 139.7899821098901,
+ 35.64874590990991
+ ],
+ [
+ 139.7899821098901,
+ 35.64892609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShinToyosuStation.2589.4",
+ "name": "新豊洲駅前",
+ "latitude": 35.648638,
+ "longitude": 139.790237,
+ "polygon": [
+ [
+ 139.7901271098901,
+ 35.64872809009009
+ ],
+ [
+ 139.79034689010987,
+ 35.64872809009009
+ ],
+ [
+ 139.79034689010987,
+ 35.64854790990991
+ ],
+ [
+ 139.7901271098901,
+ 35.64854790990991
+ ],
+ [
+ 139.7901271098901,
+ 35.64872809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KokusaiTenjijoStationIriguchi.2590.1",
+ "name": "国際展示場駅入口",
+ "latitude": 35.633599,
+ "longitude": 139.793858,
+ "polygon": [
+ [
+ 139.79374810989012,
+ 35.63368909009009
+ ],
+ [
+ 139.79396789010988,
+ 35.63368909009009
+ ],
+ [
+ 139.79396789010988,
+ 35.63350890990991
+ ],
+ [
+ 139.79374810989012,
+ 35.63350890990991
+ ],
+ [
+ 139.79374810989012,
+ 35.63368909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuisanNakaoroshiTo.2598.3",
+ "name": "水産仲卸棟",
+ "latitude": 35.644958,
+ "longitude": 139.782029,
+ "polygon": [
+ [
+ 139.7819191098901,
+ 35.64504809009009
+ ],
+ [
+ 139.78213889010988,
+ 35.64504809009009
+ ],
+ [
+ 139.78213889010988,
+ 35.64486790990991
+ ],
+ [
+ 139.7819191098901,
+ 35.64486790990991
+ ],
+ [
+ 139.7819191098901,
+ 35.64504809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShowaDaigakuKotoToyosuByoin.2591.2",
+ "name": "昭和大学江東豊洲病院前",
+ "latitude": 35.65165,
+ "longitude": 139.796219,
+ "polygon": [
+ [
+ 139.79610910989012,
+ 35.65174009009009
+ ],
+ [
+ 139.7963288901099,
+ 35.65174009009009
+ ],
+ [
+ 139.7963288901099,
+ 35.651559909909906
+ ],
+ [
+ 139.79610910989012,
+ 35.651559909909906
+ ],
+ [
+ 139.79610910989012,
+ 35.65174009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoBashiMinami.2592.1",
+ "name": "東陽橋南",
+ "latitude": 35.663836,
+ "longitude": 139.816003,
+ "polygon": [
+ [
+ 139.8158931098901,
+ 35.663926090090094
+ ],
+ [
+ 139.81611289010988,
+ 35.663926090090094
+ ],
+ [
+ 139.81611289010988,
+ 35.66374590990991
+ ],
+ [
+ 139.8158931098901,
+ 35.66374590990991
+ ],
+ [
+ 139.8158931098901,
+ 35.663926090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyoBashiMinami.2592.2",
+ "name": "東陽橋南",
+ "latitude": 35.66402,
+ "longitude": 139.816201,
+ "polygon": [
+ [
+ 139.81609110989012,
+ 35.66411009009009
+ ],
+ [
+ 139.8163108901099,
+ 35.66411009009009
+ ],
+ [
+ 139.8163108901099,
+ 35.66392990990991
+ ],
+ [
+ 139.81609110989012,
+ 35.66392990990991
+ ],
+ [
+ 139.81609110989012,
+ 35.66411009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HonKomagomeGochome.2593.1",
+ "name": "本駒込五丁目",
+ "latitude": 35.733551,
+ "longitude": 139.753845,
+ "polygon": [
+ [
+ 139.75373510989013,
+ 35.73364109009009
+ ],
+ [
+ 139.7539548901099,
+ 35.73364109009009
+ ],
+ [
+ 139.7539548901099,
+ 35.73346090990991
+ ],
+ [
+ 139.75373510989013,
+ 35.73346090990991
+ ],
+ [
+ 139.75373510989013,
+ 35.73364109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.KaetsuGakuenNishi.2594.1",
+ "name": "かえつ学園西",
+ "latitude": 35.639726,
+ "longitude": 139.79368,
+ "polygon": [
+ [
+ 139.7935701098901,
+ 35.63981609009009
+ ],
+ [
+ 139.79378989010988,
+ 35.63981609009009
+ ],
+ [
+ 139.79378989010988,
+ 35.63963590990991
+ ],
+ [
+ 139.7935701098901,
+ 35.63963590990991
+ ],
+ [
+ 139.7935701098901,
+ 35.63981609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HanaKoganeiStationKitaguchi.2595.1",
+ "name": "花小金井駅北口",
+ "latitude": 35.726457,
+ "longitude": 139.51309,
+ "polygon": [
+ [
+ 139.51298010989012,
+ 35.726547090090094
+ ],
+ [
+ 139.5131998901099,
+ 35.726547090090094
+ ],
+ [
+ 139.5131998901099,
+ 35.72636690990991
+ ],
+ [
+ 139.51298010989012,
+ 35.72636690990991
+ ],
+ [
+ 139.51298010989012,
+ 35.726547090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HanaKoganeiStationKitaguchi.2595.2",
+ "name": "花小金井駅北口",
+ "latitude": 35.726752,
+ "longitude": 139.513281,
+ "polygon": [
+ [
+ 139.51317110989012,
+ 35.72684209009009
+ ],
+ [
+ 139.5133908901099,
+ 35.72684209009009
+ ],
+ [
+ 139.5133908901099,
+ 35.72666190990991
+ ],
+ [
+ 139.51317110989012,
+ 35.72666190990991
+ ],
+ [
+ 139.51317110989012,
+ 35.72684209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShijoMaeStation.2596.1",
+ "name": "市場前駅前",
+ "latitude": 35.6464,
+ "longitude": 139.78699,
+ "polygon": [
+ [
+ 139.78688010989012,
+ 35.64649009009009
+ ],
+ [
+ 139.7870998901099,
+ 35.64649009009009
+ ],
+ [
+ 139.7870998901099,
+ 35.64630990990991
+ ],
+ [
+ 139.78688010989012,
+ 35.64630990990991
+ ],
+ [
+ 139.78688010989012,
+ 35.64649009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ShijoMaeStation.2596.2",
+ "name": "市場前駅前",
+ "latitude": 35.646611,
+ "longitude": 139.786791,
+ "polygon": [
+ [
+ 139.7866811098901,
+ 35.64670109009009
+ ],
+ [
+ 139.78690089010988,
+ 35.64670109009009
+ ],
+ [
+ 139.78690089010988,
+ 35.64652090990991
+ ],
+ [
+ 139.7866811098901,
+ 35.64652090990991
+ ],
+ [
+ 139.7866811098901,
+ 35.64670109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuShijo.2597.1",
+ "name": "豊洲市場",
+ "latitude": 35.643522,
+ "longitude": 139.784051,
+ "polygon": [
+ [
+ 139.78394110989012,
+ 35.64361209009009
+ ],
+ [
+ 139.7841608901099,
+ 35.64361209009009
+ ],
+ [
+ 139.7841608901099,
+ 35.64343190990991
+ ],
+ [
+ 139.78394110989012,
+ 35.64343190990991
+ ],
+ [
+ 139.78394110989012,
+ 35.64361209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ToyosuShijo.2597.2",
+ "name": "豊洲市場",
+ "latitude": 35.643421,
+ "longitude": 139.784154,
+ "polygon": [
+ [
+ 139.78404410989012,
+ 35.64351109009009
+ ],
+ [
+ 139.78426389010988,
+ 35.64351109009009
+ ],
+ [
+ 139.78426389010988,
+ 35.643330909909906
+ ],
+ [
+ 139.78404410989012,
+ 35.643330909909906
+ ],
+ [
+ 139.78404410989012,
+ 35.64351109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuisanNakaoroshiTo.2598.1",
+ "name": "水産仲卸棟",
+ "latitude": 35.645227,
+ "longitude": 139.781963,
+ "polygon": [
+ [
+ 139.7818531098901,
+ 35.64531709009009
+ ],
+ [
+ 139.78207289010987,
+ 35.64531709009009
+ ],
+ [
+ 139.78207289010987,
+ 35.64513690990991
+ ],
+ [
+ 139.7818531098901,
+ 35.64513690990991
+ ],
+ [
+ 139.7818531098901,
+ 35.64531709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SuisanNakaoroshiTo.2598.2",
+ "name": "水産仲卸棟",
+ "latitude": 35.645137,
+ "longitude": 139.781857,
+ "polygon": [
+ [
+ 139.78174710989012,
+ 35.64522709009009
+ ],
+ [
+ 139.78196689010989,
+ 35.64522709009009
+ ],
+ [
+ 139.78196689010989,
+ 35.64504690990991
+ ],
+ [
+ 139.78174710989012,
+ 35.64504690990991
+ ],
+ [
+ 139.78174710989012,
+ 35.64522709009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroSunshineCity.2604.1",
+ "name": "池袋サンシャインシティ",
+ "latitude": 35.728778,
+ "longitude": 139.72111,
+ "polygon": [
+ [
+ 139.72100010989013,
+ 35.72886809009009
+ ],
+ [
+ 139.7212198901099,
+ 35.72886809009009
+ ],
+ [
+ 139.7212198901099,
+ 35.72868790990991
+ ],
+ [
+ 139.72100010989013,
+ 35.72868790990991
+ ],
+ [
+ 139.72100010989013,
+ 35.72886809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.IkebukuroSunshineCity.2604.2",
+ "name": "池袋サンシャインシティ",
+ "latitude": 35.728088,
+ "longitude": 139.720082,
+ "polygon": [
+ [
+ 139.7199721098901,
+ 35.72817809009009
+ ],
+ [
+ 139.72019189010987,
+ 35.72817809009009
+ ],
+ [
+ 139.72019189010987,
+ 35.72799790990991
+ ],
+ [
+ 139.7199721098901,
+ 35.72799790990991
+ ],
+ [
+ 139.7199721098901,
+ 35.72817809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.ImadoNichome.2605.1",
+ "name": "今戸二丁目",
+ "latitude": 35.723328,
+ "longitude": 139.804479,
+ "polygon": [
+ [
+ 139.8043691098901,
+ 35.72341809009009
+ ],
+ [
+ 139.80458889010987,
+ 35.72341809009009
+ ],
+ [
+ 139.80458889010987,
+ 35.72323790990991
+ ],
+ [
+ 139.8043691098901,
+ 35.72323790990991
+ ],
+ [
+ 139.8043691098901,
+ 35.72341809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtaShijoKitamonHigashi.2606.1",
+ "name": "大田市場北門東",
+ "latitude": 35.582766,
+ "longitude": 139.76276,
+ "polygon": [
+ [
+ 139.7626501098901,
+ 35.58285609009009
+ ],
+ [
+ 139.76286989010987,
+ 35.58285609009009
+ ],
+ [
+ 139.76286989010987,
+ 35.58267590990991
+ ],
+ [
+ 139.7626501098901,
+ 35.58267590990991
+ ],
+ [
+ 139.7626501098901,
+ 35.58285609009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.OtaShijoKitamonNishi.2607.2",
+ "name": "大田市場北門西",
+ "latitude": 35.582756,
+ "longitude": 139.760987,
+ "polygon": [
+ [
+ 139.76087710989012,
+ 35.582846090090094
+ ],
+ [
+ 139.76109689010988,
+ 35.582846090090094
+ ],
+ [
+ 139.76109689010988,
+ 35.58266590990991
+ ],
+ [
+ 139.76087710989012,
+ 35.58266590990991
+ ],
+ [
+ 139.76087710989012,
+ 35.582846090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NihonJoshiDai.2608.1",
+ "name": "日本女子大(構内)",
+ "latitude": 35.716311,
+ "longitude": 139.720389,
+ "polygon": [
+ [
+ 139.72027910989013,
+ 35.71640109009009
+ ],
+ [
+ 139.7204988901099,
+ 35.71640109009009
+ ],
+ [
+ 139.7204988901099,
+ 35.71622090990991
+ ],
+ [
+ 139.72027910989013,
+ 35.71622090990991
+ ],
+ [
+ 139.72027910989013,
+ 35.71640109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoJoshiIdaiAdachiIryoCenter.2617.2",
+ "name": "東京女子医大足立医療センター",
+ "latitude": 35.772658,
+ "longitude": 139.76598,
+ "polygon": [
+ [
+ 139.76587010989013,
+ 35.77274809009009
+ ],
+ [
+ 139.7660898901099,
+ 35.77274809009009
+ ],
+ [
+ 139.7660898901099,
+ 35.77256790990991
+ ],
+ [
+ 139.76587010989013,
+ 35.77256790990991
+ ],
+ [
+ 139.76587010989013,
+ 35.77274809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoJoshiIdaiAdachiIryoCenterMae.2622.1",
+ "name": "東京女子医大足立医療センター前",
+ "latitude": 35.773551,
+ "longitude": 139.765527,
+ "polygon": [
+ [
+ 139.7654171098901,
+ 35.77364109009009
+ ],
+ [
+ 139.76563689010987,
+ 35.77364109009009
+ ],
+ [
+ 139.76563689010987,
+ 35.77346090990991
+ ],
+ [
+ 139.7654171098901,
+ 35.77346090990991
+ ],
+ [
+ 139.7654171098901,
+ 35.77364109009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.TokyoJoshiIdaiAdachiIryoCenterMae.2622.2",
+ "name": "東京女子医大足立医療センター前",
+ "latitude": 35.773918,
+ "longitude": 139.765649,
+ "polygon": [
+ [
+ 139.7655391098901,
+ 35.77400809009009
+ ],
+ [
+ 139.76575889010988,
+ 35.77400809009009
+ ],
+ [
+ 139.76575889010988,
+ 35.77382790990991
+ ],
+ [
+ 139.7655391098901,
+ 35.77382790990991
+ ],
+ [
+ 139.7655391098901,
+ 35.77400809009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UminomoriSuijoKyogijo.2623.2",
+ "name": "海の森水上競技場",
+ "latitude": 35.60806,
+ "longitude": 139.816477,
+ "polygon": [
+ [
+ 139.8163671098901,
+ 35.60815009009009
+ ],
+ [
+ 139.81658689010987,
+ 35.60815009009009
+ ],
+ [
+ 139.81658689010987,
+ 35.60796990990991
+ ],
+ [
+ 139.8163671098901,
+ 35.60796990990991
+ ],
+ [
+ 139.8163671098901,
+ 35.60815009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UminomoriKoen.2630.2",
+ "name": "海の森公園",
+ "latitude": 35.604709,
+ "longitude": 139.809001,
+ "polygon": [
+ [
+ 139.8088911098901,
+ 35.60479909009009
+ ],
+ [
+ 139.80911089010988,
+ 35.60479909009009
+ ],
+ [
+ 139.80911089010988,
+ 35.60461890990991
+ ],
+ [
+ 139.8088911098901,
+ 35.60461890990991
+ ],
+ [
+ 139.8088911098901,
+ 35.60479909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.SugawarabashiNishi.2625.4",
+ "name": "菅原橋西",
+ "latitude": 35.716214,
+ "longitude": 139.873213,
+ "polygon": [
+ [
+ 139.8731031098901,
+ 35.71630409009009
+ ],
+ [
+ 139.87332289010988,
+ 35.71630409009009
+ ],
+ [
+ 139.87332289010988,
+ 35.71612390990991
+ ],
+ [
+ 139.8731031098901,
+ 35.71612390990991
+ ],
+ [
+ 139.8731031098901,
+ 35.71630409009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiGochomeTerminal.2627.1",
+ "name": "晴海五丁目ターミナル",
+ "latitude": 35.652299,
+ "longitude": 139.773363,
+ "polygon": [
+ [
+ 139.7732531098901,
+ 35.65238909009009
+ ],
+ [
+ 139.77347289010987,
+ 35.65238909009009
+ ],
+ [
+ 139.77347289010987,
+ 35.65220890990991
+ ],
+ [
+ 139.7732531098901,
+ 35.65220890990991
+ ],
+ [
+ 139.7732531098901,
+ 35.65238909009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiGochomeTerminal.2627.2",
+ "name": "晴海五丁目ターミナル",
+ "latitude": 35.65216,
+ "longitude": 139.773195,
+ "polygon": [
+ [
+ 139.7730851098901,
+ 35.65225009009009
+ ],
+ [
+ 139.77330489010987,
+ 35.65225009009009
+ ],
+ [
+ 139.77330489010987,
+ 35.65206990990991
+ ],
+ [
+ 139.7730851098901,
+ 35.65206990990991
+ ],
+ [
+ 139.7730851098901,
+ 35.65225009009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiFutoKoenKita.2628.2",
+ "name": "晴海ふ頭公園北",
+ "latitude": 35.648823,
+ "longitude": 139.771797,
+ "polygon": [
+ [
+ 139.7716871098901,
+ 35.64891309009009
+ ],
+ [
+ 139.77190689010988,
+ 35.64891309009009
+ ],
+ [
+ 139.77190689010988,
+ 35.64873290990991
+ ],
+ [
+ 139.7716871098901,
+ 35.64873290990991
+ ],
+ [
+ 139.7716871098901,
+ 35.64891309009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.HarumiFutoKoenMinami.2629.1",
+ "name": "晴海ふ頭公園南",
+ "latitude": 35.648287,
+ "longitude": 139.772342,
+ "polygon": [
+ [
+ 139.77223210989013,
+ 35.648377090090094
+ ],
+ [
+ 139.7724518901099,
+ 35.648377090090094
+ ],
+ [
+ 139.7724518901099,
+ 35.64819690990991
+ ],
+ [
+ 139.77223210989013,
+ 35.64819690990991
+ ],
+ [
+ 139.77223210989013,
+ 35.648377090090094
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.UminomoriKoen.2630.1",
+ "name": "海の森公園",
+ "latitude": 35.605312,
+ "longitude": 139.810113,
+ "polygon": [
+ [
+ 139.81000310989012,
+ 35.60540209009009
+ ],
+ [
+ 139.81022289010988,
+ 35.60540209009009
+ ],
+ [
+ 139.81022289010988,
+ 35.60522190990991
+ ],
+ [
+ 139.81000310989012,
+ 35.60522190990991
+ ],
+ [
+ 139.81000310989012,
+ 35.60540209009009
+ ]
+ ]
+ },
+ {
+ "id": "odpt.BusstopPole:Toei.NIHONJOSHIDAIMAE.3334.1",
+ "name": "日本女子大前(豊明小学校前)",
+ "latitude": 35.716309,
+ "longitude": 139.719117,
+ "polygon": [
+ [
+ 139.71900710989013,
+ 35.71639909009009
+ ],
+ [
+ 139.7192268901099,
+ 35.71639909009009
+ ],
+ [
+ 139.7192268901099,
+ 35.71621890990991
+ ],
+ [
+ 139.71900710989013,
+ 35.71621890990991
+ ],
+ [
+ 139.71900710989013,
+ 35.71639909009009
+ ]
+ ]
+ }
+]
diff --git a/api/data/violation_rates.json b/api/data/violation_rates.json
new file mode 100644
index 0000000..3a3d0ac
--- /dev/null
+++ b/api/data/violation_rates.json
@@ -0,0 +1,758 @@
+[
+ {
+ "type": "intersection",
+ "violation_rate": 0.37,
+ "violation_count": 539,
+ "coordinate": [
+ 139.7493886,
+ 35.6703292
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.46,
+ "violation_count": 683,
+ "coordinate": [
+ 139.73644311337648,
+ 35.6781295848081
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.52,
+ "violation_count": 1455,
+ "coordinate": [
+ 139.729586,
+ 35.6859175
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.32,
+ "violation_count": 582,
+ "coordinate": [
+ 139.7346872,
+ 35.6918754
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.5,
+ "violation_count": 1736,
+ "coordinate": [
+ 139.7447926,
+ 35.7026267
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.48,
+ "violation_count": 2133,
+ "coordinate": [
+ 139.7553139,
+ 35.702338
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.54,
+ "violation_count": 2240,
+ "coordinate": [
+ 139.7754284,
+ 35.6955124
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.55,
+ "violation_count": 2015,
+ "coordinate": [
+ 139.7755534,
+ 35.6894263
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.5700000000000001,
+ "violation_count": 1805,
+ "coordinate": [
+ 139.7671822,
+ 35.6695695
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.91,
+ "violation_count": 1903,
+ "coordinate": [
+ 139.61856182319335,
+ 35.74914425979588
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.29,
+ "violation_count": 1195,
+ "coordinate": [
+ 139.703173,
+ 35.657964
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.53,
+ "violation_count": 1986,
+ "coordinate": [
+ 139.7045987,
+ 35.6803745
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.28,
+ "violation_count": 965,
+ "coordinate": [
+ 139.7040462,
+ 35.6897029
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.36,
+ "violation_count": 1453,
+ "coordinate": [
+ 139.7057469,
+ 35.6923881
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.68,
+ "violation_count": 3133,
+ "coordinate": [
+ 139.7114216,
+ 35.7143918
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.78,
+ "violation_count": 3873,
+ "coordinate": [
+ 139.71688912911642,
+ 35.733540914349774
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.8300000000000001,
+ "violation_count": 4634,
+ "coordinate": [
+ 139.7281901,
+ 35.744238
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.88,
+ "violation_count": 4114,
+ "coordinate": [
+ 139.7381068,
+ 35.7534992
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.72,
+ "violation_count": 4711,
+ "coordinate": [
+ 139.7381068,
+ 35.7534992
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.91,
+ "violation_count": 5472,
+ "coordinate": [
+ 139.77668492055287,
+ 35.73707582008481
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.81,
+ "violation_count": 5112,
+ "coordinate": [
+ 139.7918794,
+ 35.7300725
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.8300000000000001,
+ "violation_count": 4981,
+ "coordinate": [
+ 139.8182983,
+ 35.7224111
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.71,
+ "violation_count": 4118,
+ "coordinate": [
+ 139.8253992,
+ 35.7017882
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.8,
+ "violation_count": 5463,
+ "coordinate": [
+ 139.8257935,
+ 35.6966427
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.91,
+ "violation_count": 5162,
+ "coordinate": [
+ 139.8267867,
+ 35.6748322
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.53,
+ "violation_count": 2908,
+ "coordinate": [
+ 139.7606012,
+ 35.7075224
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.71,
+ "violation_count": 2420,
+ "coordinate": [
+ 139.7781957,
+ 35.712167
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.65,
+ "violation_count": 3713,
+ "coordinate": [
+ 139.789118,
+ 35.7016374
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.55,
+ "violation_count": 2080,
+ "coordinate": [
+ 139.7843588,
+ 35.6948849
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.46,
+ "violation_count": 1362,
+ "coordinate": [
+ 139.7706445,
+ 35.6666091
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.47000000000000003,
+ "violation_count": 1318,
+ "coordinate": [
+ 139.7040462,
+ 35.6897029
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.34,
+ "violation_count": 1172,
+ "coordinate": [
+ 139.7057469,
+ 35.6923881
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.33,
+ "violation_count": 1617,
+ "coordinate": [
+ 139.6990983,
+ 35.6936998
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.72,
+ "violation_count": 1228,
+ "coordinate": [
+ 139.8949207,
+ 35.7357624
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.81,
+ "violation_count": 4315,
+ "coordinate": [
+ 139.7352884,
+ 35.5776532
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.52,
+ "violation_count": 2126,
+ "coordinate": [
+ 139.71174280399708,
+ 35.595574962107726
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.81,
+ "violation_count": 3266,
+ "coordinate": [
+ 139.69750588067566,
+ 35.60369374826183
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.74,
+ "violation_count": 3681,
+ "coordinate": [
+ 139.6804688591751,
+ 35.62061383074898
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.66,
+ "violation_count": 5546,
+ "coordinate": [
+ 139.66456635420562,
+ 35.635579926108
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.65,
+ "violation_count": 4399,
+ "coordinate": [
+ 139.6607249,
+ 35.6425111
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.68,
+ "violation_count": 5059,
+ "coordinate": [
+ 139.66069467727505,
+ 35.67249423961594
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.6900000000000001,
+ "violation_count": 4846,
+ "coordinate": [
+ 139.65471440043694,
+ 35.69804643666433
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.85,
+ "violation_count": 2420,
+ "coordinate": [
+ 139.6626080714766,
+ 35.734829337881045
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9400000000000001,
+ "violation_count": 4453,
+ "coordinate": [
+ 139.6882187,
+ 35.7551214
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.81,
+ "violation_count": 2640,
+ "coordinate": [
+ 139.73421176264125,
+ 35.76954855098466
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 5599,
+ "coordinate": [
+ 139.7701011602601,
+ 35.77818927359609
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 7525,
+ "coordinate": [
+ 139.8030779954864,
+ 35.77865808132008
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.85,
+ "violation_count": 1781,
+ "coordinate": [
+ 139.87000820435946,
+ 35.7283801312095
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.98,
+ "violation_count": 5370,
+ "coordinate": [
+ 139.8816011,
+ 35.7025451
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.93,
+ "violation_count": 5745,
+ "coordinate": [
+ 139.8813149,
+ 35.683088
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.91,
+ "violation_count": 4996,
+ "coordinate": [
+ 139.87347243009518,
+ 35.667706454466035
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9500000000000001,
+ "violation_count": 5166,
+ "coordinate": [
+ 139.7404117,
+ 35.5524133
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9500000000000001,
+ "violation_count": 8912,
+ "coordinate": [
+ 139.72215036067402,
+ 35.55795851440231
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.74,
+ "violation_count": 2712,
+ "coordinate": [
+ 139.69647581343412,
+ 35.56549107698808
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.81,
+ "violation_count": 1311,
+ "coordinate": [
+ 139.64741095476435,
+ 35.605049681493206
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9500000000000001,
+ "violation_count": 4148,
+ "coordinate": [
+ 139.6312517,
+ 35.621053
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.88,
+ "violation_count": 4787,
+ "coordinate": [
+ 139.62118488728862,
+ 35.637039398730195
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.88,
+ "violation_count": 6245,
+ "coordinate": [
+ 139.6149418,
+ 35.7080932
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.91,
+ "violation_count": 3052,
+ "coordinate": [
+ 139.62875264214193,
+ 35.74475154785147
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9,
+ "violation_count": 3165,
+ "coordinate": [
+ 139.66455088586707,
+ 35.76392383484508
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.91,
+ "violation_count": 4998,
+ "coordinate": [
+ 139.6910135,
+ 35.7800443
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.8200000000000001,
+ "violation_count": 4146,
+ "coordinate": [
+ 139.7205381,
+ 35.7836989
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 5142,
+ "coordinate": [
+ 139.539761,
+ 35.6566175
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.98,
+ "violation_count": 6707,
+ "coordinate": [
+ 139.5487061,
+ 35.6818041
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.85,
+ "violation_count": 3207,
+ "coordinate": [
+ 139.5537404,
+ 35.7149697
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.89,
+ "violation_count": 2752,
+ "coordinate": [
+ 139.5576914,
+ 35.7246091
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.92,
+ "violation_count": 3448,
+ "coordinate": [
+ 139.5575435,
+ 35.7320397
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.91,
+ "violation_count": 1514,
+ "coordinate": [
+ 139.4427066,
+ 35.6328933
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.89,
+ "violation_count": 2214,
+ "coordinate": [
+ 139.4534784,
+ 35.6485934
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.84,
+ "violation_count": 2762,
+ "coordinate": [
+ 139.4651541,
+ 35.7173378
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9,
+ "violation_count": 3058,
+ "coordinate": [
+ 139.4668937,
+ 35.7524377
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9400000000000001,
+ "violation_count": 2525,
+ "coordinate": [
+ 139.3827156,
+ 35.7268745
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 1311,
+ "coordinate": [
+ 139.3836785,
+ 35.7522328
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 711,
+ "coordinate": [
+ 139.35346521927084,
+ 35.64329264346841
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 3126,
+ "coordinate": [
+ 139.328711,
+ 35.660316
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 946,
+ "coordinate": [
+ 139.3458392,
+ 35.6843486
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9400000000000001,
+ "violation_count": 775,
+ "coordinate": [
+ 139.3471644,
+ 35.6854991
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.97,
+ "violation_count": 1233,
+ "coordinate": [
+ 139.3384039,
+ 35.7141643
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 797,
+ "coordinate": [
+ 139.3384039,
+ 35.7141643
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.96,
+ "violation_count": 1341,
+ "coordinate": [
+ 139.3404489,
+ 35.7209279
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.87,
+ "violation_count": 499,
+ "coordinate": [
+ 139.3428964,
+ 35.7240174
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.9500000000000001,
+ "violation_count": 3741,
+ "coordinate": [
+ 139.5415144,
+ 35.7318092
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.85,
+ "violation_count": 3638,
+ "coordinate": [
+ 139.4752234,
+ 35.6733467
+ ]
+ },
+ {
+ "type": "intersection",
+ "violation_rate": 0.77,
+ "violation_count": 220,
+ "coordinate": [
+ 139.2283729,
+ 35.7316444
+ ]
+ }
+]
diff --git a/api/go.mod b/api/go.mod
index 58bea08..61fca41 100644
--- a/api/go.mod
+++ b/api/go.mod
@@ -4,6 +4,8 @@ go 1.24.5
require (
github.com/gin-gonic/gin v1.10.1
+ github.com/google/uuid v1.6.0
+ github.com/joho/godotenv v1.5.1
github.com/swaggo/files v1.0.1
github.com/swaggo/gin-swagger v1.6.0
github.com/swaggo/swag v1.16.5
diff --git a/api/go.sum b/api/go.sum
index 5bad0ca..fd8a725 100644
--- a/api/go.sum
+++ b/api/go.sum
@@ -40,6 +40,10 @@ github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MG
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
+github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
+github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
+github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0=
+github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=
github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
diff --git a/api/health.go b/api/health.go
new file mode 100644
index 0000000..501fb0e
--- /dev/null
+++ b/api/health.go
@@ -0,0 +1,23 @@
+package main
+import (
+ "net/http"
+ "time"
+ "github.com/gin-gonic/gin"
+)
+
+// getHealth godoc
+// @Summary Health check endpoint
+// @Description Returns the health status of the API
+// @Tags health
+// @Accept json
+// @Produce json
+// @Success 200 {object} map[string]interface{}
+// @Router /health [get]
+func getHealth(c *gin.Context) {
+ c.JSON(http.StatusOK, gin.H{
+ "status": "healthy",
+ "timestamp": time.Now().Format(time.RFC3339),
+ "service": "template-mobile-app-api",
+ "version": "1.0.0",
+ })
+}
\ No newline at end of file
diff --git a/api/main.go b/api/main.go
index 85f95cd..9ccb276 100644
--- a/api/main.go
+++ b/api/main.go
@@ -3,16 +3,17 @@ package main
import (
"encoding/json"
"fmt"
- "io"
- "net/http"
- "strconv"
- "time"
+ "os"
"github.com/gin-gonic/gin"
swaggerFiles "github.com/swaggo/files"
ginSwagger "github.com/swaggo/gin-swagger"
_ "template-mobile-app-api/docs"
+
+ "github.com/joho/godotenv"
+
+ util "template-mobile-app-api/util"
)
// @title Template Mobile App API
@@ -21,30 +22,15 @@ import (
// @host localhost:8080
// @BasePath /api/v1
-// Post represents a post from JSONPlaceholder
-type Post struct {
- UserID int `json:"userId" example:"1"`
- ID int `json:"id" example:"1"`
- Title string `json:"title" example:"Sample Post Title"`
- Body string `json:"body" example:"Sample post body content"`
-}
-
-// PostResponse represents the formatted response
-type PostResponse struct {
- ID int `json:"id" example:"1"`
- Title string `json:"title" example:"Sample Post Title"`
- Body string `json:"body" example:"Sample post body content"`
- UserID int `json:"userId" example:"1"`
- FormattedAt string `json:"formattedAt" example:"2024-01-01T12:00:00Z"`
-}
+func main() {
+ loadWarningIntersection()
-// ErrorResponse represents an error response
-type ErrorResponse struct {
- Error string `json:"error" example:"Internal server error"`
- Message string `json:"message" example:"Failed to fetch data"`
-}
+ // Load environment variables from .env file
+ err := godotenv.Load()
+ if err != nil {
+ panic("Error loading .env file")
+ }
-func main() {
r := gin.Default()
// Add CORS middleware
@@ -67,157 +53,32 @@ func main() {
// API routes
v1 := r.Group("/api/v1")
{
- v1.GET("/posts", getPosts)
- v1.GET("/posts/:id", getPostByID)
v1.GET("/health", getHealth)
+ // 経路検索
+ v1.GET("/directions/bicycle", util.GetDirections)
+ // 目的地検索
+ v1.GET("/search", util.GetSearch)
+ //注意点
+ v1.GET("/warning_point", util.GetWarningPoints)
+ //違反率
+ v1.GET("/violation_rates", util.GetViolationRates)
}
// Start server on port 8080
- r.Run(":8080")
-}
-
-// getPosts godoc
-// @Summary Get all posts from JSONPlaceholder
-// @Description Fetch all posts from JSONPlaceholder API and return formatted response
-// @Tags posts
-// @Accept json
-// @Produce json
-// @Success 200 {array} PostResponse
-// @Failure 500 {object} ErrorResponse
-// @Router /posts [get]
-func getPosts(c *gin.Context) {
- // Fetch data from JSONPlaceholder
- resp, err := http.Get("https://jsonplaceholder.typicode.com/posts")
- if err != nil {
- c.JSON(http.StatusInternalServerError, ErrorResponse{
- Error: "Failed to fetch data",
- Message: err.Error(),
- })
- return
- }
- defer resp.Body.Close()
-
- body, err := io.ReadAll(resp.Body)
- if err != nil {
- c.JSON(http.StatusInternalServerError, ErrorResponse{
- Error: "Failed to read response",
- Message: err.Error(),
- })
- return
- }
-
- var posts []Post
- if err := json.Unmarshal(body, &posts); err != nil {
- c.JSON(http.StatusInternalServerError, ErrorResponse{
- Error: "Failed to parse response",
- Message: err.Error(),
- })
- return
- }
-
- // Format the response
- var formattedPosts []PostResponse
- now := time.Now().Format(time.RFC3339)
-
- for _, post := range posts {
- formattedPosts = append(formattedPosts, PostResponse{
- ID: post.ID,
- Title: post.Title,
- Body: post.Body,
- UserID: post.UserID,
- FormattedAt: now,
- })
- }
-
- c.JSON(http.StatusOK, formattedPosts)
+ r.Run("0.0.0.0:8080")
}
-// getPostByID godoc
-// @Summary Get a post by ID from JSONPlaceholder
-// @Description Fetch a specific post by ID from JSONPlaceholder API and return formatted response
-// @Tags posts
-// @Accept json
-// @Produce json
-// @Param id path int true "Post ID"
-// @Success 200 {object} PostResponse
-// @Failure 400 {object} ErrorResponse
-// @Failure 404 {object} ErrorResponse
-// @Failure 500 {object} ErrorResponse
-// @Router /posts/{id} [get]
-func getPostByID(c *gin.Context) {
- idParam := c.Param("id")
- id, err := strconv.Atoi(idParam)
+func loadWarningIntersection() {
+ warningIntersectionFile, err := os.Open("warningIntersection.json")
if err != nil {
- c.JSON(http.StatusBadRequest, ErrorResponse{
- Error: "Invalid ID format",
- Message: "ID must be a valid integer",
- })
+ fmt.Println("ファイルオープンエラー:", err)
return
}
- // Fetch data from JSONPlaceholder
- url := fmt.Sprintf("https://jsonplaceholder.typicode.com/posts/%d", id)
- resp, err := http.Get(url)
- if err != nil {
- c.JSON(http.StatusInternalServerError, ErrorResponse{
- Error: "Failed to fetch data",
- Message: err.Error(),
- })
+ decoder := json.NewDecoder(warningIntersectionFile)
+ if err := decoder.Decode(&util.WorningIntersectionPoints); err != nil {
+ fmt.Println("JSONデコードエラー:", err)
return
}
- defer resp.Body.Close()
-
- if resp.StatusCode == http.StatusNotFound {
- c.JSON(http.StatusNotFound, ErrorResponse{
- Error: "Post not found",
- Message: fmt.Sprintf("Post with ID %d not found", id),
- })
- return
- }
-
- body, err := io.ReadAll(resp.Body)
- if err != nil {
- c.JSON(http.StatusInternalServerError, ErrorResponse{
- Error: "Failed to read response",
- Message: err.Error(),
- })
- return
- }
-
- var post Post
- if err := json.Unmarshal(body, &post); err != nil {
- c.JSON(http.StatusInternalServerError, ErrorResponse{
- Error: "Failed to parse response",
- Message: err.Error(),
- })
- return
- }
-
- // Format the response
- formattedPost := PostResponse{
- ID: post.ID,
- Title: post.Title,
- Body: post.Body,
- UserID: post.UserID,
- FormattedAt: time.Now().Format(time.RFC3339),
- }
-
- c.JSON(http.StatusOK, formattedPost)
-}
-
-// getHealth godoc
-// @Summary Health check endpoint
-// @Description Returns the health status of the API
-// @Tags health
-// @Accept json
-// @Produce json
-// @Success 200 {object} map[string]interface{}
-// @Router /health [get]
-func getHealth(c *gin.Context) {
- c.JSON(http.StatusOK, gin.H{
- "status": "healthy",
- "timestamp": time.Now().Format(time.RFC3339),
- "service": "template-mobile-app-api",
- "version": "1.0.0",
- })
+ defer warningIntersectionFile.Close()
}
diff --git a/api/util/avoid_busstop.go b/api/util/avoid_busstop.go
new file mode 100644
index 0000000..d6a7610
--- /dev/null
+++ b/api/util/avoid_busstop.go
@@ -0,0 +1,162 @@
+package util
+
+import (
+ "bytes"
+ "encoding/json"
+ "fmt"
+ "io"
+ "net/http"
+ "os"
+)
+
+// BusStop represents a bus stop with its polygon data
+type BusStop struct {
+ ID string `json:"id"`
+ Name string `json:"name"`
+ Latitude float64 `json:"latitude"`
+ Longitude float64 `json:"longitude"`
+ Polygon [][]float64 `json:"polygon"`
+}
+
+// Coordinate represents a longitude, latitude pair
+type Coordinate [2]float64
+
+// RouteRequest represents the request body for OpenRouteService API
+type RouteRequest struct {
+ Coordinates []Coordinate `json:"coordinates"`
+ Options map[string]interface{} `json:"options,omitempty"`
+}
+
+const (
+ OpenRouteServiceURL = "https://api.openrouteservice.org/v2/directions/cycling-road/geojson"
+)
+
+// AvoidBusStops reads bus stops data and gets a route avoiding all bus stop polygons
+func AvoidBusStops(startCoord, endCoord Coordinate) (ORSGeometry, error) {
+ // Read bus stops data
+ busStopsData, err := os.ReadFile("data/bus_stops.json")
+ if err != nil {
+ return ORSGeometry{}, fmt.Errorf("failed to read bus stops file: %v", err)
+ }
+
+ var busStops []BusStop
+ if err := json.Unmarshal(busStopsData, &busStops); err != nil {
+ return ORSGeometry{}, fmt.Errorf("failed to parse bus stops JSON: %v", err)
+ }
+
+ // Convert bus stop polygons to avoid polygons
+ var avoidPolygons [][][][]float64
+ for _, stop := range busStops {
+ if len(stop.Polygon) > 0 {
+ avoidPolygons = append(avoidPolygons, [][][]float64{stop.Polygon})
+ }
+ }
+
+ // Create request body
+ requestBody := RouteRequest{
+ Coordinates: []Coordinate{startCoord, endCoord},
+ Options: map[string]interface{}{
+ "avoid_polygons": map[string]interface{}{
+ "type": "MultiPolygon",
+ "coordinates": avoidPolygons,
+ },
+ },
+ }
+
+ // Make API request
+ geometry, err := makeOpenRouteServiceRequest(requestBody)
+ if err != nil {
+ return ORSGeometry{}, err
+ }
+
+ return *geometry, nil
+}
+
+// GetRouteAvoidingSinglePolygon gets a route avoiding a single polygon
+func GetRouteAvoidingSinglePolygon(startCoord, endCoord Coordinate, avoidPolygon [][]float64) (*ORSGeometry, error) {
+ requestBody := RouteRequest{
+ Coordinates: []Coordinate{startCoord, endCoord},
+ Options: map[string]interface{}{
+ "avoid_polygons": map[string]interface{}{
+ "type": "Polygon",
+ "coordinates": [][][]float64{avoidPolygon},
+ },
+ },
+ }
+
+ return makeOpenRouteServiceRequest(requestBody)
+}
+
+// makeOpenRouteServiceRequest makes the actual HTTP request to OpenRouteService API
+func makeOpenRouteServiceRequest(requestBody RouteRequest) (*ORSGeometry, error) {
+ // Marshal request body to JSON
+ jsonBody, err := json.Marshal(requestBody)
+ if err != nil {
+ return nil, fmt.Errorf("failed to marshal request body: %v", err)
+ }
+
+ // Create HTTP request
+ req, err := http.NewRequest("POST", OpenRouteServiceURL, bytes.NewBuffer(jsonBody))
+ if err != nil {
+ return nil, fmt.Errorf("failed to create request: %v", err)
+ }
+
+ // Set headers
+ req.Header.Set("Authorization", os.Getenv("OPEN_ROUTE_SERVICE_API_KEY"))
+ req.Header.Set("Content-Type", "application/json")
+ req.Header.Set("User-Agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:142.0) Gecko/20100101 Firefox/142.0")
+
+ // Make HTTP request
+ client := &http.Client{}
+ resp, err := client.Do(req)
+ if err != nil {
+ return nil, fmt.Errorf("failed to make request: %v", err)
+ }
+ defer resp.Body.Close()
+
+ // Read response body
+ body, err := io.ReadAll(resp.Body)
+ if err != nil {
+ return nil, fmt.Errorf("failed to read response: %v", err)
+ }
+
+ // Check status code
+ if resp.StatusCode != http.StatusOK {
+ return nil, fmt.Errorf("HTTP error! status: %d, body: %s", resp.StatusCode, string(body))
+ }
+
+ // Parse JSON response and extract geometry
+ var response map[string]interface{}
+ if err := json.Unmarshal(body, &response); err != nil {
+ return nil, fmt.Errorf("failed to parse response JSON: %v", err)
+ }
+
+ // Extract geometry from features[0].geometry
+ features, ok := response["features"].([]interface{})
+ if !ok || len(features) == 0 {
+ return nil, fmt.Errorf("no features found in response")
+ }
+
+ feature, ok := features[0].(map[string]interface{})
+ if !ok {
+ return nil, fmt.Errorf("invalid feature format")
+ }
+
+ geometryData, ok := feature["geometry"].(map[string]interface{})
+ if !ok {
+ return nil, fmt.Errorf("no geometry found in feature")
+ }
+
+ // Convert to ORSGeometry
+ geometryJSON, err := json.Marshal(geometryData)
+ if err != nil {
+ return nil, fmt.Errorf("failed to marshal geometry: %v", err)
+ }
+
+ var geometry ORSGeometry
+ if err := json.Unmarshal(geometryJSON, &geometry); err != nil {
+ return nil, fmt.Errorf("failed to parse geometry: %v", err)
+ }
+
+ return &geometry, nil
+}
diff --git a/api/util/directions.go b/api/util/directions.go
new file mode 100644
index 0000000..9cd30d6
--- /dev/null
+++ b/api/util/directions.go
@@ -0,0 +1,399 @@
+package util
+
+import (
+ "encoding/json"
+ "fmt"
+ "io"
+ "math"
+ "net/http"
+ "net/url"
+ "os"
+ "strconv"
+ "time"
+
+ "github.com/gin-gonic/gin"
+
+ _ "template-mobile-app-api/docs"
+)
+
+// =================レスポンス=================
+type DirectionsResponse struct {
+ // https://openrouteservice.org/dev/#/api-docs/v2/directions/{profile}/geojson/get
+ // のレスポンスを構造体に
+ Type string `json:"type"`
+ BBox []float64 `json:"bbox"`
+ Features []ORSFeature `json:"features"`
+ Metadata ORSMetadata `json:"metadata"`
+ WarningPoints []WarningPoint `json:"warning_points"` //XXX 追加項目
+ ComfortScore int `json:"comfort_score"` //XXX 追加項目, 0-100のスコア
+ SessoinID string `json:"session_id"` //XXX 追加項目, セッションID
+}
+
+// ORSFeature represents a feature in the GeoJSON response
+type ORSFeature struct {
+ BBox []float64 `json:"bbox"`
+ Type string `json:"type"`
+ Properties ORSFeatureProperties `json:"properties"`
+ Geometry ORSGeometry `json:"geometry"`
+}
+
+// ORSFeatureProperties contains the properties of a route feature
+type ORSFeatureProperties struct {
+ Segments []ORSSegment `json:"segments"`
+ Summary ORSSummary `json:"summary"`
+ WayPoints []int `json:"way_points"`
+}
+
+// ORSGeometry represents the geometry of the route
+type ORSGeometry struct {
+ Type string `json:"type"`
+ Coordinates [][]float64 `json:"coordinates"`
+}
+
+// ORSSegment represents a segment of the route
+type ORSSegment struct {
+ Distance float64 `json:"distance"`
+ Duration float64 `json:"duration"`
+ Steps []ORSStep `json:"steps"`
+}
+
+// ORSStep represents a step within a segment
+type ORSStep struct {
+ Distance float64 `json:"distance"`
+ Duration float64 `json:"duration"`
+ Type int `json:"type"`
+ Instruction string `json:"instruction"`
+ Name string `json:"name"`
+ WayPoints []int `json:"way_points"`
+}
+
+// ORSManeuver represents maneuver information for a step
+type ORSManeuver struct {
+ Location []float64 `json:"location"`
+ BearingBefore int `json:"bearing_before"`
+ BearingAfter int `json:"bearing_after"`
+}
+
+// ORSSummary contains summary information about the route
+type ORSSummary struct {
+ Distance float64 `json:"distance"`
+ Duration float64 `json:"duration"`
+}
+
+// ORSWarning represents a warning message
+type ORSWarning struct {
+ Code int `json:"code"`
+ Message string `json:"message"`
+}
+
+// ORSMetadata contains metadata about the request and response
+type ORSMetadata struct {
+ Attribution string `json:"attribution"`
+ Service string `json:"service"`
+ Timestamp int64 `json:"timestamp"`
+ Query ORSQuery `json:"query"`
+ Engine ORSEngine `json:"engine"`
+}
+
+// ORSQuery represents the original query parameters
+type ORSQuery struct {
+ Coordinates [][]float64 `json:"coordinates"`
+ Profile string `json:"profile"`
+ ProfileName string `json:"profileName"`
+ Format string `json:"format"`
+}
+
+// ORSEngine contains information about the OpenRouteService engine
+type ORSEngine struct {
+ Version string `json:"version"`
+ BuildDate string `json:"build_date"`
+ GraphDate string `json:"graph_date"`
+ OSMDate string `json:"osm_date"`
+}
+
+// ORSRouteOptions represents advanced routing options
+type ORSRouteOptions struct {
+ AvoidFeatures []string `json:"avoid_features,omitempty"`
+ AvoidBorders string `json:"avoid_borders,omitempty"`
+ AvoidCountries []string `json:"avoid_countries,omitempty"`
+ VehicleType string `json:"vehicle_type,omitempty"`
+ ProfileParams *ORSProfileParams `json:"profile_params,omitempty"`
+ AvoidPolygons map[string]interface{} `json:"avoid_polygons,omitempty"`
+ RoundTrip *ORSRoundTripOptions `json:"round_trip,omitempty"`
+}
+
+// ORSProfileParams represents profile-specific parameters
+type ORSProfileParams struct {
+ Weightings *ORSWeightings `json:"weightings,omitempty"`
+ Restrictions *ORSRestrictions `json:"restrictions,omitempty"`
+ SurfaceQualityKnown *bool `json:"surface_quality_known,omitempty"`
+ AllowUnsuitable *bool `json:"allow_unsuitable,omitempty"`
+}
+
+// ORSWeightings represents weightings for different routing factors
+type ORSWeightings struct {
+ SteepnessDifficulty *int `json:"steepness_difficulty,omitempty"`
+ Green *float32 `json:"green,omitempty"`
+ Quiet *float32 `json:"quiet,omitempty"`
+ Shadow *float32 `json:"shadow,omitempty"`
+}
+
+// ORSRestrictions represents restrictions for routing
+type ORSRestrictions struct {
+ Length *float32 `json:"length,omitempty"`
+ Width *float32 `json:"width,omitempty"`
+ Height *float32 `json:"height,omitempty"`
+ Axleload *float32 `json:"axleload,omitempty"`
+ Weight *float32 `json:"weight,omitempty"`
+ Hazmat *bool `json:"hazmat,omitempty"`
+ SurfaceType string `json:"surface_type,omitempty"`
+ TrackType string `json:"track_type,omitempty"`
+ SmoothnessType string `json:"smoothness_type,omitempty"`
+ MaximumSlopedKerb *float32 `json:"maximum_sloped_kerb,omitempty"`
+ MaximumIncline *int `json:"maximum_incline,omitempty"`
+ MinimumWidth *float32 `json:"minimum_width,omitempty"`
+}
+
+// ORSRoundTripOptions represents options for round trip routing
+type ORSRoundTripOptions struct {
+ Length *float32 `json:"length,omitempty"`
+ Points *int `json:"points,omitempty"`
+ Seed *int64 `json:"seed,omitempty"`
+}
+
+// ORSAlternativeRoutes represents alternative route options
+type ORSAlternativeRoutes struct {
+ TargetCount *int `json:"target_count,omitempty"`
+ WeightFactor *float64 `json:"weight_factor,omitempty"`
+ ShareFactor *float64 `json:"share_factor,omitempty"`
+}
+
+// ORSCustomModel represents custom model for weighting
+type ORSCustomModel struct {
+ DistanceInfluence *float64 `json:"distance_influence,omitempty"`
+ Speed []ORSCustomRule `json:"speed,omitempty"`
+ Priority []ORSCustomRule `json:"priority,omitempty"`
+ Areas map[string]interface{} `json:"areas,omitempty"`
+}
+
+// ORSCustomRule represents a rule in the custom model
+type ORSCustomRule struct {
+ Keyword string `json:"keyword,omitempty"`
+ Condition string `json:"condition,omitempty"`
+ Operation string `json:"operation,omitempty"`
+ Value *float64 `json:"value,omitempty"`
+}
+
+// ORSErrorResponse represents error response structure
+type ORSErrorResponse struct {
+ Error struct {
+ Code int `json:"code"`
+ Message string `json:"message"`
+ } `json:"error"`
+}
+
+// getDirections godoc
+// @Summary 自転車ルート検索
+// @Description 出発地点と目的地の座標をクエリパラメータで受け取り、OpenRouteServiceのAPIを呼び出してルート情報を取得する
+// @Tags map
+// @Accept json
+// @Produce json
+// @Param start query string true "出発地点の座標 (経度,緯度)" example:"139.745494,35.659071"
+// @Param end query string true "目的地の座標 (経度,緯度)" example:"139.808617,35.709907"
+// @Param via_bike_parking query boolean false "自転車駐輪場経由ルート" default(true)
+// @Param avoid_bus_stops query boolean false "バス停回避" default(true)
+// @Param avoid_traffic_lights query boolean false "信号回避" default(true)
+// @Success 200 {object} DirectionsResponse "GeoJson形式のルート情報"
+// @Failure 400 {object} ORSErrorResponse "リクエストパラメータ不正"
+// @Failure 404 {object} ORSErrorResponse "ルートが見つからない"
+// @Failure 500 {object} ORSErrorResponse "サーバー内部エラー"
+// @Router /directions/bicycle [get]
+func GetDirections(c *gin.Context) {
+ // クエリパラメータの取得
+ start := c.Query("start")
+ end := c.Query("end")
+ viaBikeParking := c.DefaultQuery("via_bike_parking", "false")
+ avoidBusStops := c.DefaultQuery("avoid_bus_stops", "false")
+ avoidTrafficLights := c.DefaultQuery("avoid_traffic_lights", "false")
+
+ status, orsResp := GetDirectionsBase(start, end)
+ directionsResponse, ok := orsResp.(DirectionsResponse)
+ if ok {
+ //directionsResponse.Features[0].Geometry.Coordinates = GetBicycleParkingDirection(directionsResponse.Features[0].Geometry.Coordinates, [][]float64{})
+
+ //TODO ComfortScoreはサンプル
+ directionsResponse.ComfortScore = 49 // https://github.com/rowicy/charimachi/issues/34
+ var comfortLevel = 0
+ if viaBikeParking == "true" {
+ comfortLevel++
+ }
+ if avoidBusStops == "true" {
+ comfortLevel++
+ }
+ if avoidTrafficLights == "true" {
+ comfortLevel++
+ }
+ switch comfortLevel {
+ case 1:
+ directionsResponse.ComfortScore = 79
+ case 2:
+ directionsResponse.ComfortScore = 89
+ case 3:
+ directionsResponse.ComfortScore = 100
+ }
+ directionsResponse.SessoinID = GenerateSessionID()
+ SessionIDResponse[directionsResponse.SessoinID] = directionsResponse.Features[0].Geometry
+ }
+ if avoidBusStops == "true" && ok {
+ var geometry, err = AvoidBusStops(Coordinate{directionsResponse.Metadata.Query.Coordinates[0][0], directionsResponse.Metadata.Query.Coordinates[0][1]}, Coordinate{directionsResponse.Metadata.Query.Coordinates[1][0], directionsResponse.Metadata.Query.Coordinates[1][1]})
+ if err == nil {
+ fmt.Println("AvoidBusStops success")
+ directionsResponse.Features[0].Geometry = geometry
+ } else {
+ fmt.Println("AvoidBusStops error:", err)
+ }
+ }
+ c.JSON(status, directionsResponse)
+}
+
+func GetBicycleParkingDirection(searchCoordinates [][]float64, coordinates [][]float64) (returnCoordinates [][]float64) {
+ var distance = 0.0
+ var prePosition = searchCoordinates[0]
+ for _, v := range searchCoordinates {
+ const metersPerDegree = 111320.0 // 緯度1度あたりのメートル
+ var lon = prePosition[0] - v[0]
+ var lat = prePosition[1] - v[1]
+ distance += math.Abs(lon) * metersPerDegree
+ distance += math.Abs(lat) * metersPerDegree
+
+ prePosition = v
+ fmt.Println("distance:", distance)
+
+ var query = "駐輪場"
+ var query2 = "&viewbox="
+ query2 += strconv.FormatFloat(v[0]-0.011, 'f', -1, 64)
+ query2 += ","
+ query2 += strconv.FormatFloat(v[1]-0.011, 'f', -1, 64)
+ query2 += ","
+ query2 += strconv.FormatFloat(v[0]+0.011, 'f', -1, 64)
+ query2 += ","
+ query2 += strconv.FormatFloat(v[1]+0.011, 'f', -1, 64)
+ query2 += "&bounded=1"
+ searchResp := GetSearchBase(query, query2)
+ searchResponse, ok := searchResp.([]SearchResponse)
+
+ fmt.Println(searchResponse)
+
+ if ok && (distance > 500) && len(searchResponse) != 0 {
+ _, orsResp := GetDirectionsBase(
+ searchResponse[0].Lon+","+searchResponse[0].Lat,
+ strconv.FormatFloat(searchCoordinates[len(searchCoordinates)-1][0], 'f', -1, 64)+","+strconv.FormatFloat(searchCoordinates[len(searchCoordinates)-1][1], 'f', -1, 64))
+ directionsResponse, directionOK := orsResp.(DirectionsResponse)
+ if directionOK {
+ coordinates = append(coordinates, v)
+ coordinates = GetBicycleParkingDirection(directionsResponse.Features[0].Geometry.Coordinates, coordinates)
+ return coordinates
+ }
+ } else {
+ coordinates = append(coordinates, v)
+ }
+ }
+
+ return coordinates
+}
+
+func GetDirectionsBase(
+ start string,
+ end string) (status int, res any) {
+
+ // バリデーション
+ if start == "" || end == "" {
+ var er ORSErrorResponse
+ er.Error.Code = http.StatusBadRequest
+ er.Error.Message = "start and end query parameters are required"
+ return http.StatusBadRequest, er
+ }
+
+ // APIキー取得
+ apiKey := os.Getenv("OPEN_ROUTE_SERVICE_API_KEY")
+ if apiKey == "" {
+ var er ORSErrorResponse
+ er.Error.Code = http.StatusInternalServerError
+ er.Error.Message = "OPEN_ROUTE_SERVICE_API_KEY is not set"
+ return http.StatusInternalServerError, er
+ }
+
+ // ORSへリクエスト
+ base := "https://api.openrouteservice.org/v2/directions/cycling-road"
+ u, err := url.Parse(base)
+ if err != nil {
+ var er ORSErrorResponse
+ er.Error.Code = http.StatusInternalServerError
+ er.Error.Message = fmt.Sprintf("invalid base url: %v", err)
+ return http.StatusInternalServerError, er
+ }
+
+ q := u.Query()
+ q.Set("api_key", apiKey)
+ q.Set("start", start)
+ q.Set("end", end)
+ u.RawQuery = q.Encode()
+
+ client := &http.Client{Timeout: 10 * time.Second}
+ resp, err := client.Get(u.String())
+ if err != nil {
+ var er ORSErrorResponse
+ er.Error.Code = http.StatusBadGateway
+ er.Error.Message = err.Error()
+ return http.StatusBadGateway, er
+ }
+ defer resp.Body.Close()
+
+ body, err := io.ReadAll(resp.Body)
+ if err != nil {
+ var er ORSErrorResponse
+ er.Error.Code = http.StatusBadGateway
+ er.Error.Message = fmt.Sprintf("failed to read upstream response: %v", err)
+ return http.StatusBadGateway, er
+ }
+
+ if resp.StatusCode != http.StatusOK {
+ var upstreamErr ORSErrorResponse
+ _ = json.Unmarshal(body, &upstreamErr)
+ if upstreamErr.Error.Message == "" {
+ upstreamErr.Error.Code = resp.StatusCode
+ upstreamErr.Error.Message = fmt.Sprintf("upstream returned status %d", resp.StatusCode)
+ }
+ return http.StatusBadGateway, upstreamErr
+ }
+
+ //TODO OpenRouteServiceのレスポンスをそのままレスポンスにパースしているのでorsRespを加工する処理をかく
+ var orsResp DirectionsResponse
+ if err := json.Unmarshal(body, &orsResp); err != nil {
+ var er ORSErrorResponse
+ er.Error.Code = http.StatusInternalServerError
+ er.Error.Message = fmt.Sprintf("failed to parse upstream response: %v", err)
+ return http.StatusInternalServerError, er
+ }
+
+ //TODO WarningPointsはサンプル
+ // if orsResp.WarningPoints == nil {
+ // coodinates := orsResp.Features[0].Geometry.Coordinates
+ // orsResp.WarningPoints = []WarningPoint{
+ // {
+ // Type: "intersection",
+ // Name: "地獄谷",
+ // Coordinate: coodinates[1],
+ // Message: "過去に事故が多発した地点です。注意してください。",
+ // },
+ // {
+ // Type: "straight_road",
+ // Name: "無限道路",
+ // Coordinate: coodinates[len(coodinates)-2],
+ // Message: "この道路は直線で、速度を出しやすいです。安全運転を心掛けてください。",
+ // },
+ // }
+ // }
+
+ return http.StatusOK, orsResp
+}
diff --git a/api/util/errorResponse.go b/api/util/errorResponse.go
new file mode 100644
index 0000000..e162770
--- /dev/null
+++ b/api/util/errorResponse.go
@@ -0,0 +1,7 @@
+package util
+
+// ErrorResponse represents an error response
+type ErrorResponse struct {
+ Error string `json:"error" example:"Internal server error"`
+ Message string `json:"message" example:"Failed to fetch data"`
+}
diff --git a/api/util/init.go b/api/util/init.go
new file mode 100644
index 0000000..03f3ae9
--- /dev/null
+++ b/api/util/init.go
@@ -0,0 +1,10 @@
+package util
+
+var (
+ violationRates []ViolationRate
+)
+
+func init() {
+
+ violationRates, _ = LoadViolationRates("data/violation_rates.json")
+}
diff --git a/api/util/search.go b/api/util/search.go
new file mode 100644
index 0000000..7bdd646
--- /dev/null
+++ b/api/util/search.go
@@ -0,0 +1,97 @@
+package util
+
+import (
+ "encoding/json"
+ "io"
+ "net/http"
+ "net/url"
+ _ "template-mobile-app-api/docs"
+
+ "github.com/gin-gonic/gin"
+)
+
+type SearchResponse struct {
+ // https://nominatim.openstreetmap.org/search?q={Client input}&format=json&limit=5
+ // のレスポンスを構造体に
+ PlaceID int `json:"place_id"` // Nominatim 内での一意なID
+ Licence string `json:"licence"` // データのライセンス情報
+ OsmType string `json:"osm_type"` // OSM 要素の種類 (node, way, relation)
+ OsmID int64 `json:"osm_id"` // OSM 内の要素ID
+ Lat string `json:"lat"` // 緯度
+ Lon string `json:"lon"` // 経度
+ Class string `json:"class"` // 分類(例: railway, building, amenity など)
+ Type string `json:"type"` // 分類のサブタイプ(例: stop, station, bus_station など)
+ PlaceRank int `json:"place_rank"` // 検索結果の粒度を示すランク
+ Importance float64 `json:"importance"` // 検索結果の重要度スコア
+ AddressType string `json:"addresstype"` // アドレスの種類(例: city, house, railway)
+ Name string `json:"name"` // OSM に登録されている名前
+ DisplayName string `json:"display_name"` // 住所や施設名などの連結
+ BoundingBox []string `json:"boundingbox"` // 範囲 [南緯, 北緯, 西経, 東経]
+}
+
+//TODO 定義中
+
+// getSearch godoc
+// @Summary 目的地候補検索
+// @Description Nominatimのレスポンスを横流し(https://nominatim.openstreetmap.org/search?q={Client input}&format=json&limit=5)
+// @Tags map
+// @Accept json
+// @Produce json
+// @Param q query string true "検索文字列"
+// @Success 200 {object} []SearchResponse
+// @Failure 400 {object} ErrorResponse
+// @Failure 404 {object} ErrorResponse
+// @Failure 500 {object} ErrorResponse
+// @Router /search [get]
+func GetSearch(c *gin.Context) {
+ //Client inputを取得 パラメータ: q
+ //https://nominatim.openstreetmap.org/search?q={Client input}&accept-language=ja&format=json&limit=5
+ //nominatimレスポンスをそのまま返す
+ query := c.Query("q")
+
+ resp := GetSearchBase(query, "")
+
+ if _, ok := resp.([]SearchResponse); ok {
+ c.JSON(http.StatusOK, resp)
+ } else {
+ c.JSON(http.StatusInternalServerError, resp)
+ }
+}
+
+func GetSearchBase(query string, query2 string) (res any) {
+ //Client inputを取得 パラメータ: q
+ //https://nominatim.openstreetmap.org/search?q={Client input}&format=json&limit=5
+ //nominatimレスポンスをそのまま返す
+ encodedQuery := url.QueryEscape(query)
+ resp, err := http.Get("https://nominatim.openstreetmap.org/search?q=" + encodedQuery + query2 + "&accept-language=ja&format=json&limit=5")
+
+ if err != nil {
+ response := ErrorResponse{
+ Error: "Failed to fetch data",
+ Message: err.Error(),
+ }
+ return response
+ }
+ defer resp.Body.Close()
+
+ body, err := io.ReadAll(resp.Body)
+ if err != nil {
+ response := ErrorResponse{
+ Error: "Failed to read response",
+ Message: err.Error(),
+ }
+ return response
+ }
+
+ var searchResponse []SearchResponse
+ if err := json.Unmarshal(body, &searchResponse); err != nil {
+ response := ErrorResponse{
+ Error: "Failed to parse response",
+ Message: err.Error(),
+ }
+
+ return response
+ }
+
+ return searchResponse
+}
diff --git a/api/util/sessionId.go b/api/util/sessionId.go
new file mode 100644
index 0000000..1431f55
--- /dev/null
+++ b/api/util/sessionId.go
@@ -0,0 +1,15 @@
+package util
+
+import (
+ "fmt"
+
+ "github.com/google/uuid"
+)
+
+func GenerateSessionID() string {
+ value := uuid.New().String()
+ fmt.Printf("Generated session_id: %s\n", value) // TODO デバッグ用
+ return value
+}
+
+var SessionIDResponse = map[string]ORSGeometry{}
diff --git a/api/util/violationRate.go b/api/util/violationRate.go
new file mode 100644
index 0000000..78994b5
--- /dev/null
+++ b/api/util/violationRate.go
@@ -0,0 +1,127 @@
+package util
+
+import (
+ "math"
+ "math/rand"
+ "time"
+
+ "encoding/json"
+ "os"
+
+ "github.com/gin-gonic/gin"
+)
+
+type ViolationRate struct {
+ Type string `json:"type,omitempty"`
+ Name string `json:"name,omitempty"`
+ ViolationRate float64 `json:"violation_rate"` //違反率スコア
+ ViolationCount int `json:"violation_count,omitempty"` //違反件数
+ Coordinate []float64 `json:"coordinate"`
+ Message string `json:"message,omitempty"`
+}
+
+// GetViolationRates godoc
+// @Summary 違反箇所の交差点
+// @Description /directions/bicycleでの経路検索結果に対する違反箇所の交差点を返す
+// @Param session_id query string false "/directions/bicycleのレスポンス内のsession_id" example(session_id=53238c22-12ac-8ff8-fcdd-738d30a780df)
+// @Tags map
+// @Accept json
+// @Produce json
+// @Success 200 {object} map[string][]ViolationRate "List of violation rates for given coordinates"
+// @Router /violation_rates [get]
+func GetViolationRates(c *gin.Context) {
+ session_id := c.Query("session_id")
+ if session_id == "" {
+ c.JSON(200, gin.H{
+ "violation_rates": nil,
+ })
+ return
+ }
+ // // Sample data - replace with actual logic to fetch violation rates
+ // violationRates := []ViolationRate{
+ // {
+ // Type: "intersection",
+ // ViolationRate: 0.1,
+ // ViolationCount: 5,
+ // Coordinate: []float64{139.701961, 35.689727},
+ // Message: "違反が多い箇所です",
+ // },
+ // {
+ // Type: "intersection",
+ // ViolationRate: 0.2,
+ // ViolationCount: 8,
+ // Coordinate: []float64{139.760530, 35.707620},
+ // Message: "違反が多い箇所です",
+ // },
+ // }
+
+ featureORSGeometry := SessionIDResponse[session_id]
+ filteredRates := FilterViolationRates(featureORSGeometry, violationRates)
+
+ c.JSON(200, gin.H{
+ "violation_rates": filteredRates,
+ })
+}
+
+var warningMessages = []string{
+ "歩道ではなく車道を走行しましょう。",
+ "歩道走行は禁止されています。安全な車道を走りましょう。",
+ "歩行者を守るため、歩道では走らないでください。",
+ "自転車は原則、車道を通行します。",
+ "歩道では降りて押して歩きましょう。",
+}
+
+// 東京付近の1mを度に換算(経度方向のみ簡易)
+const metersPerDegree = 111319.0 // 赤道での1° ≈ 111.3 km
+
+// 距離の閾値(20mを度換算)
+var threshold float64 = 20.0 / metersPerDegree
+
+// 距離(度ベース)を計算(単純なユークリッド距離)
+func distance(coord1, coord2 []float64) float64 {
+ dLon := coord1[0] - coord2[0]
+ dLat := coord1[1] - coord2[1]
+ return math.Sqrt(dLon*dLon + dLat*dLat)
+}
+
+func FilterViolationRates(geometry ORSGeometry, violations []ViolationRate) []ViolationRate {
+ var result []ViolationRate
+ for _, v := range violations {
+ for _, c := range geometry.Coordinates {
+ if distance(v.Coordinate, c) < threshold {
+ var title string
+ if v.ViolationRate < 0.3 { // 低リスク
+ title = "注意 交差点"
+ } else if v.ViolationRate < 0.8 { // 中リスク
+ title = "警告 交差点"
+ } else { // 高リスク
+ title = "違反多発 交差点"
+ }
+ rand.Seed(time.Now().UnixNano())
+ violationRate := ViolationRate{
+ Type: "intersection",
+ Name: title,
+ ViolationRate: math.Floor(v.ViolationRate*100) / 100, // 小数点以下2桁に丸める
+ ViolationCount: v.ViolationCount,
+ Coordinate: c,
+ Message: warningMessages[rand.Intn(len(warningMessages))]}
+
+ result = append(result, violationRate)
+ break
+ }
+ }
+ }
+ return result
+}
+
+func LoadViolationRates(filePath string) ([]ViolationRate, error) {
+ data, err := os.ReadFile(filePath)
+ if err != nil {
+ panic(err)
+ }
+ var violations []ViolationRate
+ if err := json.Unmarshal(data, &violations); err != nil {
+ panic(err)
+ }
+ return violations, nil
+}
diff --git a/api/util/warningPoint.go b/api/util/warningPoint.go
new file mode 100644
index 0000000..f1bc575
--- /dev/null
+++ b/api/util/warningPoint.go
@@ -0,0 +1,32 @@
+package util
+
+import (
+ "net/http"
+
+ "github.com/gin-gonic/gin"
+)
+
+// XXX カスタム構造体
+type WarningPoint struct {
+ Type string `json:"type"` //交差点なのか直線道路なのか(このフィールドいらない)
+ Name string `json:"name"` //名称, 地元での言われ名など(地獄谷etc)
+ Coordinate []float64 `json:"coordinate"` //座標
+ Message string `json:"message"` //警告のメッセージ(どんな事故が多かったか)
+}
+
+var WorningIntersectionPoints []WarningPoint
+
+// GetWarningPoints godoc
+// @Summary 注意点取得
+// @Description 取締強化交差点などの注意点をまとめて返す。
+// @Tags map
+// @Accept json
+// @Produce json
+// @Success 200 {object} []WarningPoint "注意地点情報"
+// @Router /warning_point [get]
+func GetWarningPoints(c *gin.Context) {
+ //ここで結合する
+ warningPoints := WorningIntersectionPoints
+
+ c.JSON(http.StatusOK, warningPoints)
+}
diff --git a/api/warningIntersection.json b/api/warningIntersection.json
new file mode 100644
index 0000000..39f61a1
--- /dev/null
+++ b/api/warningIntersection.json
@@ -0,0 +1,1823 @@
+[
+ {
+ "type": "",
+ "name": "千代田区永田町1丁目付近",
+ "coordinate": [
+ 139.746306,
+ 35.675895
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "千代田区霞が関2丁目付近",
+ "coordinate": [
+ 139.750413,
+ 35.675551
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "千代田区一ツ橋1丁目付近",
+ "coordinate": [
+ 139.757119,
+ 35.691189
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "千代田区神田神保町1丁目付近",
+ "coordinate": [
+ 139.759073,
+ 35.696491
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "千代田区神田神保町1丁目付近",
+ "coordinate": [
+ 139.759073,
+ 35.696491
+ ],
+ "message": "カーブ途中の事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "千代田区神田小川町1丁目付近",
+ "coordinate": [
+ 139.766412,
+ 35.694724
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "千代田区神田錦町3丁目付近",
+ "coordinate": [
+ 139.760722,
+ 35.692324
+ ],
+ "message": "進路変更による事故の発生が懸念されるほか、取締り要望もあるため"
+ },
+ {
+ "type": "",
+ "name": "千代田区神田佐久間町1丁目付近",
+ "coordinate": [
+ 139.774222,
+ 35.697979
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "千代田区神田須田町1丁目付近",
+ "coordinate": [
+ 139.769841,
+ 35.696223
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "千代田区神田鍛冶町3丁目付近",
+ "coordinate": [
+ 139.770976,
+ 35.693613
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "中央区日本橋1丁目付近",
+ "coordinate": [
+ 139.775351,
+ 35.682904
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "中央区日本橋3丁目付近",
+ "coordinate": [
+ 139.773747,
+ 35.679541
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "中央区東日本橋2丁目付近",
+ "coordinate": [
+ 139.786769,
+ 35.693487
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "中央区日本橋人形町1丁目付近",
+ "coordinate": [
+ 139.782191,
+ 35.684835
+ ],
+ "message": "通行量が多く、事故防止のため"
+ },
+ {
+ "type": "",
+ "name": "中央区銀座4丁目付近",
+ "coordinate": [
+ 139.766249,
+ 35.67117
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "中央区晴海1丁目付近",
+ "coordinate": [
+ 139.786164,
+ 35.659523
+ ],
+ "message": "オリンピック関連施設の建設に伴い、工事関係車両の通行増加が予想され、事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "港区新橋4丁目付近",
+ "coordinate": [
+ 139.7559549,
+ 35.6644071
+ ],
+ "message": "事故発生の可能性が高いことから、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区芝大門1丁目付近",
+ "coordinate": [
+ 139.7543228,
+ 35.6586692
+ ],
+ "message": "工事関係車両等の通過が多い交差点であり、事故防止のため"
+ },
+ {
+ "type": "",
+ "name": "港区三田3丁目付近",
+ "coordinate": [
+ 139.743205,
+ 35.6439554
+ ],
+ "message": "死亡事故発生交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区海岸3丁目付近",
+ "coordinate": [
+ 139.7572356,
+ 35.640762
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区高輪2丁目付近",
+ "coordinate": [
+ 139.7371325,
+ 35.6373746
+ ],
+ "message": "工事関係者等の大型貨物車の通行が増加したことから、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区高輪3丁目付近",
+ "coordinate": [
+ 139.7349733,
+ 35.6319377
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区港南1丁目付近",
+ "coordinate": [
+ 139.7448894,
+ 35.6334507
+ ],
+ "message": "海岸通りの抜け道として通行する車両が多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区白金台5丁目付近",
+ "coordinate": [
+ 139.7202426,
+ 35.6390225
+ ],
+ "message": "首都高出口付近で違反も多いことから、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区六本木3丁目付近",
+ "coordinate": [
+ 139.7367758,
+ 35.6642677
+ ],
+ "message": "事故が多発傾向であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区東麻布1丁目付近",
+ "coordinate": [
+ 139.7442859,
+ 35.6567362
+ ],
+ "message": "工事関係者等の貨物車増加及び事故多発交差点であることから事故防止のため"
+ },
+ {
+ "type": "",
+ "name": "港区西麻布1丁目付近",
+ "coordinate": [
+ 139.7258364,
+ 35.6611721
+ ],
+ "message": "交通量も多く、事故多発交差点であることから、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区赤坂2丁目付近",
+ "coordinate": [
+ 139.7406945,
+ 35.6710968
+ ],
+ "message": "死亡事故発生交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区南青山6丁目付近",
+ "coordinate": [
+ 139.7165651,
+ 35.6607745
+ ],
+ "message": "事故多発路線であり、交通量も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "港区台場2丁目付近",
+ "coordinate": [
+ 139.7763437,
+ 35.6272756
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江東区新木場1丁目付近",
+ "coordinate": [
+ 139.826503,
+ 35.643729
+ ],
+ "message": "歩行者や交通量も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江東区東雲2丁目付近",
+ "coordinate": [
+ 139.802348,
+ 35.640503
+ ],
+ "message": "工事関係車両の通過が多い交差点であり、事故防止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区北品川2丁目付近",
+ "coordinate": [
+ 139.7430736,
+ 35.6182176
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区北品川4丁目付近",
+ "coordinate": [
+ 139.7364753,
+ 35.6203413
+ ],
+ "message": "事故多発場所付近であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区東品川4丁目付近",
+ "coordinate": [
+ 139.7486177,
+ 35.6095108
+ ],
+ "message": "事故多発場所付近であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区南大井3丁目付近",
+ "coordinate": [
+ 139.7347172,
+ 35.5901443
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区勝島3丁目付近",
+ "coordinate": [
+ 139.7390825,
+ 35.5922491
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区西五反田1丁目付近",
+ "coordinate": [
+ 139.7232038,
+ 35.6245841
+ ],
+ "message": "事故多発路線であり、違反も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区大崎5丁目付近",
+ "coordinate": [
+ 139.7248198,
+ 35.6227342
+ ],
+ "message": "事故多発路線であり、違反も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区西五反田7丁目付近",
+ "coordinate": [
+ 139.7197466,
+ 35.621593
+ ],
+ "message": "事故多発路線であり、違反も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "品川区西中延1丁目付近",
+ "coordinate": [
+ 139.7085321,
+ 35.6133835
+ ],
+ "message": "重傷事故多発場所付近であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区大森東1丁目付近",
+ "coordinate": [
+ 139.7387137,
+ 35.5764409
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区田園調布1丁目付近",
+ "coordinate": [
+ 139.6715391,
+ 35.5892729
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区田園調布1丁目付近",
+ "coordinate": [
+ 139.6715391,
+ 35.5892729
+ ],
+ "message": "事故多発、死亡事故発生路線のため"
+ },
+ {
+ "type": "",
+ "name": "大田区北千束2丁目付近",
+ "coordinate": [
+ 139.6929136,
+ 35.606979
+ ],
+ "message": "事故多発、死亡事故発生路線のため"
+ },
+ {
+ "type": "",
+ "name": "大田区仲六郷4丁目付近",
+ "coordinate": [
+ 139.7080185,
+ 35.5408738
+ ],
+ "message": "信号機もなく、速度超過による事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区南蒲田2丁目付近",
+ "coordinate": [
+ 139.723016,
+ 35.5554299
+ ],
+ "message": "事故、違反多発交差点であることから事故防止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区羽田1丁目付近",
+ "coordinate": [
+ 139.7429985,
+ 35.5506433
+ ],
+ "message": "事故、違反多発交差点であることから事故防止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区東馬込1丁目付近",
+ "coordinate": [
+ 139.7135465,
+ 35.5973767
+ ],
+ "message": "主要幹線道路が交わる交差点であり、交通量も多く事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区矢口1丁目付近",
+ "coordinate": [
+ 139.6925515,
+ 35.5672648
+ ],
+ "message": "主要幹線道路が交わる交差点であり、交通量も多く事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区羽田空港2丁目付近",
+ "coordinate": [
+ 139.7648477,
+ 35.5462645
+ ],
+ "message": "大型車の事故発生場所であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区羽田空港3丁目付近",
+ "coordinate": [
+ 139.786874,
+ 35.5440559
+ ],
+ "message": "合流地点の事故多発場所であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区羽田空港1丁目付近",
+ "coordinate": [
+ 139.7573805,
+ 35.5547447
+ ],
+ "message": "事故多発場所付近であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "大田区羽田空港2丁目付近",
+ "coordinate": [
+ 139.7648477,
+ 35.5462645
+ ],
+ "message": "重傷事故も発生している交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "世田谷区三軒茶屋2丁目付近",
+ "coordinate": [
+ 139.6659064,
+ 35.6416547
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "世田谷区上馬4丁目付近",
+ "coordinate": [
+ 139.6611643,
+ 35.6366334
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "世田谷区大原1丁目付近",
+ "coordinate": [
+ 139.6638653,
+ 35.668786
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "世田谷区代田4丁目付近",
+ "coordinate": [
+ 139.6577176,
+ 35.6595257
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "世田谷区玉川台2丁目付近",
+ "coordinate": [
+ 139.6299139,
+ 35.6242527
+ ],
+ "message": "交通量が多い交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "世田谷区野毛3丁目付近",
+ "coordinate": [
+ 139.6367683,
+ 35.6056444
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "世田谷区砧7丁目付近",
+ "coordinate": [
+ 139.6062434,
+ 35.6361931
+ ],
+ "message": "信号機のない交差点で、歩行者も多い上、付近は抜け道で通過車両も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "世田谷区千歳台1丁目付近",
+ "coordinate": [
+ 139.6157679,
+ 35.6473022
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区青葉台4丁目付近",
+ "coordinate": [
+ 139.6911212,
+ 35.6547883
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区大橋2丁目付近",
+ "coordinate": [
+ 139.6865514,
+ 35.6534038
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区大橋2丁目付近",
+ "coordinate": [
+ 139.6865514,
+ 35.6534038
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区中根1丁目付近",
+ "coordinate": [
+ 139.6732557,
+ 35.6160481
+ ],
+ "message": "歩行者や交通量も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区碑文谷4丁目付近",
+ "coordinate": [
+ 139.6836331,
+ 35.6203685
+ ],
+ "message": "歩行者や交通量も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区目黒本町2丁目周辺",
+ "coordinate": [
+ 135.7646285,
+ 34.9329357
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区東が丘2丁目付近",
+ "coordinate": [
+ 139.6645921,
+ 35.6281706
+ ],
+ "message": "付近は病院や公園、小学校があり、歩行者等の交通量が多いことから、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区柿の木坂1丁目付近",
+ "coordinate": [
+ 139.6774077,
+ 35.6210804
+ ],
+ "message": "交通量も多く、バスレーンを走行する車両も多いことから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "目黒区南1丁目付近",
+ "coordinate": [
+ 139.6890244,
+ 35.6144956
+ ],
+ "message": "取締り要望及び通行禁止規制時間帯の違反が多いため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "渋谷区渋谷2丁目付近",
+ "coordinate": [
+ 139.706267,
+ 35.6596837
+ ],
+ "message": "交通量が多く、多数の自転車の横断もあることから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "渋谷区神宮前6丁目付近",
+ "coordinate": [
+ 139.7041199,
+ 35.6661069
+ ],
+ "message": "歩行者や交通量も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "渋谷区千駄ヶ谷4丁目付近",
+ "coordinate": [
+ 139.7064427,
+ 35.6804288
+ ],
+ "message": "歩行者の通行が多く、事故多発交差点であることから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "渋谷区上原1丁目付近",
+ "coordinate": [
+ 139.6843225,
+ 35.6690181
+ ],
+ "message": "死亡事故発生路線であるほか、事故多発交差点でもあり、事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "渋谷区幡ヶ谷1丁目付近",
+ "coordinate": [
+ 139.6736473,
+ 35.6749818
+ ],
+ "message": "交通量が多い主要幹線道路の事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "新宿区西新宿3丁目付近",
+ "coordinate": [
+ 139.6897003,
+ 35.6844245
+ ],
+ "message": "事故多発路線であり、歩行者と車両の通行も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "新宿区西新宿1丁目付近",
+ "coordinate": [
+ 139.697924,
+ 35.6903697
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "新宿区西新宿7丁目付近",
+ "coordinate": [
+ 139.6977013,
+ 35.6955705
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "新宿区高田馬場3丁目付近",
+ "coordinate": [
+ 139.6976075,
+ 35.713485
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "新宿区中落合2丁目付近",
+ "coordinate": [
+ 139.6925005,
+ 35.7194759
+ ],
+ "message": "交通量が多く、事故多発交差点であることから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "新宿区西早稲田2丁目付近",
+ "coordinate": [
+ 139.7136256,
+ 35.7088897
+ ],
+ "message": "横断歩行者、自転車利用者の通行量が多く事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "新宿区高田馬場2丁目付近",
+ "coordinate": [
+ 139.7079192,
+ 35.7130015
+ ],
+ "message": "車両、歩行者、自転車利用者の通行量が多く事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "新宿区四谷4丁目付近",
+ "coordinate": [
+ 139.7165425,
+ 35.6885463
+ ],
+ "message": "事故多発交差点であることから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "中野区中央1丁目付近",
+ "coordinate": [
+ 139.6857065,
+ 35.6989904
+ ],
+ "message": "事故多発交差点であり、死亡事故発生交差点でもあることから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "中野区中央1丁目付近",
+ "coordinate": [
+ 139.6857065,
+ 35.6989904
+ ],
+ "message": "交通量が多い交差点であるほか、小学校の通学路となっており、事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "中野区中野4丁目付近",
+ "coordinate": [
+ 139.6637365,
+ 35.707321
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "杉並区高円寺南2丁目付近",
+ "coordinate": [
+ 139.6516129,
+ 35.700074
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "杉並区高円寺南2丁目付近",
+ "coordinate": [
+ 139.6516129,
+ 35.700074
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "杉並区高井戸東2丁目付近",
+ "coordinate": [
+ 139.6174121,
+ 35.6796848
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "杉並区上高井戸1丁目付近",
+ "coordinate": [
+ 139.6118867,
+ 35.673437
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "杉並区清水1丁目付近",
+ "coordinate": [
+ 139.617624,
+ 35.7102346
+ ],
+ "message": "事故多発交差点であるほか、付近で死亡事故も発生したことから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "杉並区清水3丁目付近",
+ "coordinate": [
+ 139.6184099,
+ 35.7172406
+ ],
+ "message": "事故多発路線上の交差点で、付近で死亡事故も発生したことから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "文京区本郷4丁目付近",
+ "coordinate": [
+ 139.7555137,
+ 35.7094625
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "文京区白山2丁目付近",
+ "coordinate": [
+ 139.7486365,
+ 35.7173756
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "文京区後楽2丁目付近",
+ "coordinate": [
+ 139.7455895,
+ 35.7055389
+ ],
+ "message": "首都高出口直近の交差点で、事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "文京区後楽1丁目付近",
+ "coordinate": [
+ 139.7508319,
+ 35.7045413
+ ],
+ "message": "事故多発交差点(本年死亡事故発生)であることから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "文京区千石一丁目付近",
+ "coordinate": [
+ 139.7439802,
+ 35.7258072
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "文京区大塚5丁目付近",
+ "coordinate": [
+ 139.7276026,
+ 35.7227151
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "文京区大塚3丁目付近",
+ "coordinate": [
+ 139.7366014,
+ 35.7207662
+ ],
+ "message": "バスレーンを走行する車両が多く、取締要望もあるため"
+ },
+ {
+ "type": "",
+ "name": "文京区本郷4丁目付近",
+ "coordinate": [
+ 139.7555137,
+ 35.7094625
+ ],
+ "message": "事故多発交差点であり、交通違反も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "文京区本郷3丁目付近",
+ "coordinate": [
+ 139.7605269,
+ 35.7075797
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "文京区千駄木3丁目付近",
+ "coordinate": [
+ 139.7628857,
+ 35.7277266
+ ],
+ "message": "歩行者の横断禁止場所横断による事故を抑止するため"
+ },
+ {
+ "type": "",
+ "name": "文京区本駒込5丁目付近",
+ "coordinate": [
+ 139.7523621,
+ 35.7327519
+ ],
+ "message": "歩行者の横断禁止場所横断による事故を抑止するため"
+ },
+ {
+ "type": "",
+ "name": "豊島区西巣鴨4丁目付近",
+ "coordinate": [
+ 139.7306469,
+ 35.7431706
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "豊島区西巣鴨1丁目付近",
+ "coordinate": [
+ 139.7252342,
+ 35.7375353
+ ],
+ "message": "バスレーンを走行する車両が多く、取締り要望もあるため"
+ },
+ {
+ "type": "",
+ "name": "豊島区東池袋2丁目付近",
+ "coordinate": [
+ 139.7208742,
+ 35.7323296
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "豊島区南池袋1丁目付近",
+ "coordinate": [
+ 139.7106565,
+ 35.7268304
+ ],
+ "message": "交通量が多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "北区王子1丁目付近",
+ "coordinate": [
+ 139.7391283,
+ 35.7530501
+ ],
+ "message": "複数車線あり、進路変更時の事故も発生していることから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "北区王子3丁目付近",
+ "coordinate": [
+ 139.7376168,
+ 35.761104
+ ],
+ "message": "変則五差路と首都高出口直近の交差点であることから事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "北区赤羽1丁目付近",
+ "coordinate": [
+ 139.7206438,
+ 35.7806673
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "北区神谷1丁目付近",
+ "coordinate": [
+ 139.7341073,
+ 35.7685793
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "板橋区南常盤台1丁目付近",
+ "coordinate": [
+ 139.6892233,
+ 35.7564343
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "板橋区志村3丁目付近",
+ "coordinate": [
+ 139.6859899,
+ 35.7774881
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "板橋区坂下3丁目付近",
+ "coordinate": [
+ 139.6829022,
+ 35.7884022
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "板橋区三園2丁目付近",
+ "coordinate": [
+ 139.6423465,
+ 35.7950497
+ ],
+ "message": "交通量が多く、事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "板橋区赤塚新町3丁目付近",
+ "coordinate": [
+ 139.6371411,
+ 35.7709715
+ ],
+ "message": "交通量の多い交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "練馬区豊玉北3丁目付近",
+ "coordinate": [
+ 139.6624895,
+ 35.7341885
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "練馬区練馬3丁目付近",
+ "coordinate": [
+ 139.6476152,
+ 35.7384404
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "練馬区桜台1丁目付近",
+ "coordinate": [
+ 139.6644633,
+ 35.7399544
+ ],
+ "message": "交通量が多い交差点で、歩行者の横断も多いことから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "練馬区谷原1丁目付近",
+ "coordinate": [
+ 139.6214471,
+ 35.7502163
+ ],
+ "message": "交通量が多く、事故多発交差点であるため"
+ },
+ {
+ "type": "",
+ "name": "練馬区三原台2丁目付近",
+ "coordinate": [
+ 139.6051102,
+ 35.7562091
+ ],
+ "message": "関越自動車道出口付近であり、速度抑制を兼ねた事故抑止を行う必要があるため"
+ },
+ {
+ "type": "",
+ "name": "練馬区下石神井4丁目付近",
+ "coordinate": [
+ 139.60165,
+ 35.727752
+ ],
+ "message": "取締り要望が多いため"
+ },
+ {
+ "type": "",
+ "name": "台東区上野7丁目付近",
+ "coordinate": [
+ 139.7798051,
+ 35.715837
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "台東区根岸5丁目付近",
+ "coordinate": [
+ 139.7879308,
+ 35.7276079
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "台東区入谷1丁目付近",
+ "coordinate": [
+ 139.7862263,
+ 35.7205441
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "台東区浅草3丁目付近",
+ "coordinate": [
+ 139.7961143,
+ 35.7173102
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "台東区蔵前1丁目付近",
+ "coordinate": [
+ 139.7908813,
+ 35.7001394
+ ],
+ "message": "事故多発路線が交差する場所であり事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "荒川区東尾久3丁目付近",
+ "coordinate": [
+ 139.7740826,
+ 35.7455749
+ ],
+ "message": "見通しが悪く危険であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "荒川区南千住6丁目付近",
+ "coordinate": [
+ 139.792827,
+ 35.737924
+ ],
+ "message": "事故多発路線・地区であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "荒川区荒川3丁目付近",
+ "coordinate": [
+ 139.781115,
+ 35.734245
+ ],
+ "message": "交通量が多く、路線バス専用通行帯の設置もあり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "足立区千住5丁目付近",
+ "coordinate": [
+ 139.803772,
+ 35.7551672
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "足立区鹿浜1丁目付近",
+ "coordinate": [
+ 139.7494094,
+ 35.7768155
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "足立区本木1丁目付近",
+ "coordinate": [
+ 139.7856021,
+ 35.762422
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "足立区竹の塚4丁目付近",
+ "coordinate": [
+ 139.8004997,
+ 35.7939677
+ ],
+ "message": "交通量も多く、事故多発交差点であることから、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "足立区西竹の塚1丁目付近",
+ "coordinate": [
+ 139.7887301,
+ 35.7912569
+ ],
+ "message": "事故多発交差点であり事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "足立区加平2丁目付近",
+ "coordinate": [
+ 139.8267746,
+ 35.7804474
+ ],
+ "message": "事故多発交差点付近であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江東区木場2丁目付近",
+ "coordinate": [
+ 139.804051,
+ 35.67058
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江東区豊洲5丁目付近",
+ "coordinate": [
+ 139.796476,
+ 35.6511
+ ],
+ "message": "多車線の交差点であり、交通量も多く事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江東区亀戸2丁目付近",
+ "coordinate": [
+ 139.822419,
+ 35.69942
+ ],
+ "message": "重傷事故も発生している交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江東区亀戸9丁目付近",
+ "coordinate": [
+ 139.842157,
+ 35.698131
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江東区南砂3丁目付近",
+ "coordinate": [
+ 139.830018,
+ 35.670909
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江東区大島3丁目付近",
+ "coordinate": [
+ 139.828897,
+ 35.691658
+ ],
+ "message": "工事関係車両等の通過が多い交差点であり、事故防止のため"
+ },
+ {
+ "type": "",
+ "name": "墨田区江東橋3丁目付近",
+ "coordinate": [
+ 139.81408,
+ 35.694649
+ ],
+ "message": "歩行者等の通行も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "墨田区東向島6丁目付近",
+ "coordinate": [
+ 139.822238,
+ 35.72445
+ ],
+ "message": "交通量が多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "葛飾区青戸7丁目付近",
+ "coordinate": [
+ 139.8541837,
+ 35.7549192
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "葛飾区金町2丁目付近",
+ "coordinate": [
+ 139.870315,
+ 35.764145
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "葛飾区四つ木2丁目付近",
+ "coordinate": [
+ 139.837762,
+ 35.736744
+ ],
+ "message": "複数車線で交通量も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江戸川区中央1丁目付近",
+ "coordinate": [
+ 139.8694064,
+ 35.706608
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江戸川区松島1丁目付近",
+ "coordinate": [
+ 139.8649821,
+ 35.7045227
+ ],
+ "message": "合流地点の事故多発場所であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江戸川区東葛西6丁目付近",
+ "coordinate": [
+ 139.8779512,
+ 35.6612495
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江戸川区中葛西3丁目付近",
+ "coordinate": [
+ 139.8710968,
+ 35.6658464
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江戸川区北小岩2丁目付近",
+ "coordinate": [
+ 139.885646,
+ 35.739838
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江戸川区東小岩5丁目付近",
+ "coordinate": [
+ 139.888347,
+ 35.7315171
+ ],
+ "message": "死亡事故発生交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "江戸川区北小岩1丁目付近",
+ "coordinate": [
+ 139.891538,
+ 35.736276
+ ],
+ "message": "死亡事故発生交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "昭島市東町2丁目付近",
+ "coordinate": [
+ 139.387522,
+ 35.704304
+ ],
+ "message": "重傷事故発生路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "昭島市田中町1丁目付近",
+ "coordinate": [
+ 139.352812,
+ 35.7068347
+ ],
+ "message": "事故多発交差点であり、大型貨物車の通行も頻繁にあることから事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "立川市錦町6丁目付近",
+ "coordinate": [
+ 139.417545,
+ 35.68667
+ ],
+ "message": "4路線の交わる交差点で事故が多く、事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "東大和市上北台1丁目付近",
+ "coordinate": [
+ 139.413412,
+ 35.746322
+ ],
+ "message": "交通量も多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "東大和市多摩湖1丁目付近",
+ "coordinate": [
+ 139.434509,
+ 35.766944
+ ],
+ "message": "カーブが多く、対向車同士の交通事故を抑止するため"
+ },
+ {
+ "type": "",
+ "name": "武蔵村山市学園4丁目付近",
+ "coordinate": [
+ 139.400418,
+ 35.744085
+ ],
+ "message": "小学校通学路であり、小学校や地域住民の要望もあり、通学時の小学生児童等の交通事故を防止するため"
+ },
+ {
+ "type": "",
+ "name": "府中市本宿町2丁目付近",
+ "coordinate": [
+ 139.4609249,
+ 35.6725559
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "小金井市貫井南町1丁目付近",
+ "coordinate": [
+ 139.4956666,
+ 35.6901932
+ ],
+ "message": "死亡事故発生交差点および事故多発交差点であり、事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "西東京市田無町2丁目付近",
+ "coordinate": [
+ 139.5438579,
+ 35.7282982
+ ],
+ "message": "交通量が多く、取締り要望もあるため"
+ },
+ {
+ "type": "",
+ "name": "小平市小川町1丁目付近",
+ "coordinate": [
+ 139.450032,
+ 35.7291986
+ ],
+ "message": "交通量が多く、事故多発交差点で、事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "小平市花小金井6丁目付近",
+ "coordinate": [
+ 139.5084616,
+ 35.7287922
+ ],
+ "message": "歩行者等の通行が多く、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "東村山市栄町1丁目付近",
+ "coordinate": [
+ 139.4762616,
+ 35.7519675
+ ],
+ "message": "側道からの合流もあり、直近の交差点の事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "武蔵野市中町2丁目付近",
+ "coordinate": [
+ 139.564517,
+ 35.706481
+ ],
+ "message": "児童や高齢者の通行が多く事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "武蔵野市八幡町3丁目付近",
+ "coordinate": [
+ 139.552251,
+ 35.7171671
+ ],
+ "message": "交通量が多く、児童等の保護の観点から事故抑止の必要があるため"
+ },
+ {
+ "type": "",
+ "name": "武蔵野市関前1丁目付近",
+ "coordinate": [
+ 139.5487411,
+ 35.7091775
+ ],
+ "message": "車両、自転車、歩行者の通行が多く事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "武蔵野市本町1丁目付近",
+ "coordinate": [
+ 139.5847982,
+ 35.7047307
+ ],
+ "message": "駅前周辺で交通量も多く事故多発地域であることから、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "三鷹市新川6丁目付近",
+ "coordinate": [
+ 139.565688,
+ 35.67917
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "三鷹市野崎2丁目付近",
+ "coordinate": [
+ 139.547412,
+ 35.684304
+ ],
+ "message": "交通量も多く、事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "調布市国領町2丁目付近",
+ "coordinate": [
+ 139.559226,
+ 35.651682
+ ],
+ "message": "信号無視等する車両が多く、取締り要望もあり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "調布市若葉町2丁目付近",
+ "coordinate": [
+ 139.588136,
+ 35.65734
+ ],
+ "message": "新設道路開通により、交通量増加に伴い危険性が増加したことから、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "青梅市新町7丁目付近",
+ "coordinate": [
+ 139.31377,
+ 35.786278
+ ],
+ "message": "青梅街道と藤崎小作線は事故多発路線であり、青梅新町交差点はこの2路線に対する交通事故を抑止するための要所であるため。"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "西多摩郡瑞穂町長岡1丁目付近",
+ "coordinate": [
+ 139.3335921,
+ 35.7762503
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "八王子市千人町2丁目付近",
+ "coordinate": [
+ 139.311954,
+ 35.6589973
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "八王子市大和田町3丁目付近",
+ "coordinate": [
+ 139.353073,
+ 35.660039
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "八王子市堀之内3丁目付近",
+ "coordinate": [
+ 139.402643,
+ 35.6271645
+ ],
+ "message": "交通量が多く、事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "町田市小山ヶ丘3丁目付近",
+ "coordinate": [
+ 139.373646,
+ 35.6008083
+ ],
+ "message": "交通量が多く、事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "町田市中町1丁目付近",
+ "coordinate": [
+ 139.4463233,
+ 35.5482596
+ ],
+ "message": "交通量が多く、取締要望が多いため"
+ },
+ {
+ "type": "",
+ "name": "町田市旭町1丁目付近",
+ "coordinate": [
+ 139.4402776,
+ 35.5546586
+ ],
+ "message": "事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "多摩市愛宕4丁目付近",
+ "coordinate": [
+ 139.427779,
+ 35.629481
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "多摩市関戸3丁目付近",
+ "coordinate": [
+ 139.458539,
+ 35.64958
+ ],
+ "message": "死亡事故発生および事故多発交差点であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "多摩市永山2丁目付近",
+ "coordinate": [
+ 139.445735,
+ 35.627599
+ ],
+ "message": "事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "稲城市若葉台2丁目付近",
+ "coordinate": [
+ 139.474731,
+ 35.622238
+ ],
+ "message": "死亡事故発生および事故多発路線であり、事故抑止のため"
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ },
+ {
+ "type": "",
+ "name": "",
+ "coordinate": null,
+ "message": ""
+ }
+]
\ No newline at end of file
diff --git a/convert-swagger.go b/convert-swagger.go
deleted file mode 100644
index 5d8f650..0000000
--- a/convert-swagger.go
+++ /dev/null
@@ -1,288 +0,0 @@
-package main
-
-import (
- "encoding/json"
- "fmt"
- "io/ioutil"
- "log"
- "strings"
-)
-
-// Swagger2 represents a Swagger 2.0 specification
-type Swagger2 struct {
- Swagger string `json:"swagger"`
- Info Info `json:"info"`
- Host string `json:"host"`
- BasePath string `json:"basePath"`
- Paths map[string]interface{} `json:"paths"`
- Definitions map[string]interface{} `json:"definitions"`
-}
-
-// OpenAPI3 represents an OpenAPI 3.0.3 specification
-type OpenAPI3 struct {
- OpenAPI string `json:"openapi"`
- Info Info `json:"info"`
- Servers []Server `json:"servers"`
- Paths map[string]interface{} `json:"paths"`
- Components Components `json:"components"`
-}
-
-type Info struct {
- Description string `json:"description"`
- Title string `json:"title"`
- Contact interface{} `json:"contact"`
- Version string `json:"version"`
-}
-
-type Server struct {
- URL string `json:"url"`
- Description string `json:"description"`
-}
-
-type Components struct {
- Schemas map[string]interface{} `json:"schemas"`
-}
-
-func convertSwagger2ToOpenAPI3(swagger2 Swagger2) OpenAPI3 {
- // Convert server info
- serverURL := "http://" + swagger2.Host + swagger2.BasePath
- servers := []Server{
- {
- URL: serverURL,
- Description: "Development server",
- },
- }
-
- // Convert paths by replacing $ref patterns and updating structure
- convertedPaths := make(map[string]interface{})
- for path, pathItem := range swagger2.Paths {
- convertedPathItem := convertPathItem(pathItem)
- convertedPaths[path] = convertedPathItem
- }
-
- // Convert definitions to components/schemas
- convertedSchemas := make(map[string]interface{})
- for defName, defSchema := range swagger2.Definitions {
- // Remove the "main." prefix from schema names
- cleanName := strings.TrimPrefix(defName, "main.")
- convertedSchemas[cleanName] = defSchema
- }
-
- return OpenAPI3{
- OpenAPI: "3.0.3",
- Info: swagger2.Info,
- Servers: servers,
- Paths: convertedPaths,
- Components: Components{
- Schemas: convertedSchemas,
- },
- }
-}
-
-func convertPathItem(pathItem interface{}) interface{} {
- pathMap, ok := pathItem.(map[string]interface{})
- if !ok {
- return pathItem
- }
-
- convertedPath := make(map[string]interface{})
-
- for method, operation := range pathMap {
- convertedOperation := convertOperation(operation)
- convertedPath[method] = convertedOperation
- }
-
- return convertedPath
-}
-
-func convertOperation(operation interface{}) interface{} {
- opMap, ok := operation.(map[string]interface{})
- if !ok {
- return operation
- }
-
- convertedOp := make(map[string]interface{})
-
- // Copy basic fields
- for key, value := range opMap {
- if key == "consumes" || key == "produces" {
- // Skip consumes/produces as they are handled differently in OpenAPI 3
- continue
- } else if key == "responses" {
- convertedOp[key] = convertResponses(value)
- } else {
- convertedOp[key] = value
- }
- }
-
- return convertedOp
-}
-
-func convertResponses(responses interface{}) interface{} {
- respMap, ok := responses.(map[string]interface{})
- if !ok {
- return responses
- }
-
- convertedResponses := make(map[string]interface{})
-
- for statusCode, response := range respMap {
- convertedResponse := convertResponse(response)
- convertedResponses[statusCode] = convertedResponse
- }
-
- return convertedResponses
-}
-
-func convertResponse(response interface{}) interface{} {
- respMap, ok := response.(map[string]interface{})
- if !ok {
- return response
- }
-
- convertedResp := make(map[string]interface{})
-
- // Copy description
- if desc, exists := respMap["description"]; exists {
- convertedResp["description"] = desc
- }
-
- // Convert schema to content
- if schema, exists := respMap["schema"]; exists {
- content := map[string]interface{}{
- "application/json": map[string]interface{}{
- "schema": convertSchemaRef(schema),
- },
- }
-
- // Add examples based on schema
- if schemaMap, ok := schema.(map[string]interface{}); ok {
- if ref, exists := schemaMap["$ref"]; exists {
- content["application/json"].(map[string]interface{})["examples"] = getExampleForRef(ref.(string))
- } else if schemaType, exists := schemaMap["type"]; exists && schemaType == "array" {
- if items, exists := schemaMap["items"]; exists {
- if itemsMap, ok := items.(map[string]interface{}); ok {
- if ref, exists := itemsMap["$ref"]; exists {
- content["application/json"].(map[string]interface{})["examples"] = getArrayExampleForRef(ref.(string))
- }
- }
- }
- }
- }
-
- convertedResp["content"] = content
- }
-
- return convertedResp
-}
-
-func convertSchemaRef(schema interface{}) interface{} {
- schemaMap, ok := schema.(map[string]interface{})
- if !ok {
- return schema
- }
-
- convertedSchema := make(map[string]interface{})
-
- for key, value := range schemaMap {
- if key == "$ref" && value != nil {
- // Update reference path from #/definitions/ to #/components/schemas/
- ref := value.(string)
- if strings.HasPrefix(ref, "#/definitions/") {
- // Remove "main." prefix from the reference
- refName := strings.TrimPrefix(strings.TrimPrefix(ref, "#/definitions/"), "main.")
- convertedSchema["$ref"] = "#/components/schemas/" + refName
- } else {
- convertedSchema[key] = value
- }
- } else if key == "items" {
- convertedSchema[key] = convertSchemaRef(value)
- } else {
- convertedSchema[key] = value
- }
- }
-
- return convertedSchema
-}
-
-func getExampleForRef(ref string) map[string]interface{} {
- if strings.Contains(ref, "PostResponse") {
- return map[string]interface{}{
- "success": map[string]interface{}{
- "value": map[string]interface{}{
- "id": 1,
- "title": "Sample Post Title",
- "body": "Sample post body content",
- "userId": 1,
- "formattedAt": "2024-01-01T12:00:00Z",
- },
- },
- }
- } else if strings.Contains(ref, "ErrorResponse") {
- return map[string]interface{}{
- "error": map[string]interface{}{
- "value": map[string]interface{}{
- "error": "Internal server error",
- "message": "Failed to fetch data",
- },
- },
- }
- }
- return map[string]interface{}{}
-}
-
-func getArrayExampleForRef(ref string) map[string]interface{} {
- if strings.Contains(ref, "PostResponse") {
- return map[string]interface{}{
- "success": map[string]interface{}{
- "value": []interface{}{
- map[string]interface{}{
- "id": 1,
- "title": "Sample Post Title",
- "body": "Sample post body content",
- "userId": 1,
- "formattedAt": "2024-01-01T12:00:00Z",
- },
- map[string]interface{}{
- "id": 2,
- "title": "Another Post Title",
- "body": "Another post body content",
- "userId": 2,
- "formattedAt": "2024-01-01T12:30:00Z",
- },
- },
- },
- }
- }
- return map[string]interface{}{}
-}
-
-func main() {
- // Read Swagger 2.0 file
- swaggerData, err := ioutil.ReadFile("api/docs/swagger.json")
- if err != nil {
- log.Fatalf("Failed to read swagger.json: %v", err)
- }
-
- var swagger2 Swagger2
- if err := json.Unmarshal(swaggerData, &swagger2); err != nil {
- log.Fatalf("Failed to parse swagger.json: %v", err)
- }
-
- // Convert to OpenAPI 3.0.3
- openapi3 := convertSwagger2ToOpenAPI3(swagger2)
-
- // Marshal to JSON with pretty printing
- openapi3Data, err := json.MarshalIndent(openapi3, "", " ")
- if err != nil {
- log.Fatalf("Failed to marshal OpenAPI 3.0.3: %v", err)
- }
-
- // Write to output file
- if err := ioutil.WriteFile("openapi-specifications/api.swagger.json", openapi3Data, 0644); err != nil {
- log.Fatalf("Failed to write openapi-specifications/api.swagger.json: %v", err)
- }
-
- fmt.Println("Successfully converted Swagger 2.0 to OpenAPI 3.0.3")
- fmt.Println("Output: openapi-specifications/api.swagger.json")
-}
\ No newline at end of file
diff --git a/generate-openapi.sh b/generate-openapi.sh
index 55ab07c..0023e5b 100755
--- a/generate-openapi.sh
+++ b/generate-openapi.sh
@@ -1,15 +1,15 @@
#!/bin/bash
-# Script to generate OpenAPI 3.0.3 specification from Go Gin swagger annotations
+# Script to generate OpenAPI 3.0.0 specification from Go Gin swagger annotations
# This script follows the workflow requested:
# 1. Run swag init to generate Swagger 2.0 in api/docs/
-# 2. Convert Swagger 2.0 to OpenAPI 3.0.3
+# 2. Convert Swagger 2.0 to OpenAPI 3.0.0
# 3. Place result in openapi-specifications/api.swagger.json
# 4. Verify npm commands work
set -e
-echo "🚀 Starting OpenAPI 3.0.3 generation workflow..."
+echo "🚀 Starting OpenAPI 3.0.0 generation workflow..."
# Check if we're in the right directory
if [ ! -f "api/main.go" ]; then
@@ -44,16 +44,19 @@ if [ ! -f "api/docs/swagger.json" ]; then
fi
echo "✅ Swagger 2.0 documentation generated at api/docs/swagger.json"
-# Step 3: Convert Swagger 2.0 to OpenAPI 3.0.3
-echo "🔄 Converting Swagger 2.0 to OpenAPI 3.0.3..."
-go run convert-swagger.go
+# Step 3: Convert Swagger 2.0 to OpenAPI 3.0.0
+echo "🔄 Converting Swagger 2.0 to OpenAPI 3.0.0..."
+cd mobile-app
+npm install
+npm run swagger2openapi
+cd ..
-# Verify OpenAPI 3.0.3 was generated
+# Verify OpenAPI 3.0.0 was generated
if [ ! -f "openapi-specifications/api.swagger.json" ]; then
echo "❌ Error: openapi-specifications/api.swagger.json was not generated"
exit 1
fi
-echo "✅ OpenAPI 3.0.3 specification generated at openapi-specifications/api.swagger.json"
+echo "✅ OpenAPI 3.0.0 specification generated at openapi-specifications/api.swagger.json"
# Step 4: Test npm commands
echo "🧪 Testing npm commands..."
@@ -79,19 +82,24 @@ if [ ! -f "mobile-app/schema/api.d.ts" ]; then
fi
echo "✅ TypeScript definitions generated at mobile-app/schema/api.d.ts"
-# Test mock command (start and immediately stop)
+# Test mock command
echo "Testing npm run mock..."
cd mobile-app
-timeout 5s npm run mock || true
+( npm run mock & sleep 5; ) || true
cd ..
echo "✅ Mock server test passed"
+# Stop the mock server
+echo "Stopping mock server..."
+kill -9 $(lsof -t -i :8080) 2>/dev/null || true
+echo "✅ Mock server stopped"
+
echo ""
echo "🎉 All steps completed successfully!"
echo ""
echo "Generated files:"
echo " - api/docs/swagger.json (Swagger 2.0 from swag init)"
-echo " - openapi-specifications/api.swagger.json (OpenAPI 3.0.3 converted)"
+echo " - openapi-specifications/api.swagger.json (OpenAPI 3.0.0 converted)"
echo " - mobile-app/schema/api.d.ts (TypeScript definitions)"
echo ""
echo "Available commands:"
diff --git a/img/icon.png b/img/icon.png
deleted file mode 100644
index 68037ea..0000000
Binary files a/img/icon.png and /dev/null differ
diff --git a/mobile-app/README.md b/mobile-app/README.md
index 951472d..690872e 100644
--- a/mobile-app/README.md
+++ b/mobile-app/README.md
@@ -4,6 +4,15 @@ This is an [Expo](https://expo.dev) project created with [`create-expo-app`](htt
## Get started
+### Makefile
+
+This project includes a Makefile for convenience. You can use the following commands from the root directory:
+
+- `make run_api_dev`: Start the API server in development mode.
+- `make run_mobile_app`: Start the mobile app.
+
+### Manual Setup
+
1. Install dependencies
```bash
diff --git a/mobile-app/app.json b/mobile-app/app.json
index 3904ba1..4039382 100644
--- a/mobile-app/app.json
+++ b/mobile-app/app.json
@@ -1,11 +1,11 @@
{
"expo": {
- "name": "mobile-app",
- "slug": "mobile-app",
+ "name": "CHARIMACHI",
+ "slug": "CHARIMACHI",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
- "scheme": "mobileapp",
+ "scheme": "CHARIMACHI",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
diff --git a/mobile-app/app/(tabs)/_layout.tsx b/mobile-app/app/(tabs)/_layout.tsx
index 4b32d81..fa5c077 100644
--- a/mobile-app/app/(tabs)/_layout.tsx
+++ b/mobile-app/app/(tabs)/_layout.tsx
@@ -28,36 +28,18 @@ export default function TabLayout() {