diff --git a/AGENTS.md b/AGENTS.md
index 80cbf8d3..fd10ae3c 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -53,48 +53,63 @@ vietnamese-provinces-database/
│ ├── main.go # Entry point
│ ├── go.mod / go.sum # Go dependencies (Bun, postgres driver)
│ ├── .env # Database credentials
-│ ├── cmd/
-│ │ └── compare-gis/ # CLI tool for GIS comparison workflows
│ ├── docker/
│ │ └── docker-compose.yaml # Local Postgres/PostGIS container
│ ├── internal/
-│ │ ├── common/ # Shared helpers (e.g., Vietnamese text handling)
-│ │ ├── dvhcvn_data_downloader/ # Direct DVHCVN administrative data ingestion
-│ │ ├── sapnhap_bando/ # Geographic data service (formerly API, now file-based)
+│ │ ├── common/ # Shared helpers
+│ │ │ └── viet/ # Vietnamese text handling (tone marks, normalization)
+│ │ ├── dvhcvn_data_downloader/ # Direct DVHCVN administrative data ingestion (SOAP parser)
+│ │ ├── sapnhap_bando/ # Geographic data service (HTTP API to sapnhap.bando.com.vn)
│ │ │ ├── fetcher/ # Loads JSON metadata & GeoJSON files
-│ │ │ ├── service/ # Business logic
-│ │ │ ├── repository/ # Database operations
-│ │ │ ├── model/ # Domain models
-│ │ │ └── dto/ # Data transfer objects
+│ │ │ ├── service/ # Business logic (GIS fetch, backfill, metadata)
+│ │ │ ├── repository/ # Database operations (sapnhap, gis, geojson_objects)
+│ │ │ ├── model/ # Domain models (sapnhap, geojson)
+│ │ │ ├── dto/ # Data transfer objects (geojson_file, gis_server, sapnhap_api)
+│ │ │ └── util/ # Name normalization utilities
│ │ ├── dumper/ # Reads admin data, persists to DB
+│ │ │ ├── config/ # Constant mappings
+│ │ │ ├── helper/ # Dumper helper functions
+│ │ │ ├── model/ # Dumper domain models
+│ │ │ ├── repository/ # Seed data repository
+│ │ │ └── service/ # DVHCVN SOAP seed dumper, corrector, manual seed dumper
│ │ ├── dataset_writer/ # Generates SQL/JSON/NoSQL output
-│ │ ├── vn_provinces_tmp/ # Core VN provinces data layer
+│ │ │ └── dataset_file_writer/ # Per-format file writers (postgres/mysql, mssql, oracle, json, mongodb, redis, geojson)
+│ │ │ ├── dto/ # Output DTOs (geojson, json, mongo)
+│ │ │ └── helper/ # DTO mappers
+│ │ ├── vn_provinces_tmp/ # Core VN provinces data layer (provinces_tmp, wards_tmp tables)
+│ │ │ ├── model/ # Bun ORM models (Province, Ward, AdministrativeUnit, AdministrativeRegion)
+│ │ │ └── repository/ # Repository queries
│ │ ├── gis/ # GIS models and shared GIS logic
-│ │ ├── gis_comparator/ # GIS data validation
-│ │ ├── spatial_gis_comparator/ # Advanced spatial analysis
-│ │ ├── geojson_fetcher/ # GeoJSON handling
-│ │ ├── testutil/ # Test fixtures/helpers
-│ │ └── database/ # Postgres connection pool
+│ │ └── database/ # Postgres connection pool + bootstrap/SQL script execution
│ ├── resources/
-│ │ └── gis/
-│ │ ├── bando_gisserver/ # ← Provinces/wards JSON metadata
-│ │ ├── exported/ # Exported GIS intermediate artifacts
-│ │ ├── geojson_11Mar2026/ # ← GeoJSON geometry (from deprecated API)
-│ │ └── sapnhapbando_geojson/ # Auxiliary GIS GeoJSON resources
-│ ├── resources/manual_seeds/ # Manual fallback seed data
-│ ├── sapnhap-bando-crawler/ # Historical/auxiliary crawler tooling
+│ │ ├── db_table_init.sql # Core table schema (provinces_tmp, wards_tmp, etc.)
+│ │ ├── db_region_administrative_unit.sql # Region & administrative unit seed data
+│ │ ├── fresh_cleanup.sql # DB cleanup script (run before each generation)
+│ │ ├── gis/
+│ │ │ ├── geojson_11Mar2026/ # ← GeoJSON geometry (from deprecated API)
+│ │ │ ├── sapnhapbando_geojson/ # Auxiliary GIS GeoJSON resources (3,355 files)
+│ │ │ ├── sapnhap_bando_tables.sql # GIS table schema
+│ │ │ ├── sapnhapbando_init_geo_json_objects_tbl.sql # Geo objects table init
+│ │ │ └── sapnhapbando_geo_objects.sql # Geo objects seed data
+│ │ ├── manual_seeds/ # Manual fallback seed data (provinces_seed.sql + wards/)
+│ │ └── rules/ # Vietnamese text convention rules
+│ │ └── vn_tone_mark_convention.md
+│ ├── bando_co_dvch.sql # Raw SAPNhap administrative unit SQL dump (497KB)
+│ ├── sapnhap-bando-crawler/ # Historical/auxiliary crawler tooling (Python scripts)
│ ├── memory/
│ │ ├── MEMORY.md # Memory index
│ │ └── feedback_*.md # User preferences & learnings
-│ ├── output/ # Generated artifacts
-│ └── patch/ # Historical decree patches
-├── development/ # Feature documentation
+│ ├── output/ # Generated artifacts (gitignored, staging area)
+│ └── tmp/ # Temporary working directory
+├── development/ # Feature documentation & planning artifacts
│ ├── adapt_the_removal_of_sapnhap_api.md # Context: API → file-based migration
-│ └── [phase-plans].md # Plans for new features
-├── docs/ # User-facing GIS and dataset documentation
+│ ├── cleanup_old_reference/ # Completed cleanup plans (e.g., remove_bando_gisserver_references.md)
+│ └── include_geojson_export/ # GeoJSON export feature planning
+├── docs/
+│ └── gis/ # User-facing GIS documentation (gis_readme.md, gis_readme_vi.md, gis_example_query.md)
├── json/, mysql/, postgresql/, oracle/, sqlserver/, mongodb/, redis/
│ └── Generated dataset exports in various formats
-└── .github/workflows/ # CI/CD pipelines
+└── .github/workflows/ # CI/CD pipelines (test-go.yml runs Go tests with PostGIS)
```
---
@@ -137,10 +152,9 @@ Current generation flow:
Geographic data migration context (March 2026):
- **Before**: GIS metadata fetched from SAPNhap API (`/pcotinh`, `/ptracuu`)
-- **Now**: GIS metadata and geometry load from local files:
- - `./resources/gis/bando_gisserver/provinces.json`
- - `./resources/gis/bando_gisserver/wards.json`
+- **After (March 2026)**: GIS metadata and geometry load from local files:
- `./resources/gis/geojson_11Mar2026/*.geojson`
+- **After (July 2026)**: `bando_gisserver/` local JSON files removed (dead code cleanup). Live GIS uses HTTP API (`pread_json`, `p.co_dvhc_id`) + An Giang manual patch.
- **Key IDs**: `mahc` (province)→`sapnhap_province_matinh` (GIS), `maxa` (ward)→`sapnhap_ward_maxa` (GIS)
- **Status**: All 3,355 records verified with 100% GIS ID match rate
@@ -154,7 +168,6 @@ Geographic data migration context (March 2026):
|------|----------|-------|
| Check province/ward counts | Query | `docker exec psql` or `/db-query` |
| Verify data integrity (duplicates, orphans) | Query | SQL verification scripts |
-| Compare old vs new GIS data | Query + analysis | `gis_comparator`, `spatial_gis_comparator` |
| Generate new SQL dumps | Execute script | `go run main.go` |
| Migrate new government decree | Query → Plan → Execute | Read decree, find affected records, generate patch |
@@ -199,10 +212,27 @@ Typical contents in `dataset-generation-scripts/output/` include:
## Testing & Validation
- Unit tests in each `internal/*/` package (run with `go test -v ./...`)
-- Data validation via `gis_comparator` for geometry matching
- Historical patch verification in `patch/` directory
- GIS server ID matching (100% validation before release)
+### CI/CD Pipeline (`.github/workflows/test-go.yml`)
+
+The CI pipeline runs on pull requests to `main`/`master` and on manual dispatch:
+
+1. **Service setup**: Spins up `postgis/postgis:15-3.3` as a service container on port `15432`
+2. **Schema initialization**: Runs SQL scripts in order:
+ - `resources/db_table_init.sql` — core tables
+ - `resources/db_region_administrative_unit.sql` — region/unit seed data
+ - `resources/gis/sapnhap_bando_tables.sql` — GIS tables
+ - `resources/gis/sapnhapbando_init_geo_json_objects_tbl.sql` — geo objects table
+3. **Environment variables** (required for tests):
+ - `POSTGRES_DB_HOST=localhost`, `POSTGRES_DB_PORT=15432`
+ - `POSTGRES_DB_USERNAME=postgres`, `POSTGRES_DB_PSWD=root`
+ - `POSTGRES_TMP_DB_NAME=vn_provinces_tmp`
+4. **Test execution**: `go test -v ./...` from `dataset-generation-scripts/`
+
+> **Note**: `first-workflow.yml` is a trivial hello-world stub, not functional CI.
+
---
## Subsystem Deep Dive
@@ -221,8 +251,7 @@ For detailed code-level context on Go services, database models, and implementat
## Memory & Feedback
This project maintains persistent learnings:
-- [Database Skill Preference](dataset-generation-scripts/memory/feedback_database_skill.md) — Use reusable skills for recurring tasks
-- [Automatic Skill Invocation](dataset-generation-scripts/memory/feedback_auto_db_query.md) — Skills should auto-trigger based on context
+- [Automatic Skill Invocation](dataset-generation-scripts/memory/feedback_auto_db_query.md) — Skills should auto-trigger based on context, not require manual `/skill-name` invocation
---
@@ -232,9 +261,12 @@ This project maintains persistent learnings:
|----------|---------|
| [README.md](README.md) | User guide — dataset installation & usage |
| [CLAUDE.md](dataset-generation-scripts/CLAUDE.md) | Code agent guide — detailed subsystem context |
+| [dataset-generation-scripts/README.md](dataset-generation-scripts/README.md) | Maintainer guide — how to run generation scripts |
+| [docs/gis/](docs/gis/) | User-facing GIS documentation (readme, example queries) |
| [development/](development/) | Feature documentation & planning artifacts |
| [patch/](patch/) | Historical decree patches & changelog |
| [resources/gis/](dataset-generation-scripts/resources/gis/) | GeoJSON & metadata source files |
+| [resources/rules/](dataset-generation-scripts/resources/rules/) | Vietnamese text convention rules |
---
diff --git a/dataset-generation-scripts/CLAUDE.md b/dataset-generation-scripts/CLAUDE.md
index 5b547d87..bae7b780 100644
--- a/dataset-generation-scripts/CLAUDE.md
+++ b/dataset-generation-scripts/CLAUDE.md
@@ -70,9 +70,12 @@ The upstream data site `sapnhap.bando.com.vn` deprecated their API endpoints:
- `/ptracuu` (wards lookup)
**Solution:** Migrated to local JSON and GeoJSON files:
-- `./resources/gis/bando_gisserver/provinces.json` - Province metadata
-- `./resources/gis/bando_gisserver/wards.json` - Ward metadata
-- `./resources/gis/geojson_11Mar2026/` - GeoJSON geometry files
+- `./resources/gis/geojson_11Mar2026/` - GeoJSON geometry files (used for An Giang manual patch)
+
+> **July 2026 Update:** The `bando_gisserver/` local JSON metadata files (provinces.json, wards.json) were removed.
+> The code path that loaded them was dead — never invoked from `main.go`.
+> The live GIS pipeline uses HTTP API calls to `sapnhap.bando.com.vn` directly.
+> See: `development/cleanup_old_reference/remove_bando_gisserver_references.md`
**Implementation:**
- Replaced API calls with file-based loading
@@ -87,19 +90,47 @@ The upstream data site `sapnhap.bando.com.vn` deprecated their API endpoints:
```
dataset-generation-scripts/
├── internal/
-│ ├── sapnhap_bando/
-│ │ ├── fetcher/ # Data fetching from local files
-│ │ ├── service/ # Business logic
-│ │ ├── repository/ # Database operations
-│ │ ├── model/ # Database models
-│ │ └── dto/ # Data transfer objects
-│ ├── vn_provinces_tmp/ # VN provinces data layer
-│ └── database/ # Database connection
+│ ├── common/
+│ │ └── viet/ # Vietnamese text handling (tone marks, normalization)
+│ ├── dvhcvn_data_downloader/ # DVHCVN SOAP data ingestion (parser, model, downloader)
+│ ├── sapnhap_bando/ # Geographic data service
+│ │ ├── fetcher/ # Data fetching from HTTP API & local files
+│ │ ├── service/ # Business logic (GIS fetch, backfill, metadata)
+│ │ ├── repository/ # Database operations (sapnhap, gis, geojson_objects)
+│ │ ├── model/ # Database models (sapnhap, geojson)
+│ │ ├── dto/ # Data transfer objects (geojson_file, gis_server, sapnhap_api)
+│ │ └── util/ # Name normalization utilities
+│ ├── dumper/ # Admin data ingestion to DB
+│ │ ├── config/ # Constant mappings
+│ │ ├── helper/ # Helper functions
+│ │ ├── model/ # Domain models
+│ │ ├── repository/ # Seed data repository
+│ │ └── service/ # DVHCVN SOAP seed dumper, corrector, manual seed dumper
+│ ├── dataset_writer/ # Multi-format dataset generation
+│ │ └── dataset_file_writer/ # Per-format writers (postgres/mysql, mssql, oracle, json, mongodb, redis, geojson)
+│ │ ├── dto/ # Output DTOs
+│ │ └── helper/ # DTO mappers
+│ ├── vn_provinces_tmp/ # Core VN provinces data layer (model + repository)
+│ ├── gis/ # GIS models
+│ ├── testutil/ # Test fixtures/helpers
+│ └── database/ # Postgres connection + bootstrap/SQL execution
├── resources/
-│ └── gis/
-│ ├── bando_gisserver/ # JSON metadata files
-│ └── geojson_11Mar2026/ # GeoJSON geometry files
-└── main.go
+│ ├── db_table_init.sql # Core table schema
+│ ├── db_region_administrative_unit.sql
+│ ├── fresh_cleanup.sql
+│ ├── gis/
+│ │ ├── geojson_11Mar2026/ # GeoJSON geometry files (from deprecated API)
+│ │ ├── sapnhapbando_geojson/ # Auxiliary GIS GeoJSON resources (3,355 files)
+│ │ ├── sapnhap_bando_tables.sql
+│ │ ├── sapnhapbando_init_geo_json_objects_tbl.sql
+│ │ └── sapnhapbando_geo_objects.sql
+│ ├── manual_seeds/ # Manual fallback seed data
+│ └── rules/ # Vietnamese text convention rules
+├── docker/
+│ └── docker-compose.yaml # Postgres/PostGIS container (port 15432)
+├── memory/ # AI agent memory & feedback
+├── output/ # Generated artifacts (gitignored)
+└── main.go # Entry point
```
## Development Workflow
@@ -127,12 +158,14 @@ dataset-generation-scripts/
| Package | Purpose | Key Files |
|---------|---------|-----------|
-| `sapnhap_bando/` | Geographic data service | `fetcher/` loads JSON, `service/` orchestrates, `repository/` queries |
-| `vn_provinces_tmp/` | Core VN administrative data layer | Manages `provinces_tmp`, `wards_tmp` tables |
-| `dumper/` | Reads admin data, persists to DB | Integration point with GSO data sources |
-| `dataset_writer/` | Generates SQL/JSON/NoSQL exports | Multi-database output formatting |
-| `gis_comparator/` | Validates GIS data consistency | Ensures GIS IDs match across sources |
-| `database/` | Postgres connection pool | Manages `bun.DB` lifecycle |
+| `common/viet/` | Vietnamese text processing | Tone mark removal, Y-normalization, Unicode handling |
+| `dvhcvn_data_downloader/` | Direct DVHCVN admin data ingestion | SOAP parser (`dvhcvn_parser.go`), data downloader, models |
+| `sapnhap_bando/` | Geographic data service (HTTP API) | `fetcher/` loads data, `service/` orchestrates GIS fetch + backfill, `repository/` queries DB, `util/` normalizes names |
+| `dumper/` | Reads admin data, persists to DB | `service/` has DVHCVN SOAP dumper + corrector, manual seed dumper; `config/` has constant mappings; `repository/` for seed data |
+| `dataset_writer/` | Generates SQL/JSON/NoSQL exports | `dataset_file_writer/` has per-format writers (postgres/mysql, mssql, oracle, json, mongodb, redis, geojson) + `dto/` + `helper/` |
+| `vn_provinces_tmp/` | Core VN administrative data layer | `model/` has Bun ORM models (Province, Ward, AdministrativeUnit, AdministrativeRegion); `repository/` for queries |
+| `gis/` | GIS shared models | Geometry data structures |
+| `database/` | Postgres connection + DB bootstrap | `postgres_connector.go` (.env-based DSN), `vn_province_db_service.go` (schema bootstrap, SQL script execution) |
| `testutil/` | Test helpers | Database seeding, fixtures |
---
@@ -153,13 +186,13 @@ dataset-generation-scripts/
| File | Purpose |
|------|---------|
-| `.env` | Database credentials (`DSN` for Postgres connection) |
-| `docker-compose.yml` | Docker services (if exists; see [../AGENTS.md](../AGENTS.md)) |
-| `go.mod` | Go module definition & dependencies |
-| `resources/gis/bando_gisserver/` | JSON metadata for provinces & wards |
+| `.env` | Database credentials — 5 env vars: `POSTGRES_DB_USERNAME`, `POSTGRES_DB_PSWD`, `POSTGRES_DB_HOST`, `POSTGRES_DB_PORT`, `POSTGRES_TMP_DB_NAME`. The DSN is constructed programmatically in `internal/database/postgres_connector.go` |
+| `.env.example` | Template for `.env` (copy to `.env` and fill in credentials) |
+| `docker/docker-compose.yaml` | Docker Postgres/PostGIS service (port 15432→5432) |
+| `go.mod` | Go module definition & dependencies (Go 1.24.0) |
| `resources/gis/geojson_11Mar2026/` | GeoJSON geometry files from deprecated API |
-- `main.go` - Entry point for dataset generation
-- `development/` - Development documentation
+| `resources/gis/sapnhapbando_geojson/` | 3,355 auxiliary GIS GeoJSON resource files |
+| `main.go` | Entry point for dataset generation |
## GIS Server ID Matching
diff --git a/dataset-generation-scripts/bin/compare-gis b/dataset-generation-scripts/bin/compare-gis
deleted file mode 100755
index bfdf02ef..00000000
Binary files a/dataset-generation-scripts/bin/compare-gis and /dev/null differ
diff --git a/dataset-generation-scripts/cmd/compare-gis/main.go b/dataset-generation-scripts/cmd/compare-gis/main.go
deleted file mode 100644
index b68e0d1e..00000000
--- a/dataset-generation-scripts/cmd/compare-gis/main.go
+++ /dev/null
@@ -1,116 +0,0 @@
-package main
-
-import (
- "flag"
- "fmt"
- "log"
- "os"
- "path/filepath"
-
- "github.com/thanglequoc-vn-provinces/v2/internal/database"
- "github.com/thanglequoc-vn-provinces/v2/internal/gis_comparator/model"
- "github.com/thanglequoc-vn-provinces/v2/internal/gis_comparator/service"
-)
-
-func main() {
- // Define command-line flags
- compareFlag := flag.String("compare", "both", "What to compare: provinces, wards, or both (default: both)")
- provincesDumpFlag := flag.String("provinces-dump", "", "Path to provinces dump file")
- wardsDumpFlag := flag.String("wards-dump", "", "Path to wards dump file")
- verboseFlag := flag.Bool("v", false, "Enable verbose logging")
- _ = flag.Bool("cleanup", true, "Cleanup temporary tables after comparison (no-op - cleanup happens automatically)")
-
- flag.Usage = func() {
- fmt.Fprintf(os.Stderr, "Usage: %s [options]\n\n", os.Args[0])
- fmt.Fprintln(os.Stderr, "Compares GIS data between current database and SQL dump files.")
- fmt.Fprintln(os.Stderr, "\nOptions:")
- flag.PrintDefaults()
- fmt.Fprintln(os.Stderr, "\nExamples:")
- fmt.Fprintf(os.Stderr, " %s --compare=both\n", os.Args[0])
- fmt.Fprintf(os.Stderr, " %s --compare=provinces --provinces-dump=./path/to/dump.sql\n", os.Args[0])
- fmt.Fprintf(os.Stderr, " %s --provinces-dump=./resources/gis/exported/sapnhap_provinces_gis_202509011857_lfs.sql \\\n", os.Args[0])
- fmt.Fprintf(os.Stderr, " --wards-dump=./resources/gis/exported/sapnhap_wards_gis_202509011858_lfs.sql\n")
- }
-
- flag.Parse()
-
- // Set default dump file paths if not provided
- if *provincesDumpFlag == "" {
- *provincesDumpFlag = filepath.Join(".", "resources", "gis", "exported", "sapnhap_provinces_gis_202509011857_lfs.sql")
- }
- if *wardsDumpFlag == "" {
- *wardsDumpFlag = filepath.Join(".", "resources", "gis", "exported", "sapnhap_wards_gis_202509011858_lfs.sql")
- }
-
- if !*verboseFlag {
- log.SetFlags(0) // Remove timestamp from logs for cleaner output
- }
-
- log.Println("🔍 Starting GIS data comparison...")
-
- // Connect to database
- db := database.GetPostgresDBConnection()
- defer db.Close()
-
- comparatorService := service.NewGISComparatorService(db)
-
- // Run all operations in a single transaction to ensure temp tables are visible
- tx, err := db.Begin()
- if err != nil {
- log.Fatalf("❌ Failed to begin transaction: %v", err)
- }
- defer tx.Rollback() // Will rollback if not committed
-
- // Setup temporary tables and load dump data within the transaction
- log.Println("📋 Setting up temporary tables...")
- err = comparatorService.SetupTempTablesWithTx(tx, *provincesDumpFlag, *wardsDumpFlag)
- if err != nil {
- log.Fatalf("❌ Failed to setup temporary tables: %v", err)
- }
-
- // Perform comparisons based on flag
- var provincesSummary, wardsSummary *model.ComparisonSummary
-
- if *compareFlag == "provinces" || *compareFlag == "both" {
- log.Println("📍 Comparing provinces GIS data...")
- provincesSummary, err = comparatorService.CompareProvincesGISWithTx(tx)
- if err != nil {
- log.Fatalf("❌ Failed to compare provinces: %v", err)
- }
- service.LogComparisonResults(provincesSummary)
- }
-
- if *compareFlag == "wards" || *compareFlag == "both" {
- log.Println("🏘️ Comparing wards GIS data...")
- wardsSummary, err = comparatorService.CompareWardsGISWithTx(tx)
- if err != nil {
- log.Fatalf("❌ Failed to compare wards: %v", err)
- }
- service.LogComparisonResults(wardsSummary)
- }
-
- // Print summary
- service.PrintSummary(provincesSummary, wardsSummary)
-
- // Commit the transaction (this also removes temp tables automatically)
- err = tx.Commit()
- if err != nil {
- log.Printf("⚠️ Warning: Failed to commit transaction: %v", err)
- }
-
- // Exit with error code if differences found
- exitCode := 0
- if (*compareFlag == "provinces" || *compareFlag == "both") && provincesSummary != nil && !provincesSummary.IsEqual() {
- exitCode = 1
- }
- if (*compareFlag == "wards" || *compareFlag == "both") && wardsSummary != nil && !wardsSummary.IsEqual() {
- exitCode = 1
- }
-
- if exitCode != 0 {
- log.Println("\n⚠️ Comparison completed with differences")
- os.Exit(exitCode)
- }
-
- log.Println("\n✅ Comparison completed successfully - all data matches!")
-}
diff --git a/dataset-generation-scripts/internal/database/vn_province_db_service.go b/dataset-generation-scripts/internal/database/vn_province_db_service.go
index de95029e..4afcd099 100644
--- a/dataset-generation-scripts/internal/database/vn_province_db_service.go
+++ b/dataset-generation-scripts/internal/database/vn_province_db_service.go
@@ -11,7 +11,6 @@ const pathToTableInitFile = "./resources/db_table_init.sql"
const pathToRegionAdministrativeInitFile = "./resources/db_region_administrative_unit.sql"
// GIS data structure scripts
-const pathToSapNhapBandoTables = "./resources/gis/sapnhap_bando_tables.sql"
const pathToSapNhapGeoObjectsInitTbl = "./resources/gis/sapnhapbando_init_geo_json_objects_tbl.sql"
const pathToSapNhapGeoObjects = "./resources/gis/sapnhapbando_geo_objects.sql"
@@ -44,11 +43,6 @@ func BootstrapTemporaryDatasetStructure() {
Bootstrap GIS related data structure
*/
func BootstrapGISDataStructure() {
- if err := ExecuteSQLScript(pathToSapNhapBandoTables); err != nil {
- panic(err)
- }
- fmt.Println("SapNhap Bando tables created")
-
if err := ExecuteSQLScript(pathToSapNhapGeoObjectsInitTbl); err != nil {
panic(err)
}
diff --git a/dataset-generation-scripts/internal/dataset_writer/dataset_file_writer/dataset_file_writer.go b/dataset-generation-scripts/internal/dataset_writer/dataset_file_writer/dataset_file_writer.go
index e7d313f4..228b924a 100644
--- a/dataset-generation-scripts/internal/dataset_writer/dataset_file_writer/dataset_file_writer.go
+++ b/dataset-generation-scripts/internal/dataset_writer/dataset_file_writer/dataset_file_writer.go
@@ -17,8 +17,8 @@ type DatasetFileWriter interface {
wards []model.Ward) error
WriteGISDataToFile(
- sapNhapProvincesGIS []sapnhapmodels.SapNhapProvinceGIS,
- sapNhapWardsGIS []sapnhapmodels.SapNhapWardGIS) error
+ sapNhapProvincesGIS []*sapnhapmodels.SapNhapSiteGeoUnit,
+ sapNhapWardsGIS []*sapnhapmodels.SapNhapSiteGeoUnit) error
}
func getFileTimeSuffix() string {
diff --git a/dataset-generation-scripts/internal/dumper/dumper.go b/dataset-generation-scripts/internal/dumper/dumper.go
index 6ce78c76..172df0e2 100644
--- a/dataset-generation-scripts/internal/dumper/dumper.go
+++ b/dataset-generation-scripts/internal/dumper/dumper.go
@@ -1,18 +1,9 @@
package dumper
import (
- "fmt"
-
"github.com/thanglequoc-vn-provinces/v2/internal/dumper/service"
)
-func DumpFromManualSeed() {
- manualSeedDumperSvc := service.NewManualSeedDumperService()
- manualSeedDumperSvc.BootstrapManualSeedDataToDatabase()
- manualSeedDumperSvc.DumpToVNProvinceFromManualSeed()
- fmt.Println("📥 Dumper operation finished")
-}
-
func BeginDumpingDataWithDvhcvnDirectSource() {
soapSeedDumperSvc := service.NewDvhcvnSoapSeedDumperService()
soapSeedDumperSvc.BeginDumpingDataWithDvhcvnDirectSource()
diff --git a/dataset-generation-scripts/internal/dumper/model/dumper_model.go b/dataset-generation-scripts/internal/dumper/model/dumper_model.go
deleted file mode 100644
index 920997d4..00000000
--- a/dataset-generation-scripts/internal/dumper/model/dumper_model.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package model
-
-import "github.com/uptrace/bun"
-
-
-type SeedProvince struct {
- bun.BaseModel `bun:"table:provinces_tmp_seed,alias:ps"`
- Code string `bun:"code,pk"`
- Name string `bun:"name"`
-
- // Province has many wards
- SeedWards []*SeedWard `bun:"rel:has-many,join:code=province_code"`
-}
-
-type SeedWard struct {
- bun.BaseModel `bun:"table:wards_tmp_seed,alias:ws"`
- Code string `bun:"code,pk"`
- Name string `bun:"name"`
- ProvinceCode string `bun:"province_code"`
-}
-
diff --git a/dataset-generation-scripts/internal/dumper/repository/seed_data_repo.go b/dataset-generation-scripts/internal/dumper/repository/seed_data_repo.go
deleted file mode 100644
index e94f31a4..00000000
--- a/dataset-generation-scripts/internal/dumper/repository/seed_data_repo.go
+++ /dev/null
@@ -1,40 +0,0 @@
-package repository
-
-import
-(
- "log"
- "context"
- "github.com/uptrace/bun"
- "github.com/thanglequoc-vn-provinces/v2/internal/dumper/model"
-)
-
-type SeedDataRepository struct {
- db *bun.DB
-}
-
-func NewSeedDataRepository(db *bun.DB) *SeedDataRepository {
- return &SeedDataRepository{
- db: db,
- }
-}
-
-// Get all decree provinces
-func (r *SeedDataRepository) GetAllSeedProvinces() []model.SeedProvince {
- var result []model.SeedProvince
- ctx := context.Background()
- err := r.db.NewSelect().Model(&result).Scan(ctx)
- if err != nil {
- log.Fatal("Unable to query seed provinces", err)
- }
- return result
-}
-
-func (r *SeedDataRepository) GetAllSeedWards() []model.SeedWard {
- var result []model.SeedWard
- ctx := context.Background()
- err := r.db.NewSelect().Model(&result).Scan(ctx)
- if err != nil {
- log.Fatal("Unable to query seed wards", err)
- }
- return result
-}
diff --git a/dataset-generation-scripts/internal/dumper/service/manual_seed_dumper.go b/dataset-generation-scripts/internal/dumper/service/manual_seed_dumper.go
deleted file mode 100644
index ce953b10..00000000
--- a/dataset-generation-scripts/internal/dumper/service/manual_seed_dumper.go
+++ /dev/null
@@ -1,143 +0,0 @@
-package service
-
-import (
- "context"
- "fmt"
- "io/fs"
- "path/filepath"
- "regexp"
- "strings"
-
- db "github.com/thanglequoc-vn-provinces/v2/internal/database"
-
- "github.com/thanglequoc-vn-provinces/v2/internal/common/viet"
- cfg "github.com/thanglequoc-vn-provinces/v2/internal/dumper/config"
- "github.com/thanglequoc-vn-provinces/v2/internal/dumper/helper"
- "github.com/thanglequoc-vn-provinces/v2/internal/dumper/model"
- "github.com/thanglequoc-vn-provinces/v2/internal/dumper/repository"
-
- vn_provinces_tmp_model "github.com/thanglequoc-vn-provinces/v2/internal/vn_provinces_tmp/model"
- vn_repo "github.com/thanglequoc-vn-provinces/v2/internal/vn_provinces_tmp/repository"
-)
-
-type ManualSeedDumperService struct {
- seedRepo *repository.SeedDataRepository
- vnProvinceTmpRepo *vn_repo.VnProvincesTmpRepository
-}
-
-func NewManualSeedDumperService() *ManualSeedDumperService {
- return &ManualSeedDumperService{
- seedRepo: repository.NewSeedDataRepository(db.GetPostgresDBConnection()),
- vnProvinceTmpRepo: vn_repo.NewVnProvincesTmpRepository(db.GetPostgresDBConnection()),
- }
-}
-
-/* Bootstrap the manual seed data onto the temporary database for safe keeping and cross reference */
-func (s *ManualSeedDumperService) BootstrapManualSeedDataToDatabase() error {
- db.ExecuteSQLScript("./resources/manual_seeds/provinces_seed.sql")
-
- wardSeedRootFolder := "./resources/manual_seeds/wards"
- err := filepath.WalkDir(wardSeedRootFolder, func(path string, d fs.DirEntry, err error) error {
- if err != nil {
- return err
- }
- if !d.IsDir() && filepath.Ext(path) == ".sql" {
- fmt.Printf("Executing script: %s\n", path)
- db.ExecuteSQLScript(path)
- }
- return nil
- })
- if err != nil {
- fmt.Printf("Error walking through manual decree seeds: %v\n", err)
- }
- return nil
-}
-
-func (s *ManualSeedDumperService) DumpToVNProvinceFromManualSeed() {
- fmt.Println("Dumping data from manual database degree seed...")
-
- // Thing to do: Manual inject data to the database - Done
- // Read from the insert data, construct the dvhcvn data
- seedProvinces := s.seedRepo.GetAllSeedProvinces()
- seedWards := s.seedRepo.GetAllSeedWards()
- s.insertToProvinces(seedProvinces)
- s.insertToWards(seedWards)
- fmt.Println("📥 Dumper operation finished")
-}
-
-func (s *ManualSeedDumperService) insertToWards(seedWardModels []model.SeedWard) {
- ctx := context.Background()
- totalWard := 0
-
- for _, w := range seedWardModels {
- wardFullName := helper.CollapseSpaces(w.Name)
- administrativeUnitLevel := helper.GetAdministrativeUnit_WardLevel(wardFullName)
- unitName := cfg.AdministrativeUnitNamesShortNameMap_vn[administrativeUnitLevel]
- unitName_en := cfg.AdministrativeUnitNamesShortNameMap_en[administrativeUnitLevel]
- wardShortName := strings.Trim(strings.Replace(wardFullName, unitName, "", 1), " ")
- codeName := helper.ToCodeName(wardShortName)
- wardShortNameEn := viet.RemoveVietToneMark(wardShortName)
-
- // Case when ward name is a number
- isNumber, _ := regexp.MatchString(`^[0-9]+$`, wardShortName)
- var wardFullNameEn string
- if isNumber {
- wardFullNameEn = unitName_en + " " + wardShortNameEn
- } else {
- wardFullNameEn = wardShortNameEn + " " + unitName_en
- }
-
- wardModel := &vn_provinces_tmp_model.Ward{
- Code: w.Code,
- Name: wardShortName,
- NameEn: wardShortNameEn,
- FullName: wardFullName,
- FullNameEn: wardFullNameEn,
- CodeName: codeName,
- AdministrativeUnitId: administrativeUnitLevel,
- ProvinceCode: w.ProvinceCode,
- }
-
- err := s.vnProvinceTmpRepo.InsertWard(ctx, wardModel)
- totalWard++
- if err != nil {
- fmt.Println(err)
- panic("Exception happens while inserting into wards table")
- }
- }
-
- fmt.Printf("Inserted %d wards to tables\n", totalWard)
-}
-
-func (s *ManualSeedDumperService) insertToProvinces(seedProvinceModels []model.SeedProvince) {
- ctx := context.Background()
-
- for _, p := range seedProvinceModels {
- provinceFullName := helper.CollapseSpaces(p.Name)
- administrativeUnitLevel := helper.GetAdministrativeUnit_ProvinceLevel(provinceFullName)
- unitName := cfg.AdministrativeUnitNamesShortNameMap_vn[administrativeUnitLevel]
- unitName_en := cfg.AdministrativeUnitNamesShortNameMap_en[administrativeUnitLevel]
- provinceShortName := strings.Trim(strings.Replace(provinceFullName, unitName, "", 1), " ")
- codeName := helper.ToCodeName(provinceShortName)
- provinceShortNameEn := viet.RemoveVietToneMark(provinceShortName)
- provinceFullNameEn := provinceShortNameEn + " " + unitName_en
-
- provinceModel := &vn_provinces_tmp_model.Province{
- Code: p.Code,
- Name: provinceShortName,
- NameEn: provinceShortNameEn,
- FullName: provinceFullName,
- FullNameEn: provinceFullNameEn,
- CodeName: codeName,
- AdministrativeUnitId: administrativeUnitLevel,
- }
-
- err := s.vnProvinceTmpRepo.InsertProvince(ctx, provinceModel)
- if err != nil {
- fmt.Println(err)
- panic("Exception happens while inserting into provinces table")
- }
- }
-
- fmt.Printf("Inserted %d provinces to tables\n", len(seedProvinceModels))
-}
diff --git a/dataset-generation-scripts/internal/dvhcvn_data_downloader/data_downloader.go b/dataset-generation-scripts/internal/dvhcvn_data_downloader/data_downloader.go
index 216c4b77..08d36d72 100644
--- a/dataset-generation-scripts/internal/dvhcvn_data_downloader/data_downloader.go
+++ b/dataset-generation-scripts/internal/dvhcvn_data_downloader/data_downloader.go
@@ -12,7 +12,6 @@ import (
const DVHCVN_URL = "https://danhmuchanhchinh.nso.gov.vn/DMDVHC.asmx"
const DVHCVN_SOAP_DANH_MUC_TINH = "DanhMucTinh"
-const DVHCVN_SOAP_DANH_MUC_QUAN_HUYEN = "DanhMucQuanHuyen"
const DVHCVN_SOAP_DANH_MUC_PHUONG_XA = "DanhMucPhuongXa"
/*
diff --git a/dataset-generation-scripts/internal/dvhcvn_data_downloader/dvhcvn_model.go b/dataset-generation-scripts/internal/dvhcvn_data_downloader/dvhcvn_model.go
index c630dceb..af9f5e6b 100644
--- a/dataset-generation-scripts/internal/dvhcvn_data_downloader/dvhcvn_model.go
+++ b/dataset-generation-scripts/internal/dvhcvn_data_downloader/dvhcvn_model.go
@@ -1,35 +1,5 @@
package dvhcvn_data_downloader
-/*
-Response model from the DVHCVN Soap API
-Sample model response:
-
-```
-
-
-
- 01
- Thành phố Hà Nội
- 017
- Huyện Đông Anh
- 00514
- Xã Võng La
- Xã
-
-
-
-```
-*/
-type DvhcvnModel struct {
- ProvinceCode string //
- ProvinceName string //
- DistrictCode string //
- DistrictName string //
- WardCode string //
- WardName string //
- WardUnit string //
-}
-
/*
Response model from the DVHCVN Soap API: DanhMucTinh
```
@@ -48,28 +18,6 @@ type DvhcvnProvinceModel struct {
Unit string //
}
-/*
-Response model from the DVHCVN Soap API: DanhMucQuanHuyen
-```
-
-
- 01
- Thành phố Hà Nội
- 002
- Quận Hoàn Kiếm
- Quận
-
-
-```
-*/
-type DvhcvnDistrictModel struct {
- ProvinceCode string //
- ProvinceName string //
- DistrictCode string //
- DistrictName string //
- Unit string //
-}
-
/*
Response model from the DVHCVN Soap API: DanhMucPhuongXa
```
diff --git a/dataset-generation-scripts/internal/dvhcvn_data_downloader/dvhcvn_parser.go b/dataset-generation-scripts/internal/dvhcvn_data_downloader/dvhcvn_parser.go
index 49462f9a..907a0569 100644
--- a/dataset-generation-scripts/internal/dvhcvn_data_downloader/dvhcvn_parser.go
+++ b/dataset-generation-scripts/internal/dvhcvn_data_downloader/dvhcvn_parser.go
@@ -23,27 +23,6 @@ func toDvhcvnProvinceModel(s string) DvhcvnProvinceModel {
}
}
-/*
-Create the toDvhcvnDistrictModel from the dvhcvn response object.
-Input should be the dvhcvn content within the tag
-E.g: 01Thành phố Hà Nội003Quận Tây HồQuận
-*/
-func toDvhcvnDistrictModel(s string) DvhcvnDistrictModel {
- proviceCode := extractRegexValue(`(.+)`, s)
- proviceName := extractRegexValue(`(.+)`, s)
- districtCode := extractRegexValue(`(.+)`, s)
- districtName := extractRegexValue(`(.+)`, s)
- unit := extractRegexValue(`(.+)`, s)
-
- return DvhcvnDistrictModel{
- ProvinceCode: proviceCode,
- ProvinceName: convertStandardUnitName(proviceName),
- DistrictCode: districtCode,
- DistrictName: convertStandardUnitName(districtName),
- Unit: unit,
- }
-}
-
/*
Create the DvhcvnWardModel from the dvhcvn response object.
Input should be the dvhcvn content within the tag
@@ -127,20 +106,6 @@ func extractProvinceDvhcvnUnits(soapResponse string) []DvhcvnProvinceModel {
return result
}
-/*
-Extract the XML response from DVHCVN api to DvhcvnDistrictModel
-*/
-func extractDistrictDvhcvnUnits(soapResponse string) []DvhcvnDistrictModel {
- regexPattern := regexp2.MustCompile(`(?<=]*>)([\s\S\n]*?)(?=<\/TABLE>)`, 0)
- dvhcvnUnitBlocks := regexp2FindAllString(regexPattern, soapResponse)
-
- var result []DvhcvnDistrictModel
- for _, unit := range dvhcvnUnitBlocks {
- result = append(result, toDvhcvnDistrictModel(unit))
- }
- return result
-}
-
/*
Extract the XML response from DVHCVN api to DvhcvnWardModel
*/
diff --git a/dataset-generation-scripts/internal/gis_comparator/model/gis_comparison.go b/dataset-generation-scripts/internal/gis_comparator/model/gis_comparison.go
deleted file mode 100644
index 82534a5f..00000000
--- a/dataset-generation-scripts/internal/gis_comparator/model/gis_comparison.go
+++ /dev/null
@@ -1,29 +0,0 @@
-package model
-
-// WKTComparisonResult represents differences in WKT fields
-type WKTComparisonResult struct {
- RecordIdentifier string // e.g., "tinh34.7" or "xa3321.3285"
- RecordName string // Vietnamese name
- FieldName string // "bbox_wkt" or "geom_wkt"
- ExpectedWKT string // From dump temp table
- ActualWKT string // From current table
- Difference string // Human-readable diff description
-}
-
-// ComparisonSummary aggregates comparison results
-type ComparisonSummary struct {
- TableName string
- TotalRecords int
- MatchedRecords int
- MismatchedRecords int
- MissingInDB []string // GIS server IDs in dump but not in DB
- MissingInDump []string // GIS server IDs in DB but not in dump
- Differences []WKTComparisonResult
-}
-
-// IsEqual returns true if no differences found
-func (s *ComparisonSummary) IsEqual() bool {
- return s.MismatchedRecords == 0 &&
- len(s.MissingInDB) == 0 &&
- len(s.MissingInDump) == 0
-}
diff --git a/dataset-generation-scripts/internal/gis_comparator/service/gis_comparator.go b/dataset-generation-scripts/internal/gis_comparator/service/gis_comparator.go
deleted file mode 100644
index 0c779af8..00000000
--- a/dataset-generation-scripts/internal/gis_comparator/service/gis_comparator.go
+++ /dev/null
@@ -1,340 +0,0 @@
-package service
-
-import (
- "context"
- "fmt"
- "log"
- "os"
- "os/exec"
- "path/filepath"
- "strings"
-
- "github.com/thanglequoc-vn-provinces/v2/internal/gis_comparator/model"
- "github.com/uptrace/bun"
-)
-
-type GISComparatorService struct {
- db *bun.DB
-}
-
-func NewGISComparatorService(db *bun.DB) *GISComparatorService {
- return &GISComparatorService{
- db: db,
- }
-}
-
-// SetupTempTablesWithTx creates temporary tables and loads data using the provided transaction
-func (s *GISComparatorService) SetupTempTablesWithTx(tx bun.Tx, provincesDumpPath, wardsDumpPath string) error {
- // Step 1: Read the setup SQL script
- setupSQLPath := filepath.Join(".", "internal", "gis_comparator", "sql", "setup_temp_tables.sql")
- setupSQL, err := os.ReadFile(setupSQLPath)
- if err != nil {
- return fmt.Errorf("failed to read setup SQL file: %w", err)
- }
-
- // Step 2: Execute the setup SQL to create temp tables
- _, err = tx.Exec(string(setupSQL))
- if err != nil {
- return fmt.Errorf("failed to create temp tables: %w", err)
- }
- log.Printf("Created temporary tables")
-
- // Step 3: Load provinces dump data
- if provincesDumpPath != "" {
- err = s.loadDumpFile(tx, provincesDumpPath, "temp_sapnhap_provinces_gis_dump", "public.sapnhap_provinces_gis")
- if err != nil {
- return fmt.Errorf("failed to load provinces dump: %w", err)
- }
- log.Printf("Loaded provinces dump data from %s", provincesDumpPath)
- }
-
- // Step 4: Load wards dump data
- if wardsDumpPath != "" {
- err = s.loadDumpFile(tx, wardsDumpPath, "temp_sapnhap_wards_gis_dump", "public.sapnhap_wards_gis")
- if err != nil {
- return fmt.Errorf("failed to load wards dump: %w", err)
- }
- log.Printf("Loaded wards dump data from %s", wardsDumpPath)
- }
-
- return nil
-}
-
-// loadDumpFile reads a SQL dump file, modifies table names, and executes it
-func (s *GISComparatorService) loadDumpFile(tx bun.Tx, dumpPath, tempTableName, originalTableName string) error {
- // Read the entire file and modify INSERT statements
- content, err := os.ReadFile(dumpPath)
- if err != nil {
- return fmt.Errorf("failed to read dump file: %w", err)
- }
-
- // Replace the original table name with temp table name in INSERT statements
- modifiedSQL := strings.ReplaceAll(string(content), "INSERT INTO "+originalTableName, "INSERT INTO "+tempTableName)
-
- // Execute the modified SQL
- _, err = tx.Exec(modifiedSQL)
- if err != nil {
- return fmt.Errorf("failed to execute dump SQL: %w", err)
- }
-
- return nil
-}
-
-// CompareProvincesGISWithTx compares current provinces_gis with dump data using the provided transaction
-func (s *GISComparatorService) CompareProvincesGISWithTx(tx bun.Tx) (*model.ComparisonSummary, error) {
- summary := &model.ComparisonSummary{
- TableName: "sapnhap_provinces_gis",
- }
-
-
- // Get total counts
- var totalCount, dumpCount int
- err := tx.NewRaw("SELECT COUNT(*) FROM sapnhap_provinces_gis").Scan(context.Background(), &totalCount)
- if err != nil {
- return nil, fmt.Errorf("failed to get current provinces count: %w", err)
- }
-
- err = tx.NewRaw("SELECT COUNT(*) FROM temp_sapnhap_provinces_gis_dump").Scan(context.Background(), &dumpCount)
- if err != nil {
- return nil, fmt.Errorf("failed to get dump provinces count: %w", err)
- }
- if err != nil {
- return nil, fmt.Errorf("failed to get dump provinces count: %w", err)
- }
-
- // Use the larger count as total
- if totalCount > dumpCount {
- summary.TotalRecords = totalCount
- } else {
- summary.TotalRecords = dumpCount
- }
-
- // Find missing in current DB
- err = tx.NewRaw(`
- SELECT gis_server_id
- FROM temp_sapnhap_provinces_gis_dump
- WHERE gis_server_id NOT IN (SELECT gis_server_id FROM sapnhap_provinces_gis)
- ORDER BY gis_server_id
- `).Scan(context.Background(), &summary.MissingInDB)
- if err != nil {
- return nil, fmt.Errorf("failed to find missing records in DB: %w", err)
- }
-
- // Find missing in dump
- err = tx.NewRaw(`
- SELECT gis_server_id
- FROM sapnhap_provinces_gis
- WHERE gis_server_id NOT IN (SELECT gis_server_id FROM temp_sapnhap_provinces_gis_dump)
- ORDER BY gis_server_id
- `).Scan(context.Background(), &summary.MissingInDump)
- if err != nil {
- return nil, fmt.Errorf("failed to find missing records in dump: %w", err)
- }
-
- // Find mismatches in bbox_wkt or geom_wkt
- type MismatchResult struct {
- GISServerID string `bun:"gis_server_id"`
- Ten string `bun:"ten"`
- CurrentBBoxWKT string `bun:"current_bbox_wkt"`
- DumpBBoxWKT string `bun:"dump_bbox_wkt"`
- CurrentGeomWKT string `bun:"current_geom_wkt"`
- DumpGeomWKT string `bun:"dump_geom_wkt"`
- ComparisonField string `bun:"comparison_field"`
- }
-
- var mismatches []MismatchResult
- err = tx.NewRaw(`
- WITH current AS (
- SELECT gis_server_id, ten, bbox_wkt, geom_wkt
- FROM sapnhap_provinces_gis
- ),
- dump AS (
- SELECT gis_server_id, ten, bbox_wkt, geom_wkt
- FROM temp_sapnhap_provinces_gis_dump
- )
- SELECT
- c.gis_server_id,
- COALESCE(c.ten, d.ten) as ten,
- c.bbox_wkt as current_bbox_wkt,
- d.bbox_wkt as dump_bbox_wkt,
- c.geom_wkt as current_geom_wkt,
- d.geom_wkt as dump_geom_wkt,
- CASE
- WHEN replace(c.bbox_wkt, ' ', '') <> replace(d.bbox_wkt, ' ', '')
- AND replace(c.geom_wkt, ' ', '') <> replace(d.geom_wkt, ' ', '') THEN 'both'
- WHEN replace(c.bbox_wkt, ' ', '') <> replace(d.bbox_wkt, ' ', '') THEN 'bbox_wkt'
- WHEN replace(c.geom_wkt, ' ', '') <> replace(d.geom_wkt, ' ', '') THEN 'geom_wkt'
- END as comparison_field
- FROM current c
- INNER JOIN dump d ON c.gis_server_id = d.gis_server_id
- WHERE replace(c.bbox_wkt, ' ', '') <> replace(d.bbox_wkt, ' ', '')
- OR replace(c.geom_wkt, ' ', '') <> replace(d.geom_wkt, ' ', '')
- ORDER BY c.gis_server_id
- `).Scan(context.Background(), &mismatches)
- if err != nil {
- return nil, fmt.Errorf("failed to find mismatches: %w", err)
- }
-
- summary.MismatchedRecords = len(mismatches)
- summary.MatchedRecords = summary.TotalRecords - summary.MismatchedRecords - len(summary.MissingInDB) - len(summary.MissingInDump)
-
- // Build detailed differences
- for _, m := range mismatches {
- if m.ComparisonField == "both" || m.ComparisonField == "bbox_wkt" {
- summary.Differences = append(summary.Differences, model.WKTComparisonResult{
- RecordIdentifier: m.GISServerID,
- RecordName: m.Ten,
- FieldName: "bbox_wkt",
- ExpectedWKT: m.DumpBBoxWKT,
- ActualWKT: m.CurrentBBoxWKT,
- Difference: "bbox_wkt values differ",
- })
- }
- if m.ComparisonField == "both" || m.ComparisonField == "geom_wkt" {
- summary.Differences = append(summary.Differences, model.WKTComparisonResult{
- RecordIdentifier: m.GISServerID,
- RecordName: m.Ten,
- FieldName: "geom_wkt",
- ExpectedWKT: m.DumpGeomWKT,
- ActualWKT: m.CurrentGeomWKT,
- Difference: "geom_wkt values differ",
- })
- }
- }
-
- return summary, nil
-}
-
-// CompareWardsGISWithTx compares current wards_gis with dump data using the provided transaction
-func (s *GISComparatorService) CompareWardsGISWithTx(tx bun.Tx) (*model.ComparisonSummary, error) {
- summary := &model.ComparisonSummary{
- TableName: "sapnhap_wards_gis",
- }
-
- // Get total counts
- var totalCount, dumpCount int
- err := tx.NewRaw("SELECT COUNT(*) FROM sapnhap_wards_gis").Scan(context.Background(), &totalCount)
- if err != nil {
- return nil, fmt.Errorf("failed to get current wards count: %w", err)
- }
- err = tx.NewRaw("SELECT COUNT(*) FROM temp_sapnhap_wards_gis_dump").Scan(context.Background(), &dumpCount)
- if err != nil {
- return nil, fmt.Errorf("failed to get dump wards count: %w", err)
- }
-
- // Use the larger count as total
- if totalCount > dumpCount {
- summary.TotalRecords = totalCount
- } else {
- summary.TotalRecords = dumpCount
- }
-
- // Find missing in current DB
- err = tx.NewRaw(`
- SELECT gis_server_id
- FROM temp_sapnhap_wards_gis_dump
- WHERE gis_server_id NOT IN (SELECT gis_server_id FROM sapnhap_wards_gis)
- ORDER BY gis_server_id
- `).Scan(context.Background(), &summary.MissingInDB)
- if err != nil {
- return nil, fmt.Errorf("failed to find missing records in DB: %w", err)
- }
-
- // Find missing in dump
- err = tx.NewRaw(`
- SELECT gis_server_id
- FROM sapnhap_wards_gis
- WHERE gis_server_id NOT IN (SELECT gis_server_id FROM temp_sapnhap_wards_gis_dump)
- ORDER BY gis_server_id
- `).Scan(context.Background(), &summary.MissingInDump)
- if err != nil {
- return nil, fmt.Errorf("failed to find missing records in dump: %w", err)
- }
-
- // Find mismatches in bbox_wkt or geom_wkt
- type MismatchResult struct {
- GISServerID string `bun:"gis_server_id"`
- Ten string `bun:"ten"`
- CurrentBBoxWKT string `bun:"current_bbox_wkt"`
- DumpBBoxWKT string `bun:"dump_bbox_wkt"`
- CurrentGeomWKT string `bun:"current_geom_wkt"`
- DumpGeomWKT string `bun:"dump_geom_wkt"`
- ComparisonField string `bun:"comparison_field"`
- }
-
- var mismatches []MismatchResult
- err = tx.NewRaw(`
- WITH current AS (
- SELECT gis_server_id, ten, bbox_wkt, geom_wkt
- FROM sapnhap_wards_gis
- ),
- dump AS (
- SELECT gis_server_id, ten, bbox_wkt, geom_wkt
- FROM temp_sapnhap_wards_gis_dump
- )
- SELECT
- c.gis_server_id,
- COALESCE(c.ten, d.ten) as ten,
- c.bbox_wkt as current_bbox_wkt,
- d.bbox_wkt as dump_bbox_wkt,
- c.geom_wkt as current_geom_wkt,
- d.geom_wkt as dump_geom_wkt,
- CASE
- WHEN replace(c.bbox_wkt, ' ', '') <> replace(d.bbox_wkt, ' ', '')
- AND replace(c.geom_wkt, ' ', '') <> replace(d.geom_wkt, ' ', '') THEN 'both'
- WHEN replace(c.bbox_wkt, ' ', '') <> replace(d.bbox_wkt, ' ', '') THEN 'bbox_wkt'
- WHEN replace(c.geom_wkt, ' ', '') <> replace(d.geom_wkt, ' ', '') THEN 'geom_wkt'
- END as comparison_field
- FROM current c
- INNER JOIN dump d ON c.gis_server_id = d.gis_server_id
- WHERE replace(c.bbox_wkt, ' ', '') <> replace(d.bbox_wkt, ' ', '')
- OR replace(c.geom_wkt, ' ', '') <> replace(d.geom_wkt, ' ', '')
- ORDER BY c.gis_server_id
- `).Scan(context.Background(), &mismatches)
- if err != nil {
- return nil, fmt.Errorf("failed to find mismatches: %w", err)
- }
-
- summary.MismatchedRecords = len(mismatches)
- summary.MatchedRecords = summary.TotalRecords - summary.MismatchedRecords - len(summary.MissingInDB) - len(summary.MissingInDump)
-
- // Build detailed differences
- for _, m := range mismatches {
- if m.ComparisonField == "both" || m.ComparisonField == "bbox_wkt" {
- summary.Differences = append(summary.Differences, model.WKTComparisonResult{
- RecordIdentifier: m.GISServerID,
- RecordName: m.Ten,
- FieldName: "bbox_wkt",
- ExpectedWKT: m.DumpBBoxWKT,
- ActualWKT: m.CurrentBBoxWKT,
- Difference: "bbox_wkt values differ",
- })
- }
- if m.ComparisonField == "both" || m.ComparisonField == "geom_wkt" {
- summary.Differences = append(summary.Differences, model.WKTComparisonResult{
- RecordIdentifier: m.GISServerID,
- RecordName: m.Ten,
- FieldName: "geom_wkt",
- ExpectedWKT: m.DumpGeomWKT,
- ActualWKT: m.CurrentGeomWKT,
- Difference: "geom_wkt values differ",
- })
- }
- }
-
- return summary, nil
-}
-
-// GetDatabaseContainerID returns the Docker container ID for the database
-func (s *GISComparatorService) GetDatabaseContainerID() (string, error) {
- cmd := exec.Command("docker", "ps", "--filter", "name=vn_provinces_postgres_container", "--format", "{{.ID}}")
- output, err := cmd.Output()
- if err != nil {
- return "", fmt.Errorf("failed to get database container ID: %w", err)
- }
- containerID := strings.TrimSpace(string(output))
- if containerID == "" {
- return "", fmt.Errorf("database container not found")
- }
- return containerID, nil
-}
diff --git a/dataset-generation-scripts/internal/gis_comparator/service/reporter.go b/dataset-generation-scripts/internal/gis_comparator/service/reporter.go
deleted file mode 100644
index eba58fb8..00000000
--- a/dataset-generation-scripts/internal/gis_comparator/service/reporter.go
+++ /dev/null
@@ -1,109 +0,0 @@
-package service
-
-import (
- "fmt"
- "log"
-
- "github.com/thanglequoc-vn-provinces/v2/internal/gis_comparator/model"
-)
-
-// LogComparisonResults prints a detailed comparison report
-func LogComparisonResults(summary *model.ComparisonSummary) {
- log.Printf("==========================================")
- log.Printf("GIS DATA COMPARISON REPORT: %s", summary.TableName)
- log.Printf("==========================================")
- log.Printf("Total Records: %d", summary.TotalRecords)
- log.Printf("Matched: %d ✓", summary.MatchedRecords)
- log.Printf("Mismatched: %d ✗", summary.MismatchedRecords)
- log.Printf("Missing in Database: %d", len(summary.MissingInDB))
- log.Printf("Missing in Dump: %d", len(summary.MissingInDump))
-
- if len(summary.MissingInDB) > 0 {
- log.Printf("\nMissing in Database (%d):", len(summary.MissingInDB))
- for _, id := range summary.MissingInDB {
- log.Printf(" - %s", id)
- }
- }
-
- if len(summary.MissingInDump) > 0 {
- log.Printf("\nMissing in Dump (%d):", len(summary.MissingInDump))
- // Only show first 20 to avoid spamming
- limit := 20
- if len(summary.MissingInDump) < limit {
- limit = len(summary.MissingInDump)
- }
- for i := 0; i < limit; i++ {
- log.Printf(" - %s", summary.MissingInDump[i])
- }
- if len(summary.MissingInDump) > limit {
- log.Printf(" ... and %d more", len(summary.MissingInDump)-limit)
- }
- }
-
- if len(summary.Differences) > 0 {
- log.Printf("\nDetailed Differences:")
- for i, diff := range summary.Differences {
- log.Printf("\n%d. %s [%s]", i+1, diff.RecordName, diff.RecordIdentifier)
- log.Printf(" Field: %s", diff.FieldName)
- log.Printf(" Expected: %s", truncateWKT(diff.ExpectedWKT, 100))
- log.Printf(" Actual: %s", truncateWKT(diff.ActualWKT, 100))
- }
- }
-
- log.Printf("==========================================\n")
-}
-
-// PrintSummary prints a brief summary
-func PrintSummary(provincesSummary, wardsSummary *model.ComparisonSummary) {
- fmt.Println("\n╔════════════════════════════════════════════════════════════════╗")
- fmt.Println("║ GIS DATA COMPARISON SUMMARY ║")
- fmt.Println("╚════════════════════════════════════════════════════════════════╝")
-
- if provincesSummary != nil {
- fmt.Printf("\n📍 Provinces (sapnhap_provinces_gis):\n")
- fmt.Printf(" Total: %d | Matched: %d ✓ | Mismatched: %d", provincesSummary.TotalRecords, provincesSummary.MatchedRecords, provincesSummary.MismatchedRecords)
- if len(provincesSummary.MissingInDB) > 0 {
- fmt.Printf(" | Missing in DB: %d", len(provincesSummary.MissingInDB))
- }
- if len(provincesSummary.MissingInDump) > 0 {
- fmt.Printf(" | Missing in Dump: %d", len(provincesSummary.MissingInDump))
- }
- fmt.Println()
-
- if provincesSummary.IsEqual() {
- fmt.Println(" ✅ All provinces match!")
- } else {
- fmt.Println(" ⚠️ Differences found!")
- }
- }
-
- if wardsSummary != nil {
- fmt.Printf("\n🏘️ Wards (sapnhap_wards_gis):\n")
- fmt.Printf(" Total: %d | Matched: %d ✓ | Mismatched: %d", wardsSummary.TotalRecords, wardsSummary.MatchedRecords, wardsSummary.MismatchedRecords)
- if len(wardsSummary.MissingInDB) > 0 {
- fmt.Printf(" | Missing in DB: %d", len(wardsSummary.MissingInDB))
- }
- if len(wardsSummary.MissingInDump) > 0 {
- fmt.Printf(" | Missing in Dump: %d", len(wardsSummary.MissingInDump))
- }
- fmt.Println()
-
- if wardsSummary.IsEqual() {
- fmt.Println(" ✅ All wards match!")
- } else {
- fmt.Println(" ⚠️ Differences found!")
- }
- }
-
- fmt.Println("\n╔════════════════════════════════════════════════════════════════╗")
- fmt.Println("║ END OF SUMMARY ║")
- fmt.Println("╚════════════════════════════════════════════════════════════════╝")
-}
-
-// truncateWKT truncates a WKT string to a specified length for display
-func truncateWKT(wkt string, maxLen int) string {
- if len(wkt) <= maxLen {
- return wkt
- }
- return wkt[:maxLen] + "..."
-}
diff --git a/dataset-generation-scripts/internal/gis_comparator/sql/setup_temp_tables.sql b/dataset-generation-scripts/internal/gis_comparator/sql/setup_temp_tables.sql
deleted file mode 100644
index 26899415..00000000
--- a/dataset-generation-scripts/internal/gis_comparator/sql/setup_temp_tables.sql
+++ /dev/null
@@ -1,38 +0,0 @@
--- SQL Script to create temporary tables for GIS data comparison
--- This script creates temporary tables that will hold the data from SQL dump files
--- for comparison with the current sapnhap_provinces_gis and sapnhap_wards_gis tables
-
--- Drop temp tables if they exist
-DROP TABLE IF EXISTS temp_sapnhap_provinces_gis_dump;
-DROP TABLE IF EXISTS temp_sapnhap_wards_gis_dump;
-
--- Create temporary table for provinces dump
--- This mirrors the structure of sapnhap_provinces_gis but without generated columns
-CREATE TEMP TABLE temp_sapnhap_provinces_gis_dump (
- stt INTEGER,
- ten VARCHAR(255),
- truocsn TEXT,
- gis_server_id VARCHAR(20),
- sapnhap_province_matinh INTEGER,
- bbox_wkt TEXT,
- geom_wkt TEXT
-);
-
--- Create temporary table for wards dump
--- This mirrors the structure of sapnhap_wards_gis but without generated columns
-CREATE TEMP TABLE temp_sapnhap_wards_gis_dump (
- stt INTEGER,
- ten VARCHAR(255),
- truocsn TEXT,
- gis_server_id VARCHAR(20),
- sapnhap_ward_maxa INTEGER,
- bbox_wkt TEXT,
- geom_wkt TEXT
-);
-
--- Create indexes for efficient comparison
-CREATE INDEX idx_temp_provinces_gis_id ON temp_sapnhap_provinces_gis_dump(gis_server_id);
-CREATE INDEX idx_temp_wards_gis_id ON temp_sapnhap_wards_gis_dump(gis_server_id);
-
--- Note: Data will be loaded from dump files using separate INSERT statements
--- The dump files should be modified to insert into these temp tables instead of the original tables
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/dto/bando_scrape.go b/dataset-generation-scripts/internal/sapnhap_bando/dto/bando_scrape.go
deleted file mode 100644
index d5e2cf87..00000000
--- a/dataset-generation-scripts/internal/sapnhap_bando/dto/bando_scrape.go
+++ /dev/null
@@ -1,61 +0,0 @@
-package dto
-
-import (
- "encoding/json"
- "fmt"
-)
-
-type BanDoGISProvince struct {
- STT string `json:"stt"`
- Ten string `json:"ten"`
- TruocSN string `json:"truocsn"`
- GISServerResponse string `json:"gisServerResponse"`
-}
-
-type BanDoGISWard struct {
- STT string `json:"stt"`
- Ten string `json:"ten"`
- TruocSN string `json:"truocsn"`
- ProvinceName string `json:"provinceName"`
- GISServerResponse string `json:"gisServerResponse"`
-}
-
-type BandoGISFeature struct {
- Geometry interface{} `json:"geometry"`
- ID string `json:"id"`
- Properties map[string]interface{} `json:"properties"`
- Type string `json:"type"`
-}
-
-type BandoGISServerResponse struct {
- Features []BandoGISFeature `json:"features"`
- Type string `json:"type"`
-}
-
-func (p *BanDoGISProvince) GetGISResponse() (*BandoGISServerResponse, error) {
- if p.GISServerResponse == "" {
- return nil, fmt.Errorf("no GIS server response data for %s", p.Ten)
- }
-
- var gisResponse BandoGISServerResponse
- err := json.Unmarshal([]byte(p.GISServerResponse), &gisResponse)
- if err != nil {
- return nil, fmt.Errorf("failed to unmarshal GIS server response: %w", err)
- }
-
- return &gisResponse, nil
-}
-
-func (w *BanDoGISWard) GetGISResponse() (*BandoGISServerResponse, error) {
- if w.GISServerResponse == "" {
- return nil, fmt.Errorf("no GIS server response data for %s of %s", w.Ten, w.ProvinceName)
- }
-
- var gisResponse BandoGISServerResponse
- err := json.Unmarshal([]byte(w.GISServerResponse), &gisResponse)
- if err != nil {
- return nil, fmt.Errorf("failed to unmarshal GIS server response: %w", err)
- }
-
- return &gisResponse, nil
-}
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/dto/geojson_data.go b/dataset-generation-scripts/internal/sapnhap_bando/dto/geojson_data.go
deleted file mode 100644
index 025f1e11..00000000
--- a/dataset-generation-scripts/internal/sapnhap_bando/dto/geojson_data.go
+++ /dev/null
@@ -1,23 +0,0 @@
-package dto
-
-// GISProvinceData represents processed GIS data for a province
-type GISProvinceData struct {
- STT int
- Ten string
- TruocSN string
- GISServerID string
- SapNhapProvinceMaTinh string
- BBoxWKT string
- GeomWKT string
-}
-
-// GISWardData represents processed GIS data for a ward
-type GISWardData struct {
- STT int
- Ten string
- TruocSN string
- GISServerID string
- SapNhapWardMaXa string
- BBoxWKT string
- GeomWKT string
-}
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/dto/sapnhap_api.go b/dataset-generation-scripts/internal/sapnhap_bando/dto/sapnhap_api.go
index 11df7814..d7336b70 100644
--- a/dataset-generation-scripts/internal/sapnhap_bando/dto/sapnhap_api.go
+++ b/dataset-generation-scripts/internal/sapnhap_bando/dto/sapnhap_api.go
@@ -1,37 +1,5 @@
package dto
-// DTO for the ptinh API response
-type SapNhapProvinceData struct {
- ID int `json:"id"`
- MaHC int `json:"mahc"`
- TenTinh string `json:"tentinh"`
- DienTichKm2 string `json:"dientichkm2"`
- DanSoNguoi string `json:"dansonguoi"`
- TrungTamHC string `json:"trungtamhc"`
- KinhDo float64 `json:"kinhdo"`
- ViDo float64 `json:"vido"`
- TruocSN string `json:"truocsapnhap"`
- Con string `json:"con"`
-}
-
-type SapNhapWardData struct {
- ID int `json:"id"`
- Matinh int `json:"matinh"`
- Ma string `json:"ma"`
- TenTinh string `json:"tentinh"`
- Loai string `json:"loai"`
- TenHC string `json:"tenhc"`
- Cay string `json:"cay"`
- DienTichKm2 float64 `json:"dientichkm2"`
- DanSoNguoi string `json:"dansonguoi"`
- TrungTamHC string `json:"trungtamhc"`
- KinhDo float64 `json:"kinhdo"`
- ViDo float64 `json:"vido"`
- TruocSapNhap string `json:"truocsapnhap"`
- MaXa int `json:"maxa"`
- Khoa string `json:"khoa"`
-}
-
type SapNhapGeoObjectMetadata struct {
ID int `json:"id"`
DienTichKM2 string `json:"dientichkm2"`
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/fetcher/fetcher.go b/dataset-generation-scripts/internal/sapnhap_bando/fetcher/fetcher.go
index cd1fd1c5..2fe35427 100644
--- a/dataset-generation-scripts/internal/sapnhap_bando/fetcher/fetcher.go
+++ b/dataset-generation-scripts/internal/sapnhap_bando/fetcher/fetcher.go
@@ -9,8 +9,6 @@ import (
"log"
"net/http"
"net/url"
- "os"
- "strconv"
"strings"
"time"
@@ -18,166 +16,13 @@ import (
)
const (
- GET_ALL_PROVINCES_URL = "https://sapnhap.bando.com.vn/pcotinh"
- GET_ALL_WARDS_OF_PROVINCES_URL = "https://sapnhap.bando.com.vn/ptracuu"
- GET_GIS_COORDINATES_URL = "https://sapnhap.bando.com.vn/pread_json"
- GET_METADATA_FROM_MALK_URL = "https://sapnhap.bando.com.vn/p.co_dvhc_id"
- MAX_RETRIES = 5
- RETRY_DELAY = 300 * time.Millisecond
- MAX_DELAY = 5 * time.Second
-
- // New file-based data sources
- BANDO_GIS_PROVINCES_FILE_PATH = "./resources/gis/bando_gisserver/provinces.json"
- BANDO_GIS_WARDS_FILE_PATH = "./resources/gis/bando_gisserver/wards.json"
- GEOJSON_BASE_PATH = "./resources/gis/geojson_11Mar2026"
+ GET_GIS_COORDINATES_URL = "https://sapnhap.bando.com.vn/pread_json"
+ GET_METADATA_FROM_MALK_URL = "https://sapnhap.bando.com.vn/p.co_dvhc_id"
+ MAX_RETRIES = 5
+ RETRY_DELAY = 300 * time.Millisecond
+ MAX_DELAY = 5 * time.Second
)
-/*
-Get all the provinces data from the sapnhap site
-POST: https://sapnhap.bando.com.vn/pcotinh
-*/
-func GetAllProvincesDataFromSapNhapSite() []dto.SapNhapProvinceData {
- res, err := http.Post(GET_ALL_PROVINCES_URL, "application/json", nil)
- if err != nil {
- panic(err)
- }
-
- defer res.Body.Close()
- var provincesData []dto.SapNhapProvinceData
- if err := json.NewDecoder(res.Body).Decode(&provincesData); err != nil {
- panic(err)
- }
- return provincesData
-}
-
-/*
-API Look up to get all wards of a province from the sapnhap site
-POST: https://sapnhap.bando.com.vn/ptracuu
-
-[DEPRECATED] This API endpoint is no longer available. Use LoadWardsFromJSONFile() instead.
-*/
-func GetAllWardsOfProvinceFromSapNhapSite(provinceID int) []dto.SapNhapWardData {
- form := url.Values{}
- form.Add("id", strconv.Itoa(provinceID))
-
- res, err := http.Post(GET_ALL_WARDS_OF_PROVINCES_URL, "application/x-www-form-urlencoded", bytes.NewBufferString(form.Encode()))
- if err != nil {
- panic(err)
- }
-
- defer res.Body.Close()
- var wardsData []dto.SapNhapWardData
- if err := json.NewDecoder(res.Body).Decode(&wardsData); err != nil {
- panic(err)
- }
- return wardsData
-}
-
-/*
-Load all provinces data from local JSON file
-Replaces the deprecated GetAllProvincesDataFromSapNhapSite() API call
-*/
-func LoadProvincesFromJSONFile() ([]dto.SapNhapProvinceData, error) {
- provinces, err := LoadBanDoGISProvincesFromFile(BANDO_GIS_PROVINCES_FILE_PATH)
- if err != nil {
- return nil, err
- }
-
- result := make([]dto.SapNhapProvinceData, 0, len(provinces))
- for _, province := range provinces {
- gisRes, err := province.GetGISResponse()
- if err != nil {
- return nil, err
- }
-
- matinh := fmt.Sprintf("%v", gisRes.Features[0].Properties["matinh"])
- matinhInt, err := strconv.Atoi(matinh)
- if err != nil {
- return nil, err
- }
-
- sttInt, err := strconv.Atoi(province.STT)
- if err != nil {
- return nil, err
- }
-
- provinceData := dto.SapNhapProvinceData{
- ID: sttInt,
- MaHC: matinhInt,
- TenTinh: province.Ten,
- DienTichKm2: "",
- DanSoNguoi: "",
- TrungTamHC: "",
- KinhDo: 0,
- ViDo: 0,
- TruocSN: province.TruocSN,
- Con: "",
- }
- result = append(result, provinceData)
- }
-
- return result, nil
-}
-
-/*
-Load all wards data from local JSON file
-Replaces the deprecated GetAllWardsOfProvinceFromSapNhapSite() API call
-*/
-func LoadWardsFromJSONFile() ([]dto.SapNhapWardData, error) {
- wards, err := LoadBanDoGISWardsFromFile(BANDO_GIS_WARDS_FILE_PATH)
- if err != nil {
- return nil, err
- }
-
- result := make([]dto.SapNhapWardData, 0, len(wards))
- nextID := 1 // Generate unique IDs sequentially
-
- for _, ward := range wards {
- gisRes, err := ward.GetGISResponse()
- if err != nil {
- return nil, err
- }
-
- matinhxa := fmt.Sprintf("%v", gisRes.Features[0].Properties["matinhxa"])
- maxa := fmt.Sprintf("%v", gisRes.Features[0].Properties["maxa"])
-
- parts := strings.Split(matinhxa, ".")
- matinhInt, err := strconv.Atoi(parts[0])
- if err != nil {
- return nil, err
- }
-
- maxaInt, err := strconv.Atoi(maxa)
- if err != nil {
- return nil, err
- }
-
- loai, tenhc := extractWardTypeAndName(ward.Ten)
-
- wardData := dto.SapNhapWardData{
- ID: nextID, // Use generated unique ID instead of STT
- Matinh: matinhInt,
- Ma: maxa,
- TenTinh: ward.ProvinceName,
- Loai: loai,
- TenHC: tenhc,
- Cay: "",
- DienTichKm2: 0,
- DanSoNguoi: "",
- TrungTamHC: "",
- KinhDo: 0,
- ViDo: 0,
- TruocSapNhap: ward.TruocSN,
- MaXa: maxaInt,
- Khoa: "",
- }
- result = append(result, wardData)
- nextID++
- }
-
- return result, nil
-}
-
/*
API Look up to get all wards of a province from the sapnhap site
POST: https://sapnhap.bando.com.vn/p.co_dvhc_id
@@ -219,62 +64,6 @@ func GetMetadataOfSapNhapGeoObject(ctx context.Context, malk string) (dto.SapNha
return metadata[0], nil
}
-/*
-extractWardTypeAndName extracts the ward type (loai) and name (tenhc) from the full name
-Format: "An Khánh (xã)" → loai="Xã", tenhc="An Khánh"
-*/
-func extractWardTypeAndName(fullName string) (loai string, name string) {
- if strings.Contains(fullName, " (xã)") {
- return "Xã", strings.Replace(fullName, " (xã)", "", -1)
- }
- if strings.Contains(fullName, " (phường)") {
- return "Phường", strings.Replace(fullName, " (phường)", "", -1)
- }
- if strings.Contains(fullName, " (thị trấn)") {
- return "Thị trấn", strings.Replace(fullName, " (thị trấn)", "", -1)
- }
- if strings.Contains(fullName, " (đặc khu)") {
- return "Đặc khu", strings.Replace(fullName, " (đặc khu)", "", -1)
- }
- return "", fullName
-}
-
-/*
-Load the bando gis province mapping from file
-*/
-func LoadBanDoGISProvincesFromFile(path string) ([]dto.BanDoGISProvince, error) {
- // Read file
- data, err := os.ReadFile(path)
- if err != nil {
- return nil, err
- }
-
- // Decode JSON
- var provinces []dto.BanDoGISProvince
- if err := json.Unmarshal(data, &provinces); err != nil {
- return nil, err
- }
- return provinces, nil
-}
-
-/*
-Load the bando gis ward mapping from file
-*/
-func LoadBanDoGISWardsFromFile(path string) ([]dto.BanDoGISWard, error) {
- // Read file
- data, err := os.ReadFile(path)
- if err != nil {
- return nil, err
- }
-
- // Decode JSON
- var wards []dto.BanDoGISWard
- if err := json.Unmarshal(data, &wards); err != nil {
- return nil, err
- }
- return wards, nil
-}
-
/*
API to get GIS coordinates information of the locationId.
gisLocationID get from object ID of the bando gisServerResponse
@@ -325,244 +114,3 @@ func GetGISLocationCoordinates(gisLocationID string) (dto.GISLocationResponse, e
// All retries exhausted
return dto.GISLocationResponse{}, fmt.Errorf("cannot get GIS for locationID %s. All %d attempts failed, last error: %w", gisLocationID, MAX_RETRIES+1, lastErr)
}
-
-/*
-LoadProvincesGISFromGeoJSONFiles loads province geometry data from GeoJSON files
-Returns a map of GIS server ID (e.g., "tinh34.7") to GIS data
-*/
-func LoadProvincesGISFromGeoJSONFiles() (map[string]*dto.GISProvinceData, error) {
- // Load metadata to build the ID mapping
- provinces, err := LoadBanDoGISProvincesFromFile(BANDO_GIS_PROVINCES_FILE_PATH)
- if err != nil {
- return nil, err
- }
-
- result := make(map[string]*dto.GISProvinceData)
-
- for _, province := range provinces {
- gisRes, err := province.GetGISResponse()
- if err != nil {
- return nil, err
- }
-
- gisServerID := gisRes.Features[0].ID // e.g., "tinh34.7"
- matinh := fmt.Sprintf("%v", gisRes.Features[0].Properties["matinh"])
-
- sttInt, err := strconv.Atoi(province.STT)
- if err != nil {
- return nil, err
- }
-
- // Find the province directory by STT prefix
- provinceDir, err := findProvinceDirBySTT(province.STT)
- if err != nil {
- log.Printf("Warning: failed to find province directory for STT %s (%s): %v", province.STT, province.Ten, err)
- continue
- }
-
- geojsonPath := fmt.Sprintf("%s/%s/province.geojson", GEOJSON_BASE_PATH, provinceDir)
-
- // Load GeoJSON file
- geojson, err := dto.LoadGeoJSONFile(geojsonPath)
- if err != nil {
- log.Printf("Warning: failed to load geojson for %s from %s: %v", province.Ten, geojsonPath, err)
- continue
- }
-
- if len(geojson.Features) == 0 {
- log.Printf("Warning: no features found in geojson for %s", province.Ten)
- continue
- }
-
- feature := geojson.Features[0]
-
- // Verify the ID matches
- if feature.ID != gisServerID {
- log.Printf("Warning: GIS ID mismatch for %s: expected %s, got %s", province.Ten, gisServerID, feature.ID)
- continue
- }
-
- gisData := &dto.GISProvinceData{
- STT: sttInt,
- Ten: province.Ten,
- TruocSN: province.TruocSN,
- GISServerID: gisServerID,
- SapNhapProvinceMaTinh: matinh,
- BBoxWKT: feature.ToWKBboxPolygon(),
- GeomWKT: feature.Geometry.ToWKTMultiPolygon(),
- }
-
- result[gisServerID] = gisData
- log.Printf("Loaded GIS data for province %s (STT: %s)", province.Ten, province.STT)
- }
-
- return result, nil
-}
-
-/*
-LoadWardsGISFromGeoJSONFiles loads ward geometry data from GeoJSON files
-Returns a map of GIS server ID (e.g., "xa3321.3285") to GIS data
-*/
-func LoadWardsGISFromGeoJSONFiles() (map[string]*dto.GISWardData, error) {
- // Load metadata to build the ID mapping
- wards, err := LoadBanDoGISWardsFromFile(BANDO_GIS_WARDS_FILE_PATH)
- if err != nil {
- return nil, err
- }
-
- result := make(map[string]*dto.GISWardData)
-
- for _, ward := range wards {
- gisRes, err := ward.GetGISResponse()
- if err != nil {
- log.Printf("Warning: failed to get GIS response for %s: %v", ward.Ten, err)
- continue
- }
-
- gisServerID := gisRes.Features[0].ID // e.g., "xa3321.3285"
- maxa := fmt.Sprintf("%v", gisRes.Features[0].Properties["maxa"])
-
- sttInt, err := strconv.Atoi(ward.STT)
- if err != nil {
- log.Printf("Warning: failed to parse STT %s for %s: %v", ward.STT, ward.Ten, err)
- continue
- }
-
- // Find the province directory by province name
- provinceDir, err := findProvinceDirByName(ward.ProvinceName)
- if err != nil {
- log.Printf("Warning: failed to find province directory for %s: %v", ward.ProvinceName, err)
- continue
- }
-
- // Try to find the ward file by matching the STT prefix
- wardFile, err := findWardFileBySTT(provinceDir, ward.STT)
- if err != nil {
- log.Printf("Warning: failed to find ward file for STT %s (%s): %v", ward.STT, ward.Ten, err)
- continue
- }
-
- geojsonPath := fmt.Sprintf("%s/%s/wards/%s", GEOJSON_BASE_PATH, provinceDir, wardFile)
-
- // Load GeoJSON file
- geojson, err := dto.LoadGeoJSONFile(geojsonPath)
- if err != nil {
- log.Printf("Warning: failed to load geojson for %s from %s: %v", ward.Ten, geojsonPath, err)
- continue
- }
-
- if len(geojson.Features) == 0 {
- log.Printf("Warning: no features found in geojson for %s", ward.Ten)
- continue
- }
-
- feature := geojson.Features[0]
-
- // Verify the ID matches
- if feature.ID != gisServerID {
- log.Printf("Warning: GIS ID mismatch for %s: expected %s, got %s", ward.Ten, gisServerID, feature.ID)
- continue
- }
-
- gisData := &dto.GISWardData{
- STT: sttInt,
- Ten: ward.Ten,
- TruocSN: ward.TruocSN,
- GISServerID: gisServerID,
- SapNhapWardMaXa: maxa,
- BBoxWKT: feature.ToWKBboxPolygon(),
- GeomWKT: feature.Geometry.ToWKTMultiPolygon(),
- }
-
- result[gisServerID] = gisData
- }
-
- log.Printf("Loaded GIS data for %d wards", len(result))
- return result, nil
-}
-
-/*
-findProvinceDirBySTT finds the province directory by STT prefix
-Since directories are named like "1_thu_đo_ha_noi", "2_tinh_cao_bang", etc.
-we can match by the STT prefix
-*/
-func findProvinceDirBySTT(stt string) (string, error) {
- // List all directories in GEOJSON_BASE_PATH
- entries, err := os.ReadDir(GEOJSON_BASE_PATH)
- if err != nil {
- return "", err
- }
-
- // Find directory starting with {stt}_
- prefix := stt + "_"
- for _, entry := range entries {
- if entry.IsDir() && strings.HasPrefix(entry.Name(), prefix) {
- return entry.Name(), nil
- }
- }
-
- return "", fmt.Errorf("no directory found with prefix %s", prefix)
-}
-
-/*
-findProvinceDirByName finds the province directory by province name
-This loads all provinces and matches by normalized name
-*/
-func findProvinceDirByName(provinceName string) (string, error) {
- // Load provinces to get STT
- provinces, err := LoadBanDoGISProvincesFromFile(BANDO_GIS_PROVINCES_FILE_PATH)
- if err != nil {
- return "", err
- }
-
- // Find matching province
- for _, province := range provinces {
- // Clean and compare names
- cleanedName := cleanAdministrativeUnitPrefix(province.Ten)
- cleanedTargetName := cleanAdministrativeUnitPrefix(provinceName)
-
- if strings.EqualFold(cleanedName, cleanedTargetName) {
- return findProvinceDirBySTT(province.STT)
- }
- }
-
- return "", fmt.Errorf("no province found matching %s", provinceName)
-}
-
-/*
-findWardFileBySTT finds the ward file by STT prefix in the given province directory
-Ward files are named like "1_an_khanh_xa.geojson", "2_ba_đinh_phuong.geojson", etc.
-*/
-func findWardFileBySTT(provinceDir string, stt string) (string, error) {
- wardsPath := fmt.Sprintf("%s/%s/wards", GEOJSON_BASE_PATH, provinceDir)
-
- entries, err := os.ReadDir(wardsPath)
- if err != nil {
- return "", err
- }
-
- // Find file starting with {stt}_
- prefix := stt + "_"
- for _, entry := range entries {
- if !entry.IsDir() && strings.HasPrefix(entry.Name(), prefix) && strings.HasSuffix(entry.Name(), ".geojson") {
- return entry.Name(), nil
- }
- }
-
- return "", fmt.Errorf("no ward file found with prefix %s in %s", prefix, wardsPath)
-}
-
-/*
-cleanAdministrativeUnitPrefix removes common administrative unit prefixes from a name
-*/
-func cleanAdministrativeUnitPrefix(name string) string {
- prefixes := []string{"tỉnh ", "thành phố ", "thủ đô "}
- lowerName := strings.ToLower(name)
-
- for _, prefix := range prefixes {
- if strings.HasPrefix(lowerName, prefix) {
- return strings.TrimSpace(name[len(prefix):])
- }
- }
- return name
-}
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/model/sapnhap.go b/dataset-generation-scripts/internal/sapnhap_bando/model/sapnhap.go
deleted file mode 100644
index 61e83423..00000000
--- a/dataset-generation-scripts/internal/sapnhap_bando/model/sapnhap.go
+++ /dev/null
@@ -1,83 +0,0 @@
-package model
-
-import (
- "github.com/thanglequoc-vn-provinces/v2/internal/vn_provinces_tmp/model"
- "github.com/uptrace/bun"
-)
-
-type SapNhapSiteProvince struct {
- bun.BaseModel `bun:"table:sapnhap_provinces,alias:sp"`
-
- ID int `bun:"id,pk"`
- MaHC int `bun:"mahc"`
- TenTinh string `bun:"tentinh,notnull"`
- DienTichKm2 string `bun:"dientichkm2"`
- DanSoNguoi string `bun:"dansonguoi"`
- TrungTamHC string `bun:"trungtamhc"`
- KinhDo float64 `bun:"kinhdo"`
- ViDo float64 `bun:"vido"`
- TruocSN string `bun:"truocsapnhap"`
- Con string `bun:"con"`
-
-
-
- VNProvinceCode string `bun:"vn_province_code,notnull"`
- Province model.Province `bun:"rel:belongs-to,join:vn_province_code=code"`
- SapNhapGIS *SapNhapProvinceGIS `bun:"rel:has-one,join:mahc=sapnhap_province_matinh"`
-}
-
-type SapNhapSiteWard struct {
- bun.BaseModel `bun:"table:sapnhap_wards,alias:sw"`
-
- ID int `json:"id" bun:"id,pk"`
- MaTinh int `json:"matinh" bun:"matinh"`
- Ma string `json:"ma" bun:"ma"`
- TenTinh string `json:"tentinh" bun:"tentinh"`
- Loai string `json:"loai" bun:"loai"`
- TenHC string `json:"tenhc" bun:"tenhc"`
- Cay string `json:"cay" bun:"cay"`
- DienTichKm2 float64 `json:"dientichkm2" bun:"dientichkm2"`
- DanSoNguoi string `json:"dansonguoi" bun:"dansonguoi"`
- TrungTamHC string `json:"trungtamhc" bun:"trungtamhc"`
- KinhDo float64 `json:"kinhdo" bun:"kinhdo"`
- ViDo float64 `json:"vido" bun:"vido"`
- TruocSapNhap string `json:"truocsapnhap" bun:"truocsapnhap"`
- MaXa int `json:"maxa" bun:"maxa"`
- Khoa string `json:"khoa" bun:"khoa"`
- SapNhapSiteProvince SapNhapSiteProvince `bun:"rel:belongs-to,join:matinh=mahc"`
- VNWardCode string `bun:"vn_ward_code,notnull"`
- Ward model.Ward `bun:"rel:belongs-to,join:vn_ward_code=code"`
- SapNhapGIS *SapNhapWardGIS `bun:"rel:has-one,join:maxa=sapnhap_ward_maxa"`
-}
-
-type SapNhapProvinceGIS struct {
- bun.BaseModel `bun:"table:sapnhap_provinces_gis,alias:spg"`
-
- Stt int `json:"stt" bun:"stt"`
- Ten string `json:"ten" bun:"ten"`
- TruocSapNhap string `json:"truocSapNhap" bun:"truocsn"`
- GISServerID string `json:"gisServerID" bun:"gis_server_id"`
- SapNhapProvinceMaTinh int `json:"sapNhapProvinceMaTinh" bun:"sapnhap_province_matinh"`
- BBoxWKT string `bun:"bbox_wkt"`
- GeomWKT string `bun:"geom_wkt"`
- BBoxWKTLatLng string `bun:"bbox_wkt_lat_lng,scanonly"`
- GeomWKTLatLng string `bun:"geom_wkt_lat_lng,scanonly"`
-
- SapNhapSiteProvince SapNhapSiteProvince `bun:"rel:belongs-to,join:sapnhap_province_matinh=mahc"`
-}
-
-type SapNhapWardGIS struct {
- bun.BaseModel `bun:"table:sapnhap_wards_gis,alias:swg"`
-
- Stt int `json:"stt" bun:"stt"`
- Ten string `json:"ten" bun:"ten"`
- TruocSapNhap string `json:"truocSapNhap" bun:"truocsn"`
- GISServerID string `json:"gisServerID" bun:"gis_server_id"`
- SapNhapWardMaXa int `json:"sapNhapWardMaXa" bun:"sapnhap_ward_maxa"`
- BBoxWKT string `bun:"bbox_wkt"`
- GeomWKT string `bun:"geom_wkt"`
- BBoxWKTLatLng string `bun:"bbox_wkt_lat_lng,scanonly"`
- GeomWKTLatLng string `bun:"geom_wkt_lat_lng,scanonly"`
-
- SapNhapSiteWard SapNhapSiteWard `bun:"rel:belongs-to,join:sapnhap_ward_maxa=maxa"`
-}
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/repository/sapnhap.go b/dataset-generation-scripts/internal/sapnhap_bando/repository/sapnhap.go
deleted file mode 100644
index 46de8680..00000000
--- a/dataset-generation-scripts/internal/sapnhap_bando/repository/sapnhap.go
+++ /dev/null
@@ -1,75 +0,0 @@
-package repository
-
-import (
- "context"
- "github.com/thanglequoc-vn-provinces/v2/internal/sapnhap_bando/model"
- "github.com/uptrace/bun"
-)
-
-type SapNhapRepository struct {
- db *bun.DB
-}
-
-func NewSapNhapRepository(db *bun.DB) *SapNhapRepository {
- return &SapNhapRepository{
- db: db,
- }
-}
-
-/* Get all sapnhap province data */
-func (r *SapNhapRepository) GetAllSapNhapSiteProvinces() ([]model.SapNhapSiteProvince, error) {
- var provinces []model.SapNhapSiteProvince
- err := r.db.NewSelect().
- Model(&provinces).Relation("Province").Relation("SapNhapGIS").
- Scan(context.Background())
- if err != nil {
- return nil, err
- }
- return provinces, nil
-}
-
-func (r *SapNhapRepository) GetAllSapNhapSiteWards() ([]model.SapNhapSiteWard, error) {
- var wards []model.SapNhapSiteWard
- err := r.db.NewSelect().
- Model(&wards).Relation("Ward").Relation("Ward").Relation("SapNhapGIS").
- Scan(context.Background())
- if err != nil {
- return nil, err
- }
- return wards, nil
-}
-
-// Insert new sapnhap province data
-func (r *SapNhapRepository) InsertSapNhapSiteProvince(province *model.SapNhapSiteProvince) error {
- _, err := r.db.NewInsert().
- Model(province).
- Exec(context.Background())
- if err != nil {
- return err
- }
- return nil
-}
-
-// Insert new sapnhap ward data
-func (r *SapNhapRepository) InsertSapNhapSiteWard(ward *model.SapNhapSiteWard) error {
- _, err := r.db.NewInsert().
- Model(ward).
- Exec(context.Background())
- if err != nil {
- return err
- }
- return nil
-}
-
-// FindSapNhapSiteProvinceByMaHC finds a province by its MaHC (administrative code)
-func (r *SapNhapRepository) FindSapNhapSiteProvinceByMaHC(ctx context.Context, maHC int) (*model.SapNhapSiteProvince, error) {
- province := &model.SapNhapSiteProvince{}
- err := r.db.NewSelect().
- Model(province).
- Where("mahc = ?", maHC).
- Scan(ctx)
- if err != nil {
- return nil, err
- }
- return province, nil
-}
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/repository/sapnhap_gis.go b/dataset-generation-scripts/internal/sapnhap_bando/repository/sapnhap_gis.go
deleted file mode 100644
index 641fb669..00000000
--- a/dataset-generation-scripts/internal/sapnhap_bando/repository/sapnhap_gis.go
+++ /dev/null
@@ -1,66 +0,0 @@
-package repository
-
-import (
- "context"
-
- "github.com/thanglequoc-vn-provinces/v2/internal/sapnhap_bando/model"
- "github.com/uptrace/bun"
-)
-
-type SapNhapGISRepository struct {
- db *bun.DB
-}
-
-func NewSapNhapGISRepository(db *bun.DB) *SapNhapGISRepository {
- return &SapNhapGISRepository{
- db: db,
- }
-}
-
-func (r *SapNhapGISRepository) InsertSapNhapProvinceGIS(provinceGIS *model.SapNhapProvinceGIS) error {
- _, err := r.db.NewInsert().
- Model(provinceGIS).
- Exec(context.Background())
- if err != nil {
- return err
- }
- return nil
-}
-
-func (r *SapNhapGISRepository) InsertSapNhapWardGIS(wardGIS *model.SapNhapWardGIS) error {
- _, err := r.db.NewInsert().
- Model(wardGIS).
- Exec(context.Background())
- if err != nil {
- return err
- }
- return nil
-}
-
-func (r *SapNhapGISRepository) GetAllSapNhapProvinceGIS() ([]model.SapNhapProvinceGIS, error) {
- var provinceGISList []model.SapNhapProvinceGIS
- err := r.db.NewSelect().
- Model(&provinceGISList).Relation("SapNhapSiteProvince").
- ColumnExpr("stt, ten, truocsn, gis_server_id, sapnhap_province_matinh, bbox_wkt, geom_wkt").
- ColumnExpr("ST_AsText(ST_FlipCoordinates(bbox)) AS bbox_wkt_lat_lng").
- ColumnExpr("ST_AsText(ST_FlipCoordinates(geom)) AS geom_wkt_lat_lng").
- Scan(context.Background())
- if err != nil {
- return nil, err
- }
- return provinceGISList, nil
-}
-
-func (r *SapNhapGISRepository) GetAllSapNhapWardGIS() ([]model.SapNhapWardGIS, error) {
- var wardGISList []model.SapNhapWardGIS
- err := r.db.NewSelect().
- Model(&wardGISList).Relation("SapNhapSiteWard").
- ColumnExpr("stt, ten, truocsn, gis_server_id, sapnhap_ward_maxa, bbox_wkt, geom_wkt").
- ColumnExpr("ST_AsText(ST_FlipCoordinates(bbox)) AS bbox_wkt_lat_lng").
- ColumnExpr("ST_AsText(ST_FlipCoordinates(geom)) AS geom_wkt_lat_lng").
- Scan(context.Background())
- if err != nil {
- return nil, err
- }
- return wardGISList, nil
-}
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/sapnhap_bando.go b/dataset-generation-scripts/internal/sapnhap_bando/sapnhap_bando.go
index 21097d5d..bf2a481e 100644
--- a/dataset-generation-scripts/internal/sapnhap_bando/sapnhap_bando.go
+++ b/dataset-generation-scripts/internal/sapnhap_bando/sapnhap_bando.go
@@ -2,10 +2,7 @@ package sapnhapbando
import (
"context"
- "fmt"
"log"
- "os"
- "strconv"
db "github.com/thanglequoc-vn-provinces/v2/internal/database"
@@ -14,70 +11,15 @@ import (
vnRepo "github.com/thanglequoc-vn-provinces/v2/internal/vn_provinces_tmp/repository"
)
-const (
- PROVINCE_GIS_EXISTING_DUMP_PATH = "./resources/gis/exported/sapnhap_provinces_gis_202509011857_lfs.sql"
- WARD_GIS_EXISTING_DUMP_PATH = "./resources/gis/exported/sapnhap_wards_gis_202509011858_lfs.sql"
-)
-
-func DumpDataFromSapNhapBando() {
- // Initialize the SapNhapRepository
- postgresDB := db.GetPostgresDBConnection()
- sapNhapRepo := sapNhapR.NewSapNhapRepository(postgresDB)
- sapNhapGISRepo := sapNhapR.NewSapNhapGISRepository(postgresDB)
- sapNhapGeoJSONObjectRepository := sapNhapR.NewSapNhapGeoJSONObjectRepository(postgresDB)
- vnRepo := vnRepo.NewVnProvincesTmpRepository(postgresDB)
-
- sapNhapService := sapNhapService.NewSapNhapService(sapNhapRepo, sapNhapGISRepo, vnRepo, sapNhapGeoJSONObjectRepository, postgresDB)
-
- if err := sapNhapService.BootstrapSapNhapSiteProvinces(); err != nil {
- log.Fatalf("Failed to dump SapNhapSiteProvinces: %v", err)
- panic(err)
- }
-
- if err := sapNhapService.BootstrapSapNhapSiteWards(); err != nil {
- log.Fatalf("Failed to dump SapNhapSiteWards: %v", err)
- panic(err)
- }
-
- shouldGetGISFromDumpSQLPatch, err := strconv.ParseBool(os.Getenv("DUMP_GIS_RESOURCE_FROM_EXISTING_DB_PATCH"))
- if err != nil {
- fmt.Println("Error parsing DUMP_GIS_RESOURCE_FROM_EXISTING_DB_PATCH, default to false")
- shouldGetGISFromDumpSQLPatch = false
- }
-
- if shouldGetGISFromDumpSQLPatch {
- log.Println("ℹ️ DUMP_GIS_RESOURCE_FROM_EXISTING_DB_PATCH is set to true, will load GIS data from existing SQL dump file")
- // Just go ahead and execute the existing SQL dump file
- if err := db.ExecuteSQLScript(PROVINCE_GIS_EXISTING_DUMP_PATH); err != nil {
- log.Fatalf("Failed to execute province GIS dump script: %v", err)
- panic(err)
- }
- if err := db.ExecuteSQLScript(WARD_GIS_EXISTING_DUMP_PATH); err != nil {
- log.Fatalf("Failed to execute ward GIS dump script: %v", err)
- panic(err)
- }
- } else {
- log.Println("ℹ️ DUMP_GIS_RESOURCE_FROM_EXISTING_DB_PATCH is set to false, will fetch GIS data from GIS server")
- if err := sapNhapService.BootstrapGISDataFromGISServer(); err != nil {
- log.Fatalf("Failed to bootstrap GIS Data: %v", err)
- panic(err)
- }
- }
-
- log.Println("✅ Data dump from SapNhap Bando completed successfully")
-}
-
func FetchGISDataFromSapNhapBando() {
// Initialize repository
postgresDB := db.GetPostgresDBConnection()
sapNhapGeoJSONObjectRepository := sapNhapR.NewSapNhapGeoJSONObjectRepository(postgresDB)
// Initialize service with required dependencies
- sapNhapRepo := sapNhapR.NewSapNhapRepository(postgresDB)
- sapNhapGISRepo := sapNhapR.NewSapNhapGISRepository(postgresDB)
vnRepo := vnRepo.NewVnProvincesTmpRepository(postgresDB)
- sapNhapService := sapNhapService.NewSapNhapService(sapNhapRepo, sapNhapGISRepo, vnRepo, sapNhapGeoJSONObjectRepository, postgresDB)
+ sapNhapService := sapNhapService.NewSapNhapService(vnRepo, sapNhapGeoJSONObjectRepository, postgresDB)
// Fetch GIS data from Bando server and update database
log.Println("ℹ️ Starting to fetch GIS data from Bando server...")
@@ -95,12 +37,10 @@ func FetchGISDataFromSapNhapBando() {
func BackfillProvinceAndWardCodesInSapNhapGeojsonObjects() {
// Initialize service with required dependencies
postgresDB := db.GetPostgresDBConnection()
- sapNhapRepo := sapNhapR.NewSapNhapRepository(postgresDB)
- sapNhapGISRepo := sapNhapR.NewSapNhapGISRepository(postgresDB)
vnRepo := vnRepo.NewVnProvincesTmpRepository(postgresDB)
sapNhapGeoJSONObjectRepository := sapNhapR.NewSapNhapGeoJSONObjectRepository(postgresDB)
- sapNhapService := sapNhapService.NewSapNhapService(sapNhapRepo, sapNhapGISRepo, vnRepo, sapNhapGeoJSONObjectRepository, postgresDB)
+ sapNhapService := sapNhapService.NewSapNhapService(vnRepo, sapNhapGeoJSONObjectRepository, postgresDB)
ctx := context.Background()
if err := sapNhapService.FillMetaDataForGeoJSONObjects(ctx); err != nil {
diff --git a/dataset-generation-scripts/internal/sapnhap_bando/service/sapnhap.go b/dataset-generation-scripts/internal/sapnhap_bando/service/sapnhap.go
index ce2fd600..ac8a83c0 100644
--- a/dataset-generation-scripts/internal/sapnhap_bando/service/sapnhap.go
+++ b/dataset-generation-scripts/internal/sapnhap_bando/service/sapnhap.go
@@ -4,244 +4,31 @@ import (
"context"
"fmt"
"log"
- "strconv"
- "strings"
"sync"
"github.com/thanglequoc-vn-provinces/v2/internal/sapnhap_bando/dto"
"github.com/thanglequoc-vn-provinces/v2/internal/sapnhap_bando/fetcher"
"github.com/thanglequoc-vn-provinces/v2/internal/sapnhap_bando/model"
"github.com/thanglequoc-vn-provinces/v2/internal/sapnhap_bando/repository"
- "github.com/thanglequoc-vn-provinces/v2/internal/sapnhap_bando/util"
vnRepo "github.com/thanglequoc-vn-provinces/v2/internal/vn_provinces_tmp/repository"
"github.com/uptrace/bun"
)
-const BANDO_GIS_PROVINCES_FILE_PATH = "./resources/gis/bando_gisserver/provinces.json"
-const BANDO_GIS_WARDS_FILE_PATH = "./resources/gis/bando_gisserver/wards.json"
-const METADATA_API_URL = "https://sapnhap.bando.com.vn/p.co_dvhc_id"
-
type SapNhapService struct {
- sapNhapRepo *repository.SapNhapRepository
- sapNhapGISRepo *repository.SapNhapGISRepository
sapNhapGeoJSONRepo *repository.SapNhapGeoJSONObjectRepository
vnProvinceTmpRepo *vnRepo.VnProvincesTmpRepository
db *bun.DB
}
-func NewSapNhapService(repo *repository.SapNhapRepository, sapNhapGISRepo *repository.SapNhapGISRepository, vnRepo *vnRepo.VnProvincesTmpRepository,
+func NewSapNhapService(vnRepo *vnRepo.VnProvincesTmpRepository,
sapNhapGeoJSONRepo *repository.SapNhapGeoJSONObjectRepository, db *bun.DB) *SapNhapService {
return &SapNhapService{
- sapNhapRepo: repo,
- sapNhapGISRepo: sapNhapGISRepo,
sapNhapGeoJSONRepo: sapNhapGeoJSONRepo,
vnProvinceTmpRepo: vnRepo,
db: db,
}
}
-// cleanAdministrativeUnitPrefix removes common administrative unit prefixes from a name
-// in a case-insensitive way, preserving the case of the original name.
-func cleanAdministrativeUnitPrefix(name string) string {
- // Prefixes are in lowercase and include a space for accurate matching.
- prefixes := []string{"tỉnh ", "thành phố ", "thủ đô "}
- lowerName := strings.ToLower(name)
-
- for _, prefix := range prefixes {
- if strings.HasPrefix(lowerName, prefix) {
- // Slice the original string to preserve the casing of the name part.
- return strings.TrimSpace(name[len(prefix):])
- }
- }
- return name // Return original name if no prefix is found
-}
-
-func (s *SapNhapService) BootstrapSapNhapSiteProvinces() error {
- ctx := context.Background() // Use context.Background for top-level contexts in scripts.
-
- // Load provinces from JSON file instead of deprecated API
- sapNhapSiteProvinces, err := fetcher.LoadProvincesFromJSONFile()
- if err != nil {
- return fmt.Errorf("failed to load provinces from JSON file: %w", err)
- }
-
- // Insert each province into the repository
- for _, provinceData := range sapNhapSiteProvinces {
- // Clean the province name by removing administrative unit prefixes.
- cleanedProvinceName := cleanAdministrativeUnitPrefix(provinceData.TenTinh)
- cleanedProvinceName = util.NormalizeString(cleanedProvinceName)
-
- // Attempt to look up the vn province by name
- vnProvince, err := s.vnProvinceTmpRepo.FindProvinceByName(ctx, cleanedProvinceName)
- if err != nil {
- return fmt.Errorf("error finding province by name '%s': %w", cleanedProvinceName, err)
- }
- if vnProvince == nil {
- return fmt.Errorf("VN Province not found for name: %s", cleanedProvinceName)
- }
-
- province := &model.SapNhapSiteProvince{
- ID: provinceData.ID,
- MaHC: provinceData.MaHC,
- TenTinh: cleanedProvinceName,
- DienTichKm2: provinceData.DienTichKm2,
- DanSoNguoi: provinceData.DanSoNguoi,
- TrungTamHC: provinceData.TrungTamHC,
- KinhDo: provinceData.KinhDo,
- ViDo: provinceData.ViDo,
- TruocSN: provinceData.TruocSN,
- Con: provinceData.Con,
- VNProvinceCode: vnProvince.Code,
- }
-
- if err := s.sapNhapRepo.InsertSapNhapSiteProvince(province); err != nil {
- // Correctly wrap and return the error.
- return fmt.Errorf("failed to insert province %s: %w", province.TenTinh, err)
- }
- }
-
- log.Default().Println("Bootstrap SapNhapSiteProvinces completed successfully")
-
- return nil
-}
-
-func (s *SapNhapService) BootstrapSapNhapSiteWards() error {
- ctx := context.TODO()
-
- // Load all wards from JSON file instead of fetching per province from deprecated API
- sapNhapSiteWards, err := fetcher.LoadWardsFromJSONFile()
- if err != nil {
- return fmt.Errorf("failed to load wards from JSON file: %w", err)
- }
-
- for _, wardData := range sapNhapSiteWards {
- /* Very edge case, for Tuyen Quang, Phố Bảng is actually Phó Bảng */
- if strings.EqualFold(wardData.TenHC, "Phố Bảng") && wardData.Matinh == 8 {
- wardData.TenHC = "Phó Bảng"
- }
-
- wardData.TenHC = util.NormalizeString(wardData.TenHC)
-
- // Find province first to get vn_province_code
- province, err := s.sapNhapRepo.FindSapNhapSiteProvinceByMaHC(ctx, wardData.Matinh)
- if err != nil {
- return fmt.Errorf("error finding province by MaHC '%d': %w", wardData.Matinh, err)
- }
- if province == nil {
- return fmt.Errorf("SapNhap Province not found for MaHC: %d", wardData.Matinh)
- }
-
- vnWard, err := s.vnProvinceTmpRepo.FindWardByName(ctx, strings.TrimSpace(wardData.TenHC), province.VNProvinceCode)
- if err != nil {
- return fmt.Errorf("error finding ward by name '%s': %w", wardData.TenHC, err)
- }
- if vnWard == nil {
- return fmt.Errorf("VN Ward not found for name: %s", wardData.TenHC)
- }
-
- ward := &model.SapNhapSiteWard{
- ID: wardData.ID,
- MaTinh: wardData.Matinh,
- Ma: wardData.Ma,
- TenTinh: province.TenTinh, // Use province name from DB
- Loai: wardData.Loai,
- TenHC: wardData.TenHC,
- Cay: wardData.Cay,
- DienTichKm2: wardData.DienTichKm2,
- DanSoNguoi: wardData.DanSoNguoi,
- TrungTamHC: wardData.TrungTamHC,
- KinhDo: wardData.KinhDo,
- ViDo: wardData.ViDo,
- TruocSapNhap: wardData.TruocSapNhap,
- MaXa: wardData.MaXa,
- Khoa: wardData.Khoa,
- VNWardCode: vnWard.Code,
- }
-
- if err := s.sapNhapRepo.InsertSapNhapSiteWard(ward); err != nil {
- return fmt.Errorf("failed to insert ward %s in province %s: %w", ward.TenHC, ward.TenTinh, err)
- }
- }
-
- log.Default().Println("Bootstrap SapNhapSiteWards completed successfully")
- return nil
-}
-
-/*
-Bootstrap GIS data coordinate by loading from local GeoJSON files
-Replaces the old API-based approach that used GetGISLocationCoordinates()
-*/
-func (s *SapNhapService) BootstrapGISDataFromGISServer() error {
- // Load province GIS data from GeoJSON files
- provincesGIS, err := fetcher.LoadProvincesGISFromGeoJSONFiles()
- if err != nil {
- return fmt.Errorf("failed to load provinces GIS data: %w", err)
- }
-
- // Insert province GIS data
- for _, gisData := range provincesGIS {
- matinhInt, err := strconv.Atoi(gisData.SapNhapProvinceMaTinh)
- if err != nil {
- log.Printf("Warning: failed to parse matinh %s for %s: %v", gisData.SapNhapProvinceMaTinh, gisData.Ten, err)
- continue
- }
-
- sapNhapProvinceGIS := &model.SapNhapProvinceGIS{
- Stt: gisData.STT,
- Ten: gisData.Ten,
- TruocSapNhap: gisData.TruocSN,
- GISServerID: gisData.GISServerID,
- SapNhapProvinceMaTinh: matinhInt,
- BBoxWKT: gisData.BBoxWKT,
- GeomWKT: gisData.GeomWKT,
- }
-
- if err := s.sapNhapGISRepo.InsertSapNhapProvinceGIS(sapNhapProvinceGIS); err != nil {
- log.Printf("Warning: failed to insert province GIS data for %s: %v", gisData.Ten, err)
- } else {
- log.Printf("Inserted GIS data for province %s", gisData.Ten)
- }
- }
-
- // Load ward GIS data from GeoJSON files
- wardsGIS, err := fetcher.LoadWardsGISFromGeoJSONFiles()
- if err != nil {
- return fmt.Errorf("failed to load wards GIS data: %w", err)
- }
-
- // Insert ward GIS data
- for _, gisData := range wardsGIS {
- maxaInt, err := strconv.Atoi(gisData.SapNhapWardMaXa)
- if err != nil {
- log.Printf("Warning: failed to parse maxa %s for %s: %v", gisData.SapNhapWardMaXa, gisData.Ten, err)
- continue
- }
-
- sapNhapWardGIS := &model.SapNhapWardGIS{
- Stt: gisData.STT,
- Ten: gisData.Ten,
- TruocSapNhap: gisData.TruocSN,
- GISServerID: gisData.GISServerID,
- SapNhapWardMaXa: maxaInt,
- BBoxWKT: gisData.BBoxWKT,
- GeomWKT: gisData.GeomWKT,
- }
-
- if err := s.sapNhapGISRepo.InsertSapNhapWardGIS(sapNhapWardGIS); err != nil {
- log.Printf("Warning: failed to insert ward GIS data for %s: %v", gisData.Ten, err)
- } else {
- log.Printf("Inserted GIS data for ward %s", gisData.Ten)
- }
- }
-
- log.Printf("Completed loading GIS data: %d provinces, %d wards", len(provincesGIS), len(wardsGIS))
- return nil
-}
-
-func (s *SapNhapService) BootstrapGISDataFromGISServerV2() error {
- return nil
-}
-
// ProcessingError represents a record that failed to process
type ProcessingError struct {
Ma string
diff --git a/dataset-generation-scripts/internal/testutil/test_fixtures.go b/dataset-generation-scripts/internal/testutil/test_fixtures.go
deleted file mode 100644
index b891b4fc..00000000
--- a/dataset-generation-scripts/internal/testutil/test_fixtures.go
+++ /dev/null
@@ -1,193 +0,0 @@
-package testutil
-
-import (
- vn_provinces_tmp_model "github.com/thanglequoc-vn-provinces/v2/internal/vn_provinces_tmp/model"
-)
-
-// TestFixtureLoader provides common test data fixtures
-type TestFixtureLoader struct{}
-
-// NewTestFixtureLoader creates a new test fixture loader
-func NewTestFixtureLoader() *TestFixtureLoader {
- return &TestFixtureLoader{}
-}
-
-// LoadProvinceTestData returns sample province test data
-func (l *TestFixtureLoader) LoadProvinceTestData() []vn_provinces_tmp_model.Province {
- return []vn_provinces_tmp_model.Province{
- {
- Code: "01",
- Name: "Hà Nội",
- NameEn: "Ha Noi",
- FullName: "Thành phố Hà Nội",
- FullNameEn: "Ha Noi",
- CodeName: "ha_noi",
- AdministrativeUnitId: 1, // Thanh pho
- },
- {
- Code: "02",
- Name: "Hải Phòng",
- NameEn: "Hai Phong",
- FullName: "Thành phố Hải Phòng",
- FullNameEn: "Hai Phong",
- CodeName: "hai_phong",
- AdministrativeUnitId: 1, // Thanh pho
- },
- {
- Code: "10",
- Name: "Khánh Hòa",
- NameEn: "Khanh Hoa",
- FullName: "Tỉnh Khánh Hòa",
- FullNameEn: "Khanh Hoa",
- CodeName: "khanh_hoa",
- AdministrativeUnitId: 2, // Tinh
- },
- }
-}
-
-// LoadWardTestData returns sample ward test data
-func (l *TestFixtureLoader) LoadWardTestData() []vn_provinces_tmp_model.Ward {
- return []vn_provinces_tmp_model.Ward{
- {
- Code: "001",
- Name: "Bắc Sơn",
- NameEn: "Bac Son",
- FullName: "Phường Bắc Sơn",
- FullNameEn: "Bac Son Ward",
- CodeName: "bac_son",
- AdministrativeUnitId: 3, // Phuong
- ProvinceCode: "01",
- },
- {
- Code: "002",
- Name: "Tân Xã",
- NameEn: "Tan Xa",
- FullName: "Xã Tân Xã",
- FullNameEn: "Tan Xa Commune",
- CodeName: "tan_xa",
- AdministrativeUnitId: 4, // Xa
- ProvinceCode: "01",
- },
- {
- Code: "003",
- Name: "1",
- NameEn: "1",
- FullName: "Phường 1",
- FullNameEn: "Ward 1",
- CodeName: "1",
- AdministrativeUnitId: 3, // Phuong
- ProvinceCode: "02",
- },
- {
- Code: "004",
- Name: "Phó Bảng",
- NameEn: "Pho Bang",
- FullName: "Xã Phó Bảng",
- FullNameEn: "Pho Bang Commune",
- CodeName: "pho_bang",
- AdministrativeUnitId: 4, // Xa
- ProvinceCode: "06",
- },
- }
-}
-
-// LoadAdministrativeRegionTestData returns sample administrative region test data
-func (l *TestFixtureLoader) LoadAdministrativeRegionTestData() []vn_provinces_tmp_model.AdministrativeRegion {
- return []vn_provinces_tmp_model.AdministrativeRegion{
- {
- Id: 1,
- Name: "Đông Bắc Bộ",
- NameEn: "Northeast",
- CodeName: "dong_bac_bo",
- CodeNameEn: "northeast",
- },
- {
- Id: 2,
- Name: "Tây Bắc Bộ",
- NameEn: "Northwest",
- CodeName: "tay_bac_bo",
- CodeNameEn: "northwest",
- },
- }
-}
-
-// LoadAdministrativeUnitTestData returns sample administrative unit test data
-func (l *TestFixtureLoader) LoadAdministrativeUnitTestData() []vn_provinces_tmp_model.AdministrativeUnit {
- return []vn_provinces_tmp_model.AdministrativeUnit{
- {
- Id: 1,
- FullName: "Thành phố",
- FullNameEn: "City",
- ShortName: "TP",
- ShortNameEn: "City",
- CodeName: "thanh_pho",
- CodeNameEn: "city",
- },
- {
- Id: 2,
- FullName: "Tỉnh",
- FullNameEn: "Province",
- ShortName: "Tỉnh",
- ShortNameEn: "Province",
- CodeName: "tinh",
- CodeNameEn: "province",
- },
- {
- Id: 3,
- FullName: "Phường",
- FullNameEn: "Ward",
- ShortName: "Phường",
- ShortNameEn: "Ward",
- CodeName: "phuong",
- CodeNameEn: "ward",
- },
- {
- Id: 4,
- FullName: "Xã",
- FullNameEn: "Commune",
- ShortName: "Xã",
- ShortNameEn: "Commune",
- CodeName: "xa",
- CodeNameEn: "commune",
- },
- {
- Id: 5,
- FullName: "Đặc khu",
- FullNameEn: "Special Zone",
- ShortName: "Đặc khu",
- ShortNameEn: "Special Zone",
- CodeName: "dac_khu",
- CodeNameEn: "special_zone",
- },
- }
-}
-
-// LoadGISTestData returns sample GIS test data
-func (l *TestFixtureLoader) LoadGISTestData() ([]vn_provinces_tmp_model.Province, []vn_provinces_tmp_model.Ward) {
- provinces := []vn_provinces_tmp_model.Province{
- {
- Code: "01",
- Name: "Hà Nội",
- NameEn: "Ha Noi",
- FullName: "Thành phố Hà Nội",
- FullNameEn: "Ha Noi",
- CodeName: "ha_noi",
- AdministrativeUnitId: 1,
- },
- }
-
- wards := []vn_provinces_tmp_model.Ward{
- {
- Code: "001",
- Name: "Bắc Sơn",
- NameEn: "Bac Son",
- FullName: "Phường Bắc Sơn",
- FullNameEn: "Bac Son Ward",
- CodeName: "bac_son",
- AdministrativeUnitId: 3,
- ProvinceCode: "01",
- },
- }
-
- return provinces, wards
-}
\ No newline at end of file
diff --git a/dataset-generation-scripts/main.go b/dataset-generation-scripts/main.go
index 0e7ebf82..ca5b01ff 100644
--- a/dataset-generation-scripts/main.go
+++ b/dataset-generation-scripts/main.go
@@ -8,18 +8,13 @@ import (
)
const INCLUDE_GIS = true
-const USE_DIRECT_DVHCVN_SOURCE = true
func main() {
// pre-run
// Refresh temporary dataset, import existing dataset
db.BootstrapTemporaryDatasetStructure()
- if (USE_DIRECT_DVHCVN_SOURCE) {
- dumper.BeginDumpingDataWithDvhcvnDirectSource()
- } else {
- dumper.DumpFromManualSeed()
- }
+ dumper.BeginDumpingDataWithDvhcvnDirectSource()
dataset_writer.ReadAndGenerateSQLDatasets()
if (INCLUDE_GIS) {
@@ -28,4 +23,4 @@ func main() {
sapnhap.FetchGISDataFromSapNhapBando()
dataset_writer.GenerateGISSQLDatasets()
}
-}
+}
\ No newline at end of file
diff --git a/dataset-generation-scripts/resources/db_table_init.sql b/dataset-generation-scripts/resources/db_table_init.sql
index a1e48aec..949e4756 100644
--- a/dataset-generation-scripts/resources/db_table_init.sql
+++ b/dataset-generation-scripts/resources/db_table_init.sql
@@ -56,56 +56,3 @@ ALTER TABLE wards_tmp ADD CONSTRAINT wards_tmp_administrative_unit_id_fkey FOREI
ALTER TABLE wards_tmp ADD CONSTRAINT wards_tmp_province_code_fkey FOREIGN KEY (province_code) REFERENCES provinces_tmp(code);
CREATE INDEX idx_wards_tmp_province ON wards_tmp(province_code);
CREATE INDEX idx_wards_tmp_tmp_unit ON wards_tmp(administrative_unit_id);
-
-
--- CREATE provinces_tmp_seed TABLE
-CREATE TABLE provinces_tmp_seed (
- code varchar(20) NOT NULL,
- "name" varchar(255) NOT NULL,
- CONSTRAINT provinces_tmp_seed_pkey PRIMARY KEY (code)
-);
-
--- CREATE wards_tmp_seed TABLE
-CREATE TABLE wards_tmp_seed (
- code varchar(20) NOT NULL,
- "name" varchar(255) NOT NULL,
- province_code varchar(20) NOT NULL,
- CONSTRAINT wards_tmp_seed_pkey PRIMARY KEY (code)
-);
-
--- wards_tmp_seed foreign keys
-ALTER TABLE wards_tmp_seed ADD CONSTRAINT wards_tmp_seed_province_code_fkey FOREIGN KEY (province_code) REFERENCES provinces_tmp_seed(code);
-
--- -----------------------------------------------------------------
-
-/* Create current dataset tables */
--- CREATE provinces TABLE
-CREATE TABLE provinces (
- code varchar(20) NOT NULL,
- "name" varchar(255) NOT NULL,
- name_en varchar(255) NULL,
- full_name varchar(255) NOT NULL,
- full_name_en varchar(255) NULL,
- code_name varchar(255) NULL,
- administrative_unit_id integer NULL,
- administrative_region_id integer NULL,
- CONSTRAINT provinces_pkey PRIMARY KEY (code)
-);
-ALTER TABLE provinces ADD CONSTRAINT provinces_administrative_region_id_fkey FOREIGN KEY (administrative_region_id) REFERENCES administrative_regions(id);
-ALTER TABLE provinces ADD CONSTRAINT provinces_administrative_unit_id_fkey FOREIGN KEY (administrative_unit_id) REFERENCES administrative_units(id);
-
-
--- CREATE wards TABLE
-CREATE TABLE wards (
- code varchar(20) NOT NULL,
- "name" varchar(255) NOT NULL,
- name_en varchar(255) NULL,
- full_name varchar(255) NULL,
- full_name_en varchar(255) NULL,
- code_name varchar(255) NULL,
- province_code varchar(20) NULL,
- administrative_unit_id integer NULL,
- CONSTRAINT wards_pkey PRIMARY KEY (code)
-);
-ALTER TABLE wards ADD CONSTRAINT wards_administrative_unit_id_fkey FOREIGN KEY (administrative_unit_id) REFERENCES administrative_units(id);
-ALTER TABLE wards ADD CONSTRAINT wards_province_code_fkey FOREIGN KEY (province_code) REFERENCES provinces(code);
diff --git a/dataset-generation-scripts/resources/gis/bando_gisserver/complete_result.json b/dataset-generation-scripts/resources/gis/bando_gisserver/complete_result.json
deleted file mode 100644
index d834b061..00000000
--- a/dataset-generation-scripts/resources/gis/bando_gisserver/complete_result.json
+++ /dev/null
@@ -1,23459 +0,0 @@
-{
- "provinces": [
- {
- "stt": "1",
- "ten": "Thủ đô Hà Nội",
- "truocsn": "Thủ đô Hà Nội (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.7\",\"properties\":{\"matinh\":\"1\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "tỉnh Cao Bằng",
- "truocsn": "tỉnh Cao Bằng (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.11\",\"properties\":{\"matinh\":\"7\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "tỉnh Tuyên Quang",
- "truocsn": "tỉnh Hà Giang và tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.32\",\"properties\":{\"matinh\":\"8\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "tỉnh Lào Cai",
- "truocsn": "tỉnh Yên Bái và tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.29\",\"properties\":{\"matinh\":\"9\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "tỉnh Điện Biên",
- "truocsn": "tỉnh Điện Biên (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.8\",\"properties\":{\"matinh\":\"13\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "tỉnh Lai Châu",
- "truocsn": "tỉnh Lai Châu (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.10\",\"properties\":{\"matinh\":\"14\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "tỉnh Sơn La",
- "truocsn": "tỉnh Sơn La (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.9\",\"properties\":{\"matinh\":\"15\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "tỉnh Thái Nguyên",
- "truocsn": "tỉnh Bắc Kạn và tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.30\",\"properties\":{\"matinh\":\"10\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "tỉnh Lạng Sơn",
- "truocsn": "tỉnh Lạng Sơn (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.5\",\"properties\":{\"matinh\":\"11\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "tỉnh Quảng Ninh",
- "truocsn": "tỉnh Quảng Ninh (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.6\",\"properties\":{\"matinh\":\"3\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "tỉnh Phú Thọ",
- "truocsn": "tỉnh Vĩnh Phúc, tỉnh Hòa Bình và tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.33\",\"properties\":{\"matinh\":\"12\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "tỉnh Bắc Ninh",
- "truocsn": "tỉnh Bắc Giang và tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.31\",\"properties\":{\"matinh\":\"2\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "thành phố Hải Phòng",
- "truocsn": "thành phố Hải Phòng và tỉnh Hải Dương",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.28\",\"properties\":{\"matinh\":\"4\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "tỉnh Hưng Yên",
- "truocsn": "tỉnh Thái Bình và tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.26\",\"properties\":{\"matinh\":\"5\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "tỉnh Ninh Bình",
- "truocsn": "tỉnh Hà Nam, tỉnh Nam Định và tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.27\",\"properties\":{\"matinh\":\"6\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "tỉnh Thanh Hóa",
- "truocsn": "tỉnh Thanh Hóa (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.1\",\"properties\":{\"matinh\":\"16\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "tỉnh Nghệ An",
- "truocsn": "tỉnh Nghệ An (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.4\",\"properties\":{\"matinh\":\"17\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "tỉnh Hà Tĩnh",
- "truocsn": "tỉnh Hà Tĩnh (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.3\",\"properties\":{\"matinh\":\"18\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "tỉnh Quảng Trị",
- "truocsn": "tỉnh Quảng Bình và tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.25\",\"properties\":{\"matinh\":\"19\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "thành phố Huế",
- "truocsn": "thành phố Huế (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.2\",\"properties\":{\"matinh\":\"20\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "thành phố Đà Nẵng",
- "truocsn": "thành phố Đà Nẵng và tỉnh Quảng Nam",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.15\",\"properties\":{\"matinh\":\"21\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "tỉnh Quảng Ngãi",
- "truocsn": "tỉnh Kon Tum và tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.13\",\"properties\":{\"matinh\":\"22\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "tỉnh Khánh Hòa",
- "truocsn": "tỉnh Ninh Thuận và tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.16\",\"properties\":{\"matinh\":\"23\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "tỉnh Gia Lai",
- "truocsn": "tỉnh Bình Định và tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.24\",\"properties\":{\"matinh\":\"24\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "tỉnh Đắk Lắk",
- "truocsn": "tỉnh Phú Yên và tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.20\",\"properties\":{\"matinh\":\"25\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "tỉnh Lâm Đồng",
- "truocsn": "tỉnh Đắk Nông, tỉnh Bình Thuận và tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.21\",\"properties\":{\"matinh\":\"26\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "tỉnh Tây Ninh",
- "truocsn": "tỉnh Long An và tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.18\",\"properties\":{\"matinh\":\"27\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "tỉnh Đồng Nai",
- "truocsn": "tỉnh Bình Phước và tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.23\",\"properties\":{\"matinh\":\"28\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "thành phố Hồ Chí Minh",
- "truocsn": "TPHCM, tỉnh Bà Rịa - Vũng Tàu và tỉnh Bình Dương",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.22\",\"properties\":{\"matinh\":\"29\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "tỉnh Vĩnh Long",
- "truocsn": "tỉnh Bến Tre, tỉnh Trà Vinh và tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.19\",\"properties\":{\"matinh\":\"30\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "tỉnh Đồng Tháp",
- "truocsn": "tỉnh Tiền Giang và tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.34\",\"properties\":{\"matinh\":\"31\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "tỉnh An Giang",
- "truocsn": "tỉnh Kiên Giang và tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.14\",\"properties\":{\"matinh\":\"32\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "thành phố Cần Thơ",
- "truocsn": "thành phố Cần Thơ, tỉnh Sóc Trăng và tỉnh Hậu Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.12\",\"properties\":{\"matinh\":\"33\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "tỉnh Cà Mau",
- "truocsn": "tỉnh Bạc Liêu và tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.17\",\"properties\":{\"matinh\":\"34\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- }
- ],
- "wards": [
- {
- "stt": "1",
- "ten": "An Khánh (xã)",
- "truocsn": "Xã Đông La, Phường Dương Nội (phần còn lại sau khi sáp nhập vào phường Tây Mỗ, phường Đại Mỗ, phường Dương Nội), Xã An Khánh (phần còn lại sau khi sáp nhập vào phường Tây Mỗ, xã Sơn Đồng), Xã La Phù (phần còn lại sau khi sáp nhập vào phường Dương Nội), Xã Song Phương (phần còn lại sau khi sáp nhập vào xã Sơn Đồng), Xã Vân Côn (phần còn lại sau khi sáp nhập vào xã Sơn Đồng), Xã An Thượng (phần còn lại sau khi sáp nhập vào xã Sơn Đồng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3285\",\"properties\":{\"matinhxa\":\"1.3301\",\"maxa\":3301},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Đình (phường)",
- "truocsn": "Phường Quán Thánh, Phường Trúc Bạch, Phường Cửa Nam, Phường Điện Biên, Phường Đội Cấn, Phường Kim Mã, Phường Ngọc Hà, Phường Thụy Khuê, Phường Cửa Đông (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm), Phường Đồng Xuân (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3260\",\"properties\":{\"matinhxa\":\"1.3276\",\"maxa\":3276},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ba Vì (xã)",
- "truocsn": "Xã Ba Vì, Xã Khánh Thượng, Xã Minh Quang (phần còn lại sau khi sáp nhập vào xã Bất Bạt)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3203\",\"properties\":{\"matinhxa\":\"1.3219\",\"maxa\":3219},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bạch Mai (phường)",
- "truocsn": "Phường Bạch Mai, Phường Bách Khoa, Phường Quỳnh Mai, Phường Minh Khai (quận Hai Bà Trưng), Phường Đồng Tâm, Phường Lê Đại Hành, Phường Phương Mai, Phường Trương Định, Phường Thanh Nhàn (phần còn lại sau khi sáp nhập vào phường Hai Bà Trưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3250\",\"properties\":{\"matinhxa\":\"1.3266\",\"maxa\":3266},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bất Bạt (xã)",
- "truocsn": "Xã Thuần Mỹ, Xã Tòng Bạt, Xã Sơn Đà, Xã Cẩm Lĩnh, Xã Minh Quang",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3220\",\"properties\":{\"matinhxa\":\"1.3236\",\"maxa\":3236},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bát Tràng (xã)",
- "truocsn": "Xã Kim Đức, Phường Cự Khối (phần còn lại sau khi sáp nhập vào phường Long Biên), Phường Thạch Bàn (phần còn lại sau khi sáp nhập vào phường Long Biên, phường Phúc Lợi, xã Gia Lâm), Thị trấn Trâu Quỳ (phần còn lại sau khi sáp nhập vào xã Gia Lâm), Xã Đa Tốn (phần còn lại sau khi sáp nhập vào xã Gia Lâm), Xã Bát Tràng (phần còn lại sau khi sáp nhập vào phường Long Biên, xã Gia Lâm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3232\",\"properties\":{\"matinhxa\":\"1.3248\",\"maxa\":3248},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Minh (xã)",
- "truocsn": "Xã Bích Hòa, Xã Bình Minh, Xã Cao Viên, Xã Thanh Cao, Xã Lam Điền, Xã Cự Khê (phần còn lại sau khi sáp nhập vào phường Phú Lương), Phường Phú Lương (phần còn lại sau khi sáp nhập vào phường Phú Lương, phường Kiến Hưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3168\",\"properties\":{\"matinhxa\":\"1.3184\",\"maxa\":3184},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bồ Đề (phường)",
- "truocsn": "Phường Ngọc Lâm, Phường Đức Giang, Phường Gia Thụy, Phường Thượng Thanh, Phường Phúc Đồng, Phường Ngọc Thụy (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Bồ Đề (phần còn lại sau khi sáp nhập vào phường Hồng Hà, phường Long Biên), Phường Long Biên (phần còn lại sau khi sáp nhập vào phường Long Biên)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3214\",\"properties\":{\"matinhxa\":\"1.3230\",\"maxa\":3230},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cầu Giấy (phường)",
- "truocsn": "Phường Dịch Vọng, Phường Dịch Vọng Hậu, Phường Quan Hoa, Phường Mỹ Đình 1, Phường Mỹ Đình 2, Phường Yên Hòa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3261\",\"properties\":{\"matinhxa\":\"1.3277\",\"maxa\":3277},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Chương Dương (xã)",
- "truocsn": "Xã Chương Dương, Xã Lê Lợi, Xã Thắng Lợi, Xã Tự Nhiên, Xã Tô Hiệu, Xã Vạn Nhất",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3171\",\"properties\":{\"matinhxa\":\"1.3187\",\"maxa\":3187},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Chương Mỹ (phường)",
- "truocsn": "Phường Biên Giang, Thị trấn Chúc Sơn, Xã Đại Yên, Xã Ngọc Hòa, Xã Phụng Châu, Xã Tiên Phương, Xã Thuỵ Hương, Phường Đồng Mai (phần còn lại sau khi sáp nhập vào phường Yên Nghĩa)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3188\",\"properties\":{\"matinhxa\":\"1.3204\",\"maxa\":3204},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Chuyên Mỹ (xã)",
- "truocsn": "Xã Tân Dân (huyện Phú Xuyên), Xã Châu Can, Xã Phú Yên, Xã Vân Từ, Xã Chuyên Mỹ",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3163\",\"properties\":{\"matinhxa\":\"1.3179\",\"maxa\":3179},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cổ Đô (xã)",
- "truocsn": "Xã Phú Cường (huyện Ba Vì), Xã Cổ Đô, Xã Phong Vân, Xã Phú Hồng, Xã Phú Đông, Xã Vạn Thắng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3223\",\"properties\":{\"matinhxa\":\"1.3239\",\"maxa\":3239},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cửa Nam (phường)",
- "truocsn": "Phường Hàng Bài, Phường Phan Chu Trinh, Phường Trần Hưng Đạo, Phường Cửa Nam, Phường Nguyễn Du, Phường Phạm Đình Hổ, Phường Hàng Bông (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm), Phường Hàng Trống (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm), Phường Tràng Tiền (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3243\",\"properties\":{\"matinhxa\":\"1.3259\",\"maxa\":3259},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đa Phúc (xã)",
- "truocsn": "Xã Bắc Phú, Xã Đức Hoà, Xã Kim Lũ, Xã Tân Hưng, Xã Việt Long, Xã Xuân Giang, Xã Xuân Thu",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3248\",\"properties\":{\"matinhxa\":\"1.3264\",\"maxa\":3264},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đại Mỗ (phường)",
- "truocsn": "Phường Đại Mỗ, Phường Dương Nội, Phường Mộ Lao, Phường Mễ Trì (phần còn lại sau khi sáp nhập vào phường Yên Hòa, phường Từ Liêm), Phường Nhân Chính (phần còn lại sau khi sáp nhập vào phường Thanh Xuân, phường Yên Hòa), Phường Trung Hòa (phần còn lại sau khi sáp nhập vào phường Thanh Xuân, phường Yên Hòa), Phường Phú Đô (phần còn lại sau khi sáp nhập vào phường Từ Liêm), Phường Trung Văn (phần còn lại sau khi sáp nhập vào phường Thanh Xuân)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3271\",\"properties\":{\"matinhxa\":\"1.3287\",\"maxa\":3287},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đại Thanh (xã)",
- "truocsn": "Xã Tam Hiệp (huyện Thanh Trì) (phần còn lại sau khi sáp nhập vào phường Hoàng Liệt), Xã Hữu Hòa (phần còn lại sau khi sáp nhập vào phường Phú Lương), Phường Kiến Hưng (phần còn lại sau khi sáp nhập vào phường Phú Lương, phường Kiến Hưng), Thị trấn Văn Điển (phần còn lại sau khi sáp nhập vào phường Hoàng Liệt, xã Thanh Trì), Xã Tả Thanh Oai (phần còn lại sau khi sáp nhập vào phường Thanh Liệt), Xã Vĩnh Quỳnh (phần còn lại sau khi sáp nhập vào xã Thanh Trì)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3196\",\"properties\":{\"matinhxa\":\"1.3212\",\"maxa\":3212},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đại Xuyên (xã)",
- "truocsn": "Xã Bạch Hạ, Xã Khai Thái, Xã Minh Tân, Xã Phúc Tiến, Xã Quang Lãng, Xã Tri Thủy, Xã Đại Xuyên",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3288\",\"properties\":{\"matinhxa\":\"1.3304\",\"maxa\":3304},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Dân Hòa (xã)",
- "truocsn": "Xã Cao Xuân Dương, Xã Hồng Dương, Xã Liên Châu, Xã Tân Ước, Xã Dân Hòa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3165\",\"properties\":{\"matinhxa\":\"1.3181\",\"maxa\":3181},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đan Phượng (xã)",
- "truocsn": "Thị trấn Phùng, Xã Đồng Tháp, Xã Song Phượng, Xã Thượng Mỗ, Xã Đan Phượng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3274\",\"properties\":{\"matinhxa\":\"1.3290\",\"maxa\":3290},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Định Công (phường)",
- "truocsn": "Phường Định Công, Phường Hoàng Liệt, Phường Thịnh Liệt, Xã Tân Triều, Xã Thanh Liệt, Phường Đại Kim, Phường Giáp Bát (phần còn lại sau khi sáp nhập vào phường Hoàng Mai, phường Tương Mai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3219\",\"properties\":{\"matinhxa\":\"1.3235\",\"maxa\":3235},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đoài Phương (xã)",
- "truocsn": "Xã Kim Sơn, Xã Sơn Đông, Xã Cổ Đông",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3201\",\"properties\":{\"matinhxa\":\"1.3217\",\"maxa\":3217},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đông Anh (xã)",
- "truocsn": "Xã Cổ Loa, Xã Đông Hội, Xã Mai Lâm, Thị trấn Đông Anh, Xã Tàm Xá, Xã Tiên Dương, Xã Vĩnh Ngọc, Xã Xuân Canh, Xã Liên Hà (huyện Đông Anh) (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Dục Tú (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Uy Nỗ (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Việt Hùng (phần còn lại sau khi sáp nhập vào xã Thư Lâm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3236\",\"properties\":{\"matinhxa\":\"1.3252\",\"maxa\":3252},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đống Đa (phường)",
- "truocsn": "Phường Thịnh Quang, Phường Quang Trung (quận Đống Đa), Phường Láng Hạ, Phường Nam Đồng, Phường Ô Chợ Dừa, Phường Trung Liệt",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3169\",\"properties\":{\"matinhxa\":\"1.3185\",\"maxa\":3185},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đông Ngạc (phường)",
- "truocsn": "Phường Đức Thắng, Phường Cổ Nhuế 2, Phường Thụy Phương, Phường Minh Khai (quận Bắc Từ Liêm), Phường Đông Ngạc (phần còn lại sau khi sáp nhập vào phường Phú Thượng), Phường Xuân Đỉnh (phần còn lại sau khi sáp nhập vào phường Phú Thượng, phường Xuân Đỉnh)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3280\",\"properties\":{\"matinhxa\":\"1.3296\",\"maxa\":3296},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Dương Hòa (xã)",
- "truocsn": "Xã Cát Quế, Xã Dương Liễu, Xã Đắc Sở, Xã Minh Khai, Xã Yên Sở",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3228\",\"properties\":{\"matinhxa\":\"1.3244\",\"maxa\":3244},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Dương Nội (phường)",
- "truocsn": "Phường Dương Nội, Phường Phú La, Phường Yên Nghĩa, Xã La Phù, Phường Đại Mỗ (phần còn lại sau khi sáp nhập vào phường Xuân Phương, phường Tây Mỗ, phường Đại Mỗ, phường Hà Đông), Phường La Khê (phần còn lại sau khi sáp nhập vào phường Hà Đông)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3199\",\"properties\":{\"matinhxa\":\"1.3215\",\"maxa\":3215},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Gia Lâm (xã)",
- "truocsn": "Xã Dương Xá, Xã Kiêu Kỵ, Thị trấn Trâu Quỳ, Phường Thạch Bàn, Xã Phú Sơn (huyện Gia Lâm), Xã Cổ Bi, Xã Đa Tốn, Xã Bát Tràng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3233\",\"properties\":{\"matinhxa\":\"1.3249\",\"maxa\":3249},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Giảng Võ (phường)",
- "truocsn": "Phường Giảng Võ, Phường Cát Linh, Phường Láng Hạ, Phường Ngọc Khánh, Phường Thành Công, Phường Cống Vị (phần còn lại sau khi sáp nhập vào phường Ngọc Hà), Phường Kim Mã (phần còn lại sau khi sáp nhập vào phường Ba Đình, phường Ngọc Hà)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3264\",\"properties\":{\"matinhxa\":\"1.3280\",\"maxa\":3280},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hạ Bằng (xã)",
- "truocsn": "Xã Cần Kiệm, Xã Đồng Trúc, Xã Bình Yên, Xã Hạ Bằng, Xã Tân Xã, Xã Phú Cát",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3279\",\"properties\":{\"matinhxa\":\"1.3295\",\"maxa\":3295},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hà Đông (phường)",
- "truocsn": "Phường Phúc La, Phường Vạn Phúc, Phường Quang Trung (quận Hà Đông), Phường Đại Mỗ, Phường Hà Cầu, Phường La Khê, Phường Văn Quán, Xã Tân Triều, Phường Mộ Lao (phần còn lại sau khi sáp nhập vào phường Đại Mỗ)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3195\",\"properties\":{\"matinhxa\":\"1.3211\",\"maxa\":3211},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hai Bà Trưng (phường)",
- "truocsn": "Phường Đồng Nhân, Phường Phố Huế, Phường Bạch Đằng, Phường Lê Đại Hành, Phường Nguyễn Du, Phường Thanh Nhàn, Phường Phạm Đình Hổ (phần còn lại sau khi sáp nhập vào phường Cửa Nam)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3254\",\"properties\":{\"matinhxa\":\"1.3270\",\"maxa\":3270},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hát Môn (xã)",
- "truocsn": "Xã Tam Hiệp (huyện Phúc Thọ), Xã Hiệp Thuận, Xã Liên Hiệp, Xã Ngọc Tảo, Xã Tam Thuấn, Xã Thanh Đa, Xã Hát Môn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3209\",\"properties\":{\"matinhxa\":\"1.3225\",\"maxa\":3225},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hòa Lạc (xã)",
- "truocsn": "Xã Tiến Xuân, Xã Thạch Hòa, Xã Cổ Đông (phần còn lại sau khi sáp nhập vào xã Đoài Phương), Xã Bình Yên (phần còn lại sau khi sáp nhập vào xã Hạ Bằng), Xã Hạ Bằng (phần còn lại sau khi sáp nhập vào xã Hạ Bằng), Xã Tân Xã (phần còn lại sau khi sáp nhập vào xã Hạ Bằng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3278\",\"properties\":{\"matinhxa\":\"1.3294\",\"maxa\":3294},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hòa Phú (xã)",
- "truocsn": "Xã Hòa Phú (huyện Chương Mỹ), Xã Đồng Lạc, Xã Hồng Phú, Xã Thượng Vực, Xã Văn Võ, Xã Kim Thư (phần còn lại sau khi sáp nhập vào xã Thanh Oai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3185\",\"properties\":{\"matinhxa\":\"1.3201\",\"maxa\":3201},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hòa Xá (xã)",
- "truocsn": "Xã Hòa Phú, Xã Thái Hòa (huyện Ứng Hòa), Xã Bình Lưu Quang, Xã Phù Lưu",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3256\",\"properties\":{\"matinhxa\":\"1.3272\",\"maxa\":3272},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hoài Đức (xã)",
- "truocsn": "Thị trấn Trạm Trôi, Xã Di Trạch, Xã Đức Giang, Xã Đức Thượng, Phường Tây Tựu, Xã Tân Lập, Xã Kim Chung (huyện Hoài Đức) (phần còn lại sau khi sáp nhập vào phường Tây Tựu)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3275\",\"properties\":{\"matinhxa\":\"1.3291\",\"maxa\":3291},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hoàn Kiếm (phường)",
- "truocsn": "Phường Hàng Bạc, Phường Hàng Bồ, Phường Hàng Buồm, Phường Hàng Đào, Phường Hàng Gai, Phường Hàng Mã, Phường Lý Thái Tổ, Phường Cửa Đông, Phường Cửa Nam, Phường Điện Biên, Phường Đồng Xuân, Phường Hàng Bông, Phường Hàng Trống, Phường Tràng Tiền",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3216\",\"properties\":{\"matinhxa\":\"1.3232\",\"maxa\":3232},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hoàng Liệt (phường)",
- "truocsn": "Phường Hoàng Liệt, Thị trấn Văn Điển, Xã Tam Hiệp (huyện Thanh Trì), Xã Thanh Liệt, Phường Đại Kim",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3227\",\"properties\":{\"matinhxa\":\"1.3243\",\"maxa\":3243},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hoàng Mai (phường)",
- "truocsn": "Phường Giáp Bát, Phường Hoàng Liệt, Phường Hoàng Văn Thụ, Phường Lĩnh Nam, Phường Tân Mai, Phường Thịnh Liệt, Phường Tương Mai, Phường Trần Phú, Phường Vĩnh Hưng, Phường Yên Sở",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3176\",\"properties\":{\"matinhxa\":\"1.3192\",\"maxa\":3192},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hồng Hà (phường)",
- "truocsn": "Phường Chương Dương, Phường Phúc Tân, Phường Phúc Xá, Phường Nhật Tân, Phường Phú Thượng, Phường Quảng An, Phường Thanh Lương, Phường Tứ Liên, Phường Yên Phụ, Phường Bồ Đề, Phường Ngọc Thụy, Phường Bạch Đằng (phần còn lại sau khi sáp nhập vào phường Hai Bà Trưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3175\",\"properties\":{\"matinhxa\":\"1.3191\",\"maxa\":3191},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hồng Sơn (xã)",
- "truocsn": "Xã Phùng Xá (huyện Mỹ Đức), Xã An Mỹ, Xã Hợp Tiến, Xã Lê Thanh, Xã Xuy Xá, Xã Hồng Sơn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3179\",\"properties\":{\"matinhxa\":\"1.3195\",\"maxa\":3195},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hồng Vân (xã)",
- "truocsn": "Xã Hà Hồi, Xã Hồng Vân, Xã Liên Phương, Xã Vân Tảo, Xã Duyên Thái (phần còn lại sau khi sáp nhập vào xã Nam Phù, xã Ngọc Hồi), Xã Ninh Sở (phần còn lại sau khi sáp nhập vào xã Nam Phù), Xã Đông Mỹ (phần còn lại sau khi sáp nhập vào xã Nam Phù)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3174\",\"properties\":{\"matinhxa\":\"1.3190\",\"maxa\":3190},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hưng Đạo (xã)",
- "truocsn": "Xã Cộng Hoà, Xã Đồng Quang, Xã Hưng Đạo",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3192\",\"properties\":{\"matinhxa\":\"1.3208\",\"maxa\":3208},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hương Sơn (xã)",
- "truocsn": "Xã An Tiến, Xã Hùng Tiến, Xã Vạn Tín, Xã Hương Sơn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3257\",\"properties\":{\"matinhxa\":\"1.3273\",\"maxa\":3273},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Khương Đình (phường)",
- "truocsn": "Phường Hạ Đình, Phường Khương Đình, Phường Khương Trung, Phường Đại Kim, Xã Tân Triều, Phường Thanh Xuân Trung (phần còn lại sau khi sáp nhập vào phường Thanh Xuân), Phường Thượng Đình (phần còn lại sau khi sáp nhập vào phường Thanh Xuân)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3218\",\"properties\":{\"matinhxa\":\"1.3234\",\"maxa\":3234},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Kiến Hưng (phường)",
- "truocsn": "Phường Kiến Hưng, Phường Phú Lương, Phường Quang Trung (quận Hà Đông) (phần còn lại sau khi sáp nhập vào phường Hà Đông), Phường Hà Cầu (phần còn lại sau khi sáp nhập vào phường Hà Đông), Phường Phú La (phần còn lại sau khi sáp nhập vào phường Dương Nội)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3200\",\"properties\":{\"matinhxa\":\"1.3216\",\"maxa\":3216},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Kiều Phú (xã)",
- "truocsn": "Xã Cấn Hữu, Xã Liệp Nghĩa, Xã Tuyết Nghĩa, Xã Ngọc Liệp (phần còn lại sau khi sáp nhập vào xã Tây Phương), Xã Quang Trung (phần còn lại sau khi sáp nhập vào xã Tây Phương), Xã Ngọc Mỹ (phần còn lại sau khi sáp nhập vào xã Quốc Oai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3191\",\"properties\":{\"matinhxa\":\"1.3207\",\"maxa\":3207},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Kim Anh (xã)",
- "truocsn": "Xã Tân Dân (huyện Sóc Sơn), Xã Minh Phú, Xã Minh Trí",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3251\",\"properties\":{\"matinhxa\":\"1.3267\",\"maxa\":3267},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Kim Liên (phường)",
- "truocsn": "Phường Kim Liên, Phường Khương Thượng, Phường Nam Đồng, Phường Phương Liên Trung Tự, Phường Trung Liệt, Phường Phương Mai (phần còn lại sau khi sáp nhập vào phường Bạch Mai), Phường Quang Trung (quận Đống Đa) (phần còn lại sau khi sáp nhập vào phường Đống Đa)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3259\",\"properties\":{\"matinhxa\":\"1.3275\",\"maxa\":3275},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Láng (phường)",
- "truocsn": "Phường Láng Thượng, Phường Láng Hạ (phần còn lại sau khi sáp nhập vào phường Giảng Võ, phường Đống Đa), Phường Ngọc Khánh (phần còn lại sau khi sáp nhập vào phường Ngọc Hà, phường Giảng Võ)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3255\",\"properties\":{\"matinhxa\":\"1.3271\",\"maxa\":3271},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Liên Minh (xã)",
- "truocsn": "Xã Phương Đình, Xã Trung Châu, Xã Thọ Xuân, Xã Thọ An, Xã Hồng Hà, Xã Tiến Thịnh",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3287\",\"properties\":{\"matinhxa\":\"1.3303\",\"maxa\":3303},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Lĩnh Nam (phường)",
- "truocsn": "Phường Lĩnh Nam, Phường Thanh Trì, Phường Trần Phú, Phường Yên Sở, Phường Thanh Lương (phần còn lại sau khi sáp nhập vào phường Vĩnh Tuy, phường Hồng Hà)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3177\",\"properties\":{\"matinhxa\":\"1.3193\",\"maxa\":3193},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Long Biên (phường)",
- "truocsn": "Phường Cự Khối, Phường Phúc Đồng, Phường Thạch Bàn, Xã Bát Tràng, Phường Long Biên, Phường Bồ Đề, Phường Gia Thụy",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3181\",\"properties\":{\"matinhxa\":\"1.3197\",\"maxa\":3197},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Mê Linh (xã)",
- "truocsn": "Xã Tráng Việt, Xã Tiền Phong (huyện Mê Linh), Xã Văn Khê, Xã Mê Linh, Xã Đại Thịnh, Xã Hồng Hà, Xã Liên Hà (huyện Đan Phượng) (phần còn lại sau khi sáp nhập vào xã Ô Diên), Xã Liên Hồng (phần còn lại sau khi sáp nhập vào xã Ô Diên), Xã Liên Trung (phần còn lại sau khi sáp nhập vào xã Ô Diên), Xã Đại Mạch (phần còn lại sau khi sáp nhập vào xã Thiên Lộc)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3240\",\"properties\":{\"matinhxa\":\"1.3256\",\"maxa\":3256},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Minh Châu (xã)",
- "truocsn": "Xã Minh Châu, Thị trấn Tây Đằng, Xã Chu Minh",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3272\",\"properties\":{\"matinhxa\":\"1.3288\",\"maxa\":3288},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Mỹ Đức (xã)",
- "truocsn": "Thị trấn Đại Nghĩa, Xã An Phú, Xã Đại Hưng, Xã Hợp Thanh, Xã Phù Lưu Tế",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3170\",\"properties\":{\"matinhxa\":\"1.3186\",\"maxa\":3186},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Nam Phù (xã)",
- "truocsn": "Xã Vạn Phúc, Xã Liên Ninh, Xã Ninh Sở, Xã Đông Mỹ, Xã Duyên Thái, Xã Ngũ Hiệp (phần còn lại sau khi sáp nhập vào xã Thanh Trì), Xã Yên Mỹ (phần còn lại sau khi sáp nhập vào xã Thanh Trì), Xã Duyên Hà (phần còn lại sau khi sáp nhập vào xã Thanh Trì)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3197\",\"properties\":{\"matinhxa\":\"1.3213\",\"maxa\":3213},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Nghĩa Đô (phường)",
- "truocsn": "Phường Nghĩa Tân, Phường Cổ Nhuế 1, Phường Mai Dịch, Phường Nghĩa Đô, Phường Xuân La, Phường Xuân Tảo, Phường Dịch Vọng (phần còn lại sau khi sáp nhập vào phường Cầu Giấy), Phường Dịch Vọng Hậu (phần còn lại sau khi sáp nhập vào phường Cầu Giấy), Phường Quan Hoa (phần còn lại sau khi sáp nhập vào phường Cầu Giấy)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3268\",\"properties\":{\"matinhxa\":\"1.3284\",\"maxa\":3284},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Ngọc Hà (phường)",
- "truocsn": "Phường Vĩnh Phúc, Phường Liễu Giai, Phường Cống Vị, Phường Kim Mã, Phường Ngọc Khánh, Phường Nghĩa Đô, Phường Đội Cấn (phần còn lại sau khi sáp nhập vào phường Ba Đình), Phường Ngọc Hà (phần còn lại sau khi sáp nhập vào phường Ba Đình)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3262\",\"properties\":{\"matinhxa\":\"1.3278\",\"maxa\":3278},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Ngọc Hồi (xã)",
- "truocsn": "Xã Ngọc Hồi, Xã Duyên Thái, Xã Đại Áng, Xã Khánh Hà, Xã Liên Ninh (phần còn lại sau khi sáp nhập vào xã Nam Phù)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3198\",\"properties\":{\"matinhxa\":\"1.3214\",\"maxa\":3214},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Nội Bài (xã)",
- "truocsn": "Xã Phú Cường (huyện Sóc Sơn), Xã Hiền Ninh, Xã Thanh Xuân, Xã Mai Đình (phần còn lại sau khi sáp nhập vào xã Sóc Sơn), Xã Phú Minh (phần còn lại sau khi sáp nhập vào xã Sóc Sơn), Xã Quang Tiến (phần còn lại sau khi sáp nhập vào xã Sóc Sơn)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3249\",\"properties\":{\"matinhxa\":\"1.3265\",\"maxa\":3265},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Ô Chợ Dừa (phường)",
- "truocsn": "Phường Cát Linh (phần còn lại sau khi sáp nhập vào phường Giảng Võ), Phường Điện Biên (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm, phường Ba Đình, phường Văn Miếu Quốc Tử Giám), Phường Thành Công (phần còn lại sau khi sáp nhập vào phường Giảng Võ), Phường Ô Chợ Dừa (phần còn lại sau khi sáp nhập vào phường Đống Đa), Phường Trung Liệt (phần còn lại sau khi sáp nhập vào phường Đống Đa, phường Kim Liên), Phường Hàng Bột (phần còn lại sau khi sáp nhập vào phường Văn Miếu Quốc Tử Giám), Phường Văn Miếu Quốc Tử Giám (phần còn lại sau khi sáp nhập vào phường Văn Miếu Quốc Tử Giám)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3245\",\"properties\":{\"matinhxa\":\"1.3261\",\"maxa\":3261},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Ô Diên (xã)",
- "truocsn": "Xã Hạ Mỗ, Xã Tân Hội, Xã Liên Hà (huyện Đan Phượng), Xã Hồng Hà, Xã Liên Hồng, Xã Liên Trung, Phường Tây Tựu (phần còn lại sau khi sáp nhập vào phường Tây Tựu, phường Đông Ngạc, phường Thượng Cát, xã Hoài Đức), Xã Tân Lập (phần còn lại sau khi sáp nhập vào xã Hoài Đức)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3229\",\"properties\":{\"matinhxa\":\"1.3245\",\"maxa\":3245},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Phú Cát (xã)",
- "truocsn": "Xã Đông Yên, Xã Hoà Thạch, Xã Phú Mãn, Xã Phú Cát (phần còn lại sau khi sáp nhập vào xã Hạ Bằng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3190\",\"properties\":{\"matinhxa\":\"1.3206\",\"maxa\":3206},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Phú Diễn (phường)",
- "truocsn": "Phường Phú Diễn, Phường Cổ Nhuế 1, Phường Mai Dịch, Phường Phúc Diễn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3284\",\"properties\":{\"matinhxa\":\"1.3300\",\"maxa\":3300},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Phù Đổng (xã)",
- "truocsn": "Thị trấn Yên Viên, Xã Ninh Hiệp, Xã Phù Đổng, Xã Thiên Đức, Xã Yên Thường, Xã Yên Viên, Xã Cổ Bi (phần còn lại sau khi sáp nhập vào phường Phúc Lợi, xã Gia Lâm), Xã Đặng Xá (phần còn lại sau khi sáp nhập vào xã Thuận An)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3182\",\"properties\":{\"matinhxa\":\"1.3198\",\"maxa\":3198},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Phú Lương (phường)",
- "truocsn": "Phường Phú Lãm, Phường Kiến Hưng, Phường Phú Lương, Xã Cự Khê, Xã Hữu Hòa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3206\",\"properties\":{\"matinhxa\":\"1.3222\",\"maxa\":3222},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Phú Nghĩa (xã)",
- "truocsn": "Xã Đông Phương Yên, Xã Đông Sơn, Xã Thanh Bình, Xã Trung Hòa, Xã Trường Yên, Xã Phú Nghĩa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3189\",\"properties\":{\"matinhxa\":\"1.3205\",\"maxa\":3205},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Phú Thượng (phường)",
- "truocsn": "Phường Đông Ngạc, Phường Xuân La, Phường Xuân Đỉnh, Phường Xuân Tảo, Phường Phú Thượng (phần còn lại sau khi sáp nhập vào phường Hồng Hà, phường Tây Hồ)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3265\",\"properties\":{\"matinhxa\":\"1.3281\",\"maxa\":3281},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Phú Xuyên (xã)",
- "truocsn": "Thị trấn Phú Minh, Thị trấn Phú Xuyên, Xã Hồng Thái, Xã Minh Cường, Xã Nam Phong, Xã Nam Tiến, Xã Quang Hà, Xã Văn Tự, Xã Tô Hiệu (phần còn lại sau khi sáp nhập vào xã Chương Dương), Xã Vạn Nhất (phần còn lại sau khi sáp nhập vào xã Chương Dương)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3162\",\"properties\":{\"matinhxa\":\"1.3178\",\"maxa\":3178},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Phúc Lộc (xã)",
- "truocsn": "Xã Nam Hà, Xã Sen Phương, Xã Vân Phúc, Xã Võng Xuyên, Xã Xuân Đình",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3217\",\"properties\":{\"matinhxa\":\"1.3233\",\"maxa\":3233},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Phúc Lợi (phường)",
- "truocsn": "Phường Thạch Bàn, Xã Cổ Bi, Phường Giang Biên (phần còn lại sau khi sáp nhập vào phường Việt Hưng), Phường Việt Hưng (phần còn lại sau khi sáp nhập vào phường Việt Hưng), Phường Phúc Lợi (phần còn lại sau khi sáp nhập vào phường Việt Hưng), Phường Phúc Đồng (phần còn lại sau khi sáp nhập vào phường Long Biên, phường Bồ Đề, phường Việt Hưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3244\",\"properties\":{\"matinhxa\":\"1.3260\",\"maxa\":3260},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Phúc Sơn (xã)",
- "truocsn": "Xã Mỹ Xuyên, Xã Phúc Lâm, Xã Thượng Lâm, Xã Tuy Lai, Xã Đồng Tâm",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3184\",\"properties\":{\"matinhxa\":\"1.3200\",\"maxa\":3200},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Phúc Thịnh (xã)",
- "truocsn": "Xã Bắc Hồng, Xã Nam Hồng, Xã Vân Nội, Xã Vĩnh Ngọc, Xã Nguyên Khê (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Xuân Nộn (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Tiên Dương (phần còn lại sau khi sáp nhập vào xã Đông Anh), Thị trấn Đông Anh (phần còn lại sau khi sáp nhập vào xã Thư Lâm, xã Đông Anh)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3239\",\"properties\":{\"matinhxa\":\"1.3255\",\"maxa\":3255},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Phúc Thọ (xã)",
- "truocsn": "Thị trấn Phúc Thọ, Xã Long Thượng, Xã Phúc Hòa, Xã Phụng Thượng, Xã Tích Lộc, Xã Trạch Mỹ Lộc",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3210\",\"properties\":{\"matinhxa\":\"1.3226\",\"maxa\":3226},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Phượng Dực (xã)",
- "truocsn": "Xã Hoàng Long, Xã Hồng Minh, Xã Phú Túc, Xã Văn Hoàng, Xã Phượng Dực",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3164\",\"properties\":{\"matinhxa\":\"1.3180\",\"maxa\":3180},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Phương Liệt (phường)",
- "truocsn": "Phường Khương Mai, Phường Thịnh Liệt (phần còn lại sau khi sáp nhập vào phường Hoàng Mai, phường Định Công, phường Yên Sở), Phường Phương Liệt (phần còn lại sau khi sáp nhập vào phường Tương Mai), Phường Định Công (phần còn lại sau khi sáp nhập vào phường Định Công), Phường Khương Đình (phần còn lại sau khi sáp nhập vào phường Khương Đình), Phường Khương Trung (phần còn lại sau khi sáp nhập vào phường Khương Đình)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3213\",\"properties\":{\"matinhxa\":\"1.3229\",\"maxa\":3229},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Quảng Bị (xã)",
- "truocsn": "Xã Hoàng Diệu, Xã Hợp Đồng, Xã Quảng Bị, Xã Tốt Động, Xã Lam Điền (phần còn lại sau khi sáp nhập vào xã Bình Minh)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3187\",\"properties\":{\"matinhxa\":\"1.3203\",\"maxa\":3203},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Quang Minh (xã)",
- "truocsn": "Thị trấn Chi Đông, Thị trấn Quang Minh, Xã Mê Linh (phần còn lại sau khi sáp nhập vào xã Mê Linh), Xã Tiền Phong (huyện Mê Linh) (phần còn lại sau khi sáp nhập vào xã Thiên Lộc, xã Mê Linh), Xã Đại Thịnh (phần còn lại sau khi sáp nhập vào xã Mê Linh, xã Tiến Thắng), Xã Kim Hoa (phần còn lại sau khi sáp nhập vào xã Tiến Thắng), Xã Thanh Lâm (phần còn lại sau khi sáp nhập vào xã Tiến Thắng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3241\",\"properties\":{\"matinhxa\":\"1.3257\",\"maxa\":3257},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Quảng Oai (xã)",
- "truocsn": "Xã Cam Thượng, Xã Đông Quang, Xã Tiên Phong, Xã Thụy An, Thị trấn Tây Đằng (phần còn lại sau khi sáp nhập vào xã Minh Châu), Xã Chu Minh (phần còn lại sau khi sáp nhập vào xã Minh Châu)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3221\",\"properties\":{\"matinhxa\":\"1.3237\",\"maxa\":3237},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quốc Oai (xã)",
- "truocsn": "Xã Thạch Thán, Xã Sài Sơn, Xã Ngọc Mỹ, Thị trấn Quốc Oai (phần còn lại sau khi sáp nhập vào xã Tây Phương), Xã Phượng Sơn (phần còn lại sau khi sáp nhập vào xã Tây Phương)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3225\",\"properties\":{\"matinhxa\":\"1.3241\",\"maxa\":3241},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Sóc Sơn (xã)",
- "truocsn": "Thị trấn Sóc Sơn, Xã Tân Minh, Xã Đông Xuân (huyện Sóc Sơn), Xã Phù Lỗ, Xã Phù Linh, Xã Tiên Dược, Xã Mai Đình, Xã Phú Minh, Xã Quang Tiến",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3247\",\"properties\":{\"matinhxa\":\"1.3263\",\"maxa\":3263},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Sơn Đồng (xã)",
- "truocsn": "Xã Lại Yên, Xã Sơn Đồng, Xã Tiền Yên, Xã An Khánh, Xã Song Phương, Xã Vân Côn, Xã An Thượng, Xã Vân Canh (phần còn lại sau khi sáp nhập vào phường Xuân Phương)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3226\",\"properties\":{\"matinhxa\":\"1.3242\",\"maxa\":3242},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Sơn Tây (phường)",
- "truocsn": "Phường Ngô Quyền, Phường Phú Thịnh, Phường Viên Sơn, Xã Đường Lâm, Phường Trung Hưng, Phường Sơn Lộc, Xã Thanh Mỹ",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3224\",\"properties\":{\"matinhxa\":\"1.3240\",\"maxa\":3240},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Suối Hai (xã)",
- "truocsn": "Xã Ba Trại, Xã Tản Lĩnh, Xã Thụy An (phần còn lại sau khi sáp nhập vào xã Quảng Oai), Xã Cẩm Lĩnh (phần còn lại sau khi sáp nhập vào xã Bất Bạt)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3212\",\"properties\":{\"matinhxa\":\"1.3228\",\"maxa\":3228},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tam Hưng (xã)",
- "truocsn": "Xã Mỹ Hưng, Xã Thanh Thùy, Xã Thanh Văn, Xã Tam Hưng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3172\",\"properties\":{\"matinhxa\":\"1.3188\",\"maxa\":3188},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tây Hồ (phường)",
- "truocsn": "Phường Bưởi, Phường Phú Thượng, Phường Xuân La, Phường Nhật Tân (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Quảng An (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Tứ Liên (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Yên Phụ (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Nghĩa Đô (phần còn lại sau khi sáp nhập vào phường Ngọc Hà, phường Nghĩa Đô), Phường Thụy Khuê (phần còn lại sau khi sáp nhập vào phường Ba Đình)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3266\",\"properties\":{\"matinhxa\":\"1.3282\",\"maxa\":3282},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tây Mỗ (phường)",
- "truocsn": "Phường Đại Mỗ, Phường Dương Nội, Xã An Khánh, Phường Tây Mỗ (phần còn lại sau khi sáp nhập vào phường Xuân Phương)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3286\",\"properties\":{\"matinhxa\":\"1.3302\",\"maxa\":3302},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tây Phương (xã)",
- "truocsn": "Xã Phùng Xá (huyện Thạch Thất), Xã Hương Ngải, Xã Lam Sơn, Xã Thạch Xá, Xã Quang Trung, Thị trấn Quốc Oai, Xã Ngọc Liệp, Xã Phượng Sơn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3202\",\"properties\":{\"matinhxa\":\"1.3218\",\"maxa\":3218},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tây Tựu (phường)",
- "truocsn": "Phường Minh Khai (quận Bắc Từ Liêm), Phường Tây Tựu, Xã Kim Chung (huyện Hoài Đức)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3281\",\"properties\":{\"matinhxa\":\"1.3297\",\"maxa\":3297},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Thạch Thất (xã)",
- "truocsn": "Thị trấn Liên Quan, Xã Cẩm Yên, Xã Đại Đồng, Xã Kim Quan, Xã Lại Thượng, Xã Phú Kim",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3204\",\"properties\":{\"matinhxa\":\"1.3220\",\"maxa\":3220},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Thanh Liệt (phường)",
- "truocsn": "Xã Tả Thanh Oai, Phường Đại Kim (phần còn lại sau khi sáp nhập vào phường Định Công, phường Hoàng Liệt, phường Khương Đình), Phường Thanh Xuân Bắc (phần còn lại sau khi sáp nhập vào phường Thanh Xuân), Phường Hạ Đình (phần còn lại sau khi sáp nhập vào phường Khương Đình), Phường Văn Quán (phần còn lại sau khi sáp nhập vào phường Hà Đông), Xã Thanh Liệt (phần còn lại sau khi sáp nhập vào phường Định Công, phường Hoàng Liệt), Xã Tân Triều (phần còn lại sau khi sáp nhập vào phường Định Công, phường Khương Đình, phường Hà Đông)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3207\",\"properties\":{\"matinhxa\":\"1.3223\",\"maxa\":3223},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Thanh Oai (xã)",
- "truocsn": "Thị trấn Kim Bài, Xã Đỗ Động, Xã Kim An, Xã Phương Trung, Xã Thanh Mai, Xã Kim Thư",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3167\",\"properties\":{\"matinhxa\":\"1.3183\",\"maxa\":3183},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Thanh Trì (xã)",
- "truocsn": "Thị trấn Văn Điển, Xã Ngũ Hiệp, Xã Vĩnh Quỳnh, Xã Yên Mỹ, Xã Duyên Hà, Xã Tứ Hiệp (phần còn lại sau khi sáp nhập vào phường Yên Sở), Phường Yên Sở (phần còn lại sau khi sáp nhập vào phường Lĩnh Nam, phường Hoàng Mai, phường Yên Sở)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3208\",\"properties\":{\"matinhxa\":\"1.3224\",\"maxa\":3224},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Thanh Xuân (phường)",
- "truocsn": "Phường Nhân Chính, Phường Thanh Xuân Bắc, Phường Thanh Xuân Trung, Phường Thượng Đình, Phường Trung Hoà, Phường Trung Văn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3215\",\"properties\":{\"matinhxa\":\"1.3231\",\"maxa\":3231},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Thiên Lộc (xã)",
- "truocsn": "Xã Võng La, Xã Kim Chung (huyện Đông Anh), Xã Đại Mạch, Xã Kim Nỗ, Xã Tiền Phong (huyện Mê Linh), Xã Hải Bối",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3237\",\"properties\":{\"matinhxa\":\"1.3253\",\"maxa\":3253},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Thư Lâm (xã)",
- "truocsn": "Xã Thụy Lâm, Xã Vân Hà, Xã Xuân Nộn, Thị trấn Đông Anh, Xã Liên Hà (huyện Đông Anh), Xã Dục Tú, Xã Nguyên Khê, Xã Uy Nỗ, Xã Việt Hùng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3238\",\"properties\":{\"matinhxa\":\"1.3254\",\"maxa\":3254},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Thuận An (xã)",
- "truocsn": "Xã Dương Quang, Xã Lệ Chi, Xã Đặng Xá, Xã Phú Sơn (huyện Gia Lâm) (phần còn lại sau khi sáp nhập vào xã Gia Lâm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3234\",\"properties\":{\"matinhxa\":\"1.3250\",\"maxa\":3250},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Thượng Cát (phường)",
- "truocsn": "Phường Liên Mạc, Phường Thượng Cát, Phường Minh Khai (quận Bắc Từ Liêm), Phường Tây Tựu, Phường Cổ Nhuế 2 (phần còn lại sau khi sáp nhập vào phường Đông Ngạc), Phường Thụy Phương (phần còn lại sau khi sáp nhập vào phường Đông Ngạc)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3273\",\"properties\":{\"matinhxa\":\"1.3289\",\"maxa\":3289},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Thượng Phúc (xã)",
- "truocsn": "Xã Tân Minh (huyện Thường Tín), Xã Dũng Tiến, Xã Quất Động, Xã Nghiêm Xuyên, Xã Nguyễn Trãi",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3166\",\"properties\":{\"matinhxa\":\"1.3182\",\"maxa\":3182},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Thường Tín (xã)",
- "truocsn": "Thị trấn Thường Tín, Xã Tiền Phong (huyện Thường Tín), Xã Hiền Giang, Xã Hòa Bình, Xã Nhị Khê, Xã Văn Bình, Xã Văn Phú, Xã Đại Áng (phần còn lại sau khi sáp nhập vào xã Ngọc Hồi), Xã Khánh Hà (phần còn lại sau khi sáp nhập vào xã Ngọc Hồi)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3173\",\"properties\":{\"matinhxa\":\"1.3189\",\"maxa\":3189},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tiến Thắng (xã)",
- "truocsn": "Xã Tam Đồng, Xã Tiến Thắng, Xã Tự Lập, Xã Đại Thịnh, Xã Kim Hoa, Xã Thanh Lâm, Xã Văn Khê (phần còn lại sau khi sáp nhập vào xã Ô Diên, xã Mê Linh, xã Yên Lãng), Xã Thạch Đà (phần còn lại sau khi sáp nhập vào xã Yên Lãng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3246\",\"properties\":{\"matinhxa\":\"1.3262\",\"maxa\":3262},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Trần Phú (xã)",
- "truocsn": "Xã Hoàng Văn Thụ, Xã Hữu Văn, Xã Mỹ Lương, Xã Trần Phú, Xã Đồng Tâm (phần còn lại sau khi sáp nhập vào xã Phúc Sơn), Xã Tân Tiến (phần còn lại sau khi sáp nhập vào xã Xuân Mai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3289\",\"properties\":{\"matinhxa\":\"1.3305\",\"maxa\":3305},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Trung Giã (xã)",
- "truocsn": "Xã Bắc Sơn, Xã Hồng Kỳ, Xã Nam Sơn, Xã Trung Giã",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3252\",\"properties\":{\"matinhxa\":\"1.3268\",\"maxa\":3268},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Từ Liêm (phường)",
- "truocsn": "Phường Cầu Diễn, Phường Mễ Trì, Phường Phú Đô, Phường Mai Dịch (phần còn lại sau khi sáp nhập vào phường Nghĩa Đô, phường Phú Diễn), Phường Mỹ Đình 1 (phần còn lại sau khi sáp nhập vào phường Cầu Giấy), Phường Mỹ Đình 2 (phần còn lại sau khi sáp nhập vào phường Cầu Giấy)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3269\",\"properties\":{\"matinhxa\":\"1.3285\",\"maxa\":3285},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Tùng Thiện (phường)",
- "truocsn": "Phường Xuân Khanh, Phường Trung Sơn Trầm, Xã Xuân Sơn, Phường Trung Hưng (phần còn lại sau khi sáp nhập vào phường Sơn Tây), Phường Sơn Lộc (phần còn lại sau khi sáp nhập vào phường Sơn Tây), Xã Thanh Mỹ (phần còn lại sau khi sáp nhập vào phường Sơn Tây)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3211\",\"properties\":{\"matinhxa\":\"1.3227\",\"maxa\":3227},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Tương Mai (phường)",
- "truocsn": "Phường Giáp Bát, Phường Phương Liệt, Phường Mai Động (phần còn lại sau khi sáp nhập vào phường Vĩnh Tuy), Phường Minh Khai (quận Hai Bà Trưng) (phần còn lại sau khi sáp nhập vào phường Bạch Mai), Phường Đồng Tâm (phần còn lại sau khi sáp nhập vào phường Bạch Mai), Phường Trương Định (phần còn lại sau khi sáp nhập vào phường Bạch Mai), Phường Hoàng Văn Thụ (phần còn lại sau khi sáp nhập vào phường Hoàng Mai), Phường Tân Mai (phần còn lại sau khi sáp nhập vào phường Hoàng Mai), Phường Tương Mai (phần còn lại sau khi sáp nhập vào phường Hoàng Mai), Phường Vĩnh Hưng (phần còn lại sau khi sáp nhập vào phường Vĩnh Tuy, phường Hoàng Mai, phường Vĩnh Hưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3194\",\"properties\":{\"matinhxa\":\"1.3210\",\"maxa\":3210},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Ứng Hòa (xã)",
- "truocsn": "Xã Đại Cường, Xã Đại Hùng, Xã Đông Lỗ, Xã Đồng Tân, Xã Kim Đường, Xã Minh Đức, Xã Trầm Lộng, Xã Trung Tú",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3178\",\"properties\":{\"matinhxa\":\"1.3194\",\"maxa\":3194},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Ứng Thiên (xã)",
- "truocsn": "Xã Hoa Viên, Xã Liên Bạt, Xã Quảng Phú Cầu, Xã Trường Thịnh",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3183\",\"properties\":{\"matinhxa\":\"1.3199\",\"maxa\":3199},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Vân Đình (xã)",
- "truocsn": "Thị trấn Vân Đình, Xã Cao Sơn Tiến, Xã Phương Tú, Xã Tảo Dương Văn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3180\",\"properties\":{\"matinhxa\":\"1.3196\",\"maxa\":3196},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Văn Miếu - Quốc Tử Giám (phường)",
- "truocsn": "Phường Khâm Thiên, Phường Thổ Quan, Phường Văn Chương, Phường Điện Biên, Phường Hàng Bột, Phường Văn Miếu Quốc Tử Giám, Phường Cửa Nam (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm, phường Cửa Nam, phường Ba Đình), Phường Lê Đại Hành (phần còn lại sau khi sáp nhập vào phường Hai Bà Trưng, phường Bạch Mai), Phường Nam Đồng (phần còn lại sau khi sáp nhập vào phường Đống Đa, phường Kim Liên), Phường Nguyễn Du (phần còn lại sau khi sáp nhập vào phường Cửa Nam, phường Hai Bà Trưng), Phường Phương Liên Trung Tự (phần còn lại sau khi sáp nhập vào phường Kim Liên)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3258\",\"properties\":{\"matinhxa\":\"1.3274\",\"maxa\":3274},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Vật Lại (xã)",
- "truocsn": "Xã Thái Hòa, Xã Phú Sơn (huyện Ba Vì), Xã Đồng Thái, Xã Phú Châu, Xã Vật Lại",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3222\",\"properties\":{\"matinhxa\":\"1.3238\",\"maxa\":3238},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Việt Hưng (phường)",
- "truocsn": "Phường Giang Biên, Phường Phúc Đồng, Phường Việt Hưng, Phường Phúc Lợi, Phường Gia Thụy (phần còn lại sau khi sáp nhập vào phường Long Biên, phường Bồ Đề), Phường Đức Giang (phần còn lại sau khi sáp nhập vào phường Bồ Đề), Phường Thượng Thanh (phần còn lại sau khi sáp nhập vào phường Bồ Đề)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3242\",\"properties\":{\"matinhxa\":\"1.3258\",\"maxa\":3258},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Vĩnh Hưng (phường)",
- "truocsn": "Phường Vĩnh Hưng, Phường Lĩnh Nam (phần còn lại sau khi sáp nhập vào phường Lĩnh Nam, phường Hoàng Mai), Phường Thanh Trì (phần còn lại sau khi sáp nhập vào phường Lĩnh Nam), Phường Vĩnh Tuy (phần còn lại sau khi sáp nhập vào phường Vĩnh Tuy)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3231\",\"properties\":{\"matinhxa\":\"1.3247\",\"maxa\":3247},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Vĩnh Thanh (xã)",
- "truocsn": "Xã Tàm Xá (phần còn lại sau khi sáp nhập vào xã Đông Anh), Xã Xuân Canh (phần còn lại sau khi sáp nhập vào xã Đông Anh), Xã Vĩnh Ngọc (phần còn lại sau khi sáp nhập vào xã Đông Anh, xã Phúc Thịnh), Xã Kim Chung (huyện Đông Anh) (phần còn lại sau khi sáp nhập vào xã Thiên Lộc), Xã Hải Bối (phần còn lại sau khi sáp nhập vào xã Thiên Lộc), Xã Kim Nỗ (phần còn lại sau khi sáp nhập vào xã Thiên Lộc)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3276\",\"properties\":{\"matinhxa\":\"1.3292\",\"maxa\":3292},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Vĩnh Tuy (phường)",
- "truocsn": "Phường Mai Động, Phường Thanh Lương, Phường Vĩnh Hưng, Phường Vĩnh Tuy",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3253\",\"properties\":{\"matinhxa\":\"1.3269\",\"maxa\":3269},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Xuân Đỉnh (phường)",
- "truocsn": "Phường Xuân Đỉnh, Phường Cổ Nhuế 1 (phần còn lại sau khi sáp nhập vào phường Nghĩa Đô, phường Phú Diễn), Phường Xuân La (phần còn lại sau khi sáp nhập vào phường Nghĩa Đô, phường Tây Hồ, phường Phú Thượng), Phường Xuân Tảo (phần còn lại sau khi sáp nhập vào phường Nghĩa Đô, phường Phú Thượng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3263\",\"properties\":{\"matinhxa\":\"1.3279\",\"maxa\":3279},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Xuân Mai (xã)",
- "truocsn": "Thị trấn Xuân Mai, Xã Nam Phương Tiến, Xã Thủy Xuân Tiên, Xã Tân Tiến",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3186\",\"properties\":{\"matinhxa\":\"1.3202\",\"maxa\":3202},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Xuân Phương (phường)",
- "truocsn": "Phường Phương Canh, Phường Xuân Phương, Phường Đại Mỗ, Phường Tây Mỗ, Xã Vân Canh, Phường Minh Khai (quận Bắc Từ Liêm) (phần còn lại sau khi sáp nhập vào phường Tây Tựu, phường Đông Ngạc, phường Thượng Cát), Phường Phúc Diễn (phần còn lại sau khi sáp nhập vào phường Phú Diễn)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3270\",\"properties\":{\"matinhxa\":\"1.3286\",\"maxa\":3286},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Yên Bài (xã)",
- "truocsn": "Xã Vân Hòa, Xã Yên Bài, Xã Thạch Hòa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3277\",\"properties\":{\"matinhxa\":\"1.3293\",\"maxa\":3293},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Yên Hòa (phường)",
- "truocsn": "Phường Mễ Trì, Phường Nhân Chính, Phường Trung Hòa, Phường Yên Hòa (phần còn lại sau khi sáp nhập vào phường Cầu Giấy)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3267\",\"properties\":{\"matinhxa\":\"1.3283\",\"maxa\":3283},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Yên Lãng (xã)",
- "truocsn": "Xã Chu Phan, Xã Hoàng Kim, Xã Liên Mạc, Xã Thạch Đà, Xã Văn Khê, Xã Tiến Thịnh (phần còn lại sau khi sáp nhập vào xã Liên Minh), Xã Trung Châu (phần còn lại sau khi sáp nhập vào xã Liên Minh), Xã Thọ Xuân (phần còn lại sau khi sáp nhập vào xã Liên Minh), Xã Thọ An (phần còn lại sau khi sáp nhập vào xã Liên Minh), Xã Hồng Hà (phần còn lại sau khi sáp nhập vào xã Liên Minh, xã Mê Linh)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3235\",\"properties\":{\"matinhxa\":\"1.3251\",\"maxa\":3251},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Yên Nghĩa (phường)",
- "truocsn": "Phường Đồng Mai, Phường Yên Nghĩa (phần còn lại sau khi sáp nhập vào phường Dương Nội)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3205\",\"properties\":{\"matinhxa\":\"1.3221\",\"maxa\":3221},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Yên Sở (phường)",
- "truocsn": "Phường Thịnh Liệt, Phường Yên Sở, Xã Tứ Hiệp, Phường Hoàng Liệt (phần còn lại sau khi sáp nhập vào phường Hoàng Mai, phường Định Công, phường Hoàng Liệt), Phường Trần Phú (phần còn lại sau khi sáp nhập vào phường Lĩnh Nam, phường Hoàng Mai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3230\",\"properties\":{\"matinhxa\":\"1.3246\",\"maxa\":3246},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Yên Xuân (xã)",
- "truocsn": "Xã Đông Xuân (huyện Quốc Oai), Xã Yên Bình, Xã Yên Trung, Xã Tiến Xuân (phần còn lại sau khi sáp nhập vào xã Hòa Lạc), Xã Thạch Hòa (phần còn lại sau khi sáp nhập vào xã Yên Bài, xã Hòa Lạc)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3193\",\"properties\":{\"matinhxa\":\"1.3209\",\"maxa\":3209},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bạch Đằng (xã)",
- "truocsn": "Xã Thịnh Vượng, Xã Bình Dương, Xã Bạch Đằng",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1240\",\"properties\":{\"matinhxa\":\"7.1251\",\"maxa\":1251},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bảo Lạc (xã)",
- "truocsn": "Thị trấn Bảo Lạc, Xã Bảo Toàn, Xã Hồng Trị",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1222\",\"properties\":{\"matinhxa\":\"7.1233\",\"maxa\":1233},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bảo Lâm (xã)",
- "truocsn": "Thị trấn Pác Miầu, Xã Mông Ân, Xã Vĩnh Phong",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1214\",\"properties\":{\"matinhxa\":\"7.1225\",\"maxa\":1225},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bế Văn Đàn (xã)",
- "truocsn": "Xã Hồng Quang, Xã Cách Linh, Xã Bế Văn Đàn",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.679\",\"properties\":{\"matinhxa\":\"7.684\",\"maxa\":684},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Ca Thành (xã)",
- "truocsn": "Xã Yên Lạc, Xã Ca Thành",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1230\",\"properties\":{\"matinhxa\":\"7.1241\",\"maxa\":1241},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cần Yên (xã)",
- "truocsn": "Xã Cần Nông, Xã Lương Thông, Xã Cần Yên",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1244\",\"properties\":{\"matinhxa\":\"7.1255\",\"maxa\":1255},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Canh Tân (xã)",
- "truocsn": "Xã Đức Thông, Xã Canh Tân",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1206\",\"properties\":{\"matinhxa\":\"7.1217\",\"maxa\":1217},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cô Ba (xã)",
- "truocsn": "Xã Thượng Hà, Xã Cô Ba",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.656\",\"properties\":{\"matinhxa\":\"7.658\",\"maxa\":658},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cốc Pàng (xã)",
- "truocsn": "Xã Đức Hạnh, Xã Cốc Pàng",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1229\",\"properties\":{\"matinhxa\":\"7.1240\",\"maxa\":1240},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Đàm Thủy (xã)",
- "truocsn": "Xã Chí Viễn, Xã Phong Châu, Xã Đàm Thủy",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.680\",\"properties\":{\"matinhxa\":\"7.685\",\"maxa\":685},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đình Phong (xã)",
- "truocsn": "Xã Ngọc Côn, Xã Ngọc Khê, Xã Phong Nặm, Xã Đình Phong",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.700\",\"properties\":{\"matinhxa\":\"7.711\",\"maxa\":711},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đoài Dương (xã)",
- "truocsn": "Xã Trung Phúc, Xã Cao Thăng, Xã Đoài Dương",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.706\",\"properties\":{\"matinhxa\":\"7.717\",\"maxa\":717},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Độc Lập (xã)",
- "truocsn": "Xã Quảng Hưng, Xã Cai Bộ, Xã Độc Lập",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.672\",\"properties\":{\"matinhxa\":\"7.675\",\"maxa\":675},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đông Khê (xã)",
- "truocsn": "Thị trấn Đông Khê, Xã Đức Xuân, Xã Trọng Con",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.674\",\"properties\":{\"matinhxa\":\"7.677\",\"maxa\":677},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đức Long (xã)",
- "truocsn": "Xã Đức Long (huyện Thạch An), Xã Thụy Hùng, Xã Lê Lợi",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.673\",\"properties\":{\"matinhxa\":\"7.676\",\"maxa\":676},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Hạ Lang (xã)",
- "truocsn": "Thị trấn Thanh Nhật, Xã Thống Nhất, Xã Thị Hoa",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.686\",\"properties\":{\"matinhxa\":\"7.691\",\"maxa\":691},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Hà Quảng (xã)",
- "truocsn": "Xã Hồng Sỹ, Xã Ngọc Đào, Xã Mã Ba",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1243\",\"properties\":{\"matinhxa\":\"7.1254\",\"maxa\":1254},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hạnh Phúc (xã)",
- "truocsn": "Xã Ngọc Động (huyện Quảng Hòa), Xã Tự Do, Xã Hạnh Phúc",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.707\",\"properties\":{\"matinhxa\":\"7.718\",\"maxa\":718},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hòa An (xã)",
- "truocsn": "Thị trấn Nước Hai, Xã Đại Tiến, Xã Hồng Việt",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1238\",\"properties\":{\"matinhxa\":\"7.1249\",\"maxa\":1249},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hưng Đạo (xã)",
- "truocsn": "Xã Hưng Thịnh, Xã Kim Cúc, Xã Hưng Đạo (huyện Bảo Lạc)",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1227\",\"properties\":{\"matinhxa\":\"7.1238\",\"maxa\":1238},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Huy Giáp (xã)",
- "truocsn": "Xã Đình Phùng, Xã Huy Giáp",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1233\",\"properties\":{\"matinhxa\":\"7.1244\",\"maxa\":1244},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Khánh Xuân (xã)",
- "truocsn": "Xã Phan Thanh (huyện Bảo Lạc), Xã Khánh Xuân",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1235\",\"properties\":{\"matinhxa\":\"7.1246\",\"maxa\":1246},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Kim Đồng (xã)",
- "truocsn": "Xã Hồng Nam, Xã Thái Cường, Xã Kim Đồng",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1207\",\"properties\":{\"matinhxa\":\"7.1218\",\"maxa\":1218},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Lũng Nặm (xã)",
- "truocsn": "Xã Thượng Thôn, Xã Lũng Nặm",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1246\",\"properties\":{\"matinhxa\":\"7.1257\",\"maxa\":1257},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Lý Bôn (xã)",
- "truocsn": "Xã Vĩnh Quang (huyện Bảo Lâm), Xã Lý Bôn",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1215\",\"properties\":{\"matinhxa\":\"7.1226\",\"maxa\":1226},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Lý Quốc (xã)",
- "truocsn": "Xã Minh Long, Xã Đồng Loan, Xã Lý Quốc",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.702\",\"properties\":{\"matinhxa\":\"7.713\",\"maxa\":713},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Minh Khai (xã)",
- "truocsn": "Xã Quang Trọng, Xã Minh Khai",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1208\",\"properties\":{\"matinhxa\":\"7.1219\",\"maxa\":1219},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Minh Tâm (xã)",
- "truocsn": "Xã Trương Lương, Xã Minh Tâm",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1212\",\"properties\":{\"matinhxa\":\"7.1223\",\"maxa\":1223},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Nam Quang (xã)",
- "truocsn": "Xã Nam Cao, Xã Nam Quang",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1216\",\"properties\":{\"matinhxa\":\"7.1227\",\"maxa\":1227},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Nam Tuấn (xã)",
- "truocsn": "Xã Đức Long (huyện Hòa An), Xã Dân Chủ, Xã Nam Tuấn",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1237\",\"properties\":{\"matinhxa\":\"7.1248\",\"maxa\":1248},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Nguyên Bình (xã)",
- "truocsn": "Thị trấn Nguyên Bình, Xã Thể Dục, Xã Vũ Minh",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1210\",\"properties\":{\"matinhxa\":\"7.1221\",\"maxa\":1221},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Nguyễn Huệ (xã)",
- "truocsn": "Xã Quang Trung (huyện Hòa An), Xã Ngũ Lão, Xã Nguyễn Huệ",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1239\",\"properties\":{\"matinhxa\":\"7.1250\",\"maxa\":1250},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Nùng Trí Cao (phường)",
- "truocsn": "Phường Ngọc Xuân, Phường Sông Bằng, Xã Vĩnh Quang (thành phố Cao Bằng)",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1219\",\"properties\":{\"matinhxa\":\"7.1230\",\"maxa\":1230},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Phan Thanh (xã)",
- "truocsn": "Xã Phan Thanh (huyện Nguyên Bình), Xã Mai Long",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1231\",\"properties\":{\"matinhxa\":\"7.1242\",\"maxa\":1242},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Phục Hòa (xã)",
- "truocsn": "Thị trấn Tà Lùng, Thị trấn Hòa Thuận, Xã Mỹ Hưng, Xã Đại Sơn",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.678\",\"properties\":{\"matinhxa\":\"7.683\",\"maxa\":683},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Quang Hán (xã)",
- "truocsn": "Xã Quang Vinh, Xã Quang Hán",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.703\",\"properties\":{\"matinhxa\":\"7.714\",\"maxa\":714},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Quảng Lâm (xã)",
- "truocsn": "Xã Thạch Lâm, Xã Quảng Lâm",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1221\",\"properties\":{\"matinhxa\":\"7.1232\",\"maxa\":1232},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Quang Long (xã)",
- "truocsn": "Xã Đức Quang, Xã Thắng Lợi, Xã Quang Long",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.701\",\"properties\":{\"matinhxa\":\"7.712\",\"maxa\":712},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Quang Trung (xã)",
- "truocsn": "Xã Quang Trung (huyện Trùng Khánh), Xã Tri Phương, Xã Xuân Nội",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.704\",\"properties\":{\"matinhxa\":\"7.715\",\"maxa\":715},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Quảng Uyên (xã)",
- "truocsn": "Thị trấn Quảng Uyên, Xã Phi Hải, Xã Phúc Sen, Xã Chí Thảo",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.671\",\"properties\":{\"matinhxa\":\"7.674\",\"maxa\":674},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Sơn Lộ (xã)",
- "truocsn": "Xã Sơn Lập, Xã Sơn Lộ",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1228\",\"properties\":{\"matinhxa\":\"7.1239\",\"maxa\":1239},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Tam Kim (xã)",
- "truocsn": "Xã Hưng Đạo (huyện Nguyên Bình), Xã Hoa Thám, Xã Tam Kim",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1213\",\"properties\":{\"matinhxa\":\"7.1224\",\"maxa\":1224},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Tân Giang (phường)",
- "truocsn": "Phường Tân Giang, Phường Duyệt Trung, Phường Hòa Chung, Xã Chu Trinh, Xã Lê Chung",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1220\",\"properties\":{\"matinhxa\":\"7.1231\",\"maxa\":1231},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Thạch An (xã)",
- "truocsn": "Xã Tiên Thành, Xã Vân Trình, Xã Lê Lai",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1247\",\"properties\":{\"matinhxa\":\"7.1258\",\"maxa\":1258},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Thành Công (xã)",
- "truocsn": "Xã Quang Thành, Xã Thành Công",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1232\",\"properties\":{\"matinhxa\":\"7.1243\",\"maxa\":1243},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Thanh Long (xã)",
- "truocsn": "Xã Ngọc Động (huyện Hà Quảng), Xã Yên Sơn, Xã Thanh Long",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1209\",\"properties\":{\"matinhxa\":\"7.1220\",\"maxa\":1220},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Thông Nông (xã)",
- "truocsn": "Thị trấn Thông Nông, Xã Đa Thông, Xã Lương Can",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1242\",\"properties\":{\"matinhxa\":\"7.1253\",\"maxa\":1253},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Thục Phán (phường)",
- "truocsn": "Phường Sông Hiến, Phường Đề Thám, Phường Hợp Giang, Xã Hưng Đạo (thành phố Cao Bằng), Xã Hoàng Tung",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1218\",\"properties\":{\"matinhxa\":\"7.1229\",\"maxa\":1229},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Tĩnh Túc (xã)",
- "truocsn": "Thị trấn Tĩnh Túc, Xã Triệu Nguyên, Xã Vũ Nông",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1211\",\"properties\":{\"matinhxa\":\"7.1222\",\"maxa\":1222},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Tổng Cọt (xã)",
- "truocsn": "Xã Nội Thôn, Xã Cải Viên, Xã Tổng Cọt",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1241\",\"properties\":{\"matinhxa\":\"7.1252\",\"maxa\":1252},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Trà Lĩnh (xã)",
- "truocsn": "Thị trấn Trà Lĩnh, Xã Cao Chương, Xã Quốc Toản",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.708\",\"properties\":{\"matinhxa\":\"7.719\",\"maxa\":719},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Trùng Khánh (xã)",
- "truocsn": "Thị trấn Trùng Khánh, Xã Đức Hồng, Xã Lăng Hiếu, Xã Khâm Thành",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.705\",\"properties\":{\"matinhxa\":\"7.716\",\"maxa\":716},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Trường Hà (xã)",
- "truocsn": "Thị trấn Xuân Hòa, Xã Quý Quân, Xã Sóc Hà, Xã Trường Hà",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1245\",\"properties\":{\"matinhxa\":\"7.1256\",\"maxa\":1256},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Vinh Quý (xã)",
- "truocsn": "Xã Cô Ngân, Xã An Lạc, Xã Kim Loan, Xã Vinh Quý",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.687\",\"properties\":{\"matinhxa\":\"7.692\",\"maxa\":692},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Xuân Trường (xã)",
- "truocsn": "Xã Hồng An, Xã Xuân Trường",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1234\",\"properties\":{\"matinhxa\":\"7.1245\",\"maxa\":1245},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Yên Thổ (xã)",
- "truocsn": "Xã Thái Học, Xã Thái Sơn, Xã Yên Thổ",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1217\",\"properties\":{\"matinhxa\":\"7.1228\",\"maxa\":1228},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Tường (phường)",
- "truocsn": "Phường Hưng Thành, Phường An Tường, Xã Lưỡng Vượng, Xã An Khang, Xã Hoàng Khai",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2355\",\"properties\":{\"matinhxa\":\"8.2369\",\"maxa\":2369},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bắc Mê (xã)",
- "truocsn": "Thị trấn Yên Phú, Xã Yên Phong, Xã Lạc Nông",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2405\",\"properties\":{\"matinhxa\":\"8.2419\",\"maxa\":2419},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bắc Quang (xã)",
- "truocsn": "Thị trấn Việt Quang, Xã Quang Minh, Xã Việt Vinh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2419\",\"properties\":{\"matinhxa\":\"8.2433\",\"maxa\":2433},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bạch Đích (xã)",
- "truocsn": "Xã Phú Lũng, Xã Na Khê, Xã Bạch Đích",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2384\",\"properties\":{\"matinhxa\":\"8.2398\",\"maxa\":2398},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bạch Ngọc (xã)",
- "truocsn": "Xã Ngọc Minh, Xã Bạch Ngọc",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2429\",\"properties\":{\"matinhxa\":\"8.2443\",\"maxa\":2443},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bạch Xa (xã)",
- "truocsn": "Xã Yên Thuận, Xã Minh Khương, Xã Bạch Xa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2339\",\"properties\":{\"matinhxa\":\"8.2353\",\"maxa\":2353},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bản Máy (xã)",
- "truocsn": "Xã Bản Phùng, Xã Chiến Phố, Xã Bản Máy",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2408\",\"properties\":{\"matinhxa\":\"8.2422\",\"maxa\":2422},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bằng Hành (xã)",
- "truocsn": "Xã Kim Ngọc, Xã Vô Điếm, Xã Bằng Hành",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2422\",\"properties\":{\"matinhxa\":\"8.2436\",\"maxa\":2436},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bằng Lang (xã)",
- "truocsn": "Xã Yên Hà, Xã Bằng Lang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2426\",\"properties\":{\"matinhxa\":\"8.2440\",\"maxa\":2440},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Thổ Bình, Xã Bình An",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2327\",\"properties\":{\"matinhxa\":\"8.2341\",\"maxa\":2341},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Ca (xã)",
- "truocsn": "Xã Thượng Ấm, Xã Cấp Tiến, Xã Vĩnh Lợi",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2361\",\"properties\":{\"matinhxa\":\"8.2375\",\"maxa\":2375},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Thuận (phường)",
- "truocsn": "Phường Đội Cấn, Xã Thái Long",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2356\",\"properties\":{\"matinhxa\":\"8.2370\",\"maxa\":2370},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bình Xa (xã)",
- "truocsn": "Xã Minh Hương, Xã Bình Xa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2342\",\"properties\":{\"matinhxa\":\"8.2356\",\"maxa\":2356},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cán Tỷ (xã)",
- "truocsn": "Xã Bát Đại Sơn, Xã Cán Tỷ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2389\",\"properties\":{\"matinhxa\":\"8.2403\",\"maxa\":2403},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cao Bồ (xã)",
- "truocsn": "xã Cao Bồ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2399\",\"properties\":{\"matinhxa\":\"8.2413\",\"maxa\":2413},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Chiêm Hóa (xã)",
- "truocsn": "Thị trấn Vĩnh Lộc, Xã Xuân Quang, Xã Phúc Thịnh, Xã Ngọc Hội, Xã Trung Hòa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2326\",\"properties\":{\"matinhxa\":\"8.2340\",\"maxa\":2340},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Côn Lôn (xã)",
- "truocsn": "Xã Sinh Long, Xã Côn Lôn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2322\",\"properties\":{\"matinhxa\":\"8.2336\",\"maxa\":2336},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đồng Tâm (xã)",
- "truocsn": "Xã Đồng Tiến, Xã Tân Phước, Xã Đồng Tâm",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2420\",\"properties\":{\"matinhxa\":\"8.2434\",\"maxa\":2434},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đông Thọ (xã)",
- "truocsn": "Xã Đồng Quý, Xã Quyết Thắng, Xã Đông Thọ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2362\",\"properties\":{\"matinhxa\":\"8.2376\",\"maxa\":2376},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đồng Văn (xã)",
- "truocsn": "Thị trấn Đồng Văn, Xã Tả Lủng (huyện Đồng Văn), Xã Tả Phìn, Xã Thài Phìn Tủng, Xã Pải Lủng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2374\",\"properties\":{\"matinhxa\":\"8.2388\",\"maxa\":2388},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đồng Yên (xã)",
- "truocsn": "Xã Vĩnh Phúc, Xã Đồng Yên",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2434\",\"properties\":{\"matinhxa\":\"8.2448\",\"maxa\":2448},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Du Già (xã)",
- "truocsn": "Xã Du Tiến, Xã Du Già",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2388\",\"properties\":{\"matinhxa\":\"8.2402\",\"maxa\":2402},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đường Hồng (xã)",
- "truocsn": "Xã Đường Âm, Xã Phú Nam, Xã Đường Hồng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2431\",\"properties\":{\"matinhxa\":\"8.2445\",\"maxa\":2445},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đường Thượng (xã)",
- "truocsn": "Xã Lũng Hồ, Xã Đường Thượng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2387\",\"properties\":{\"matinhxa\":\"8.2401\",\"maxa\":2401},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Giáp Trung (xã)",
- "truocsn": "xã Giáp Trung (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2404\",\"properties\":{\"matinhxa\":\"8.2418\",\"maxa\":2418},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hà Giang 1 (phường)",
- "truocsn": "Phường Nguyễn Trãi, Xã Phương Thiện, Xã Phương Độ, Phường Quang Trung",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2370\",\"properties\":{\"matinhxa\":\"8.2384\",\"maxa\":2384},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hà Giang 2 (phường)",
- "truocsn": "Phường Ngọc Hà, Phường Trần Phú, Phường Minh Khai, Phường Quang Trung, Xã Phong Quang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2369\",\"properties\":{\"matinhxa\":\"8.2383\",\"maxa\":2383},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hàm Yên (xã)",
- "truocsn": "Thị trấn Tân Yên, Xã Tân Thành (huyện Hàm Yên), Xã Bằng Cốc, Xã Nhân Mục",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2338\",\"properties\":{\"matinhxa\":\"8.2352\",\"maxa\":2352},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hồ Thầu (xã)",
- "truocsn": "Xã Nậm Khòa, Xã Nam Sơn, Xã Hồ Thầu",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2413\",\"properties\":{\"matinhxa\":\"8.2427\",\"maxa\":2427},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hòa An (xã)",
- "truocsn": "Xã Tân Thịnh, Xã Nhân Lý, Xã Hòa An",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2335\",\"properties\":{\"matinhxa\":\"8.2349\",\"maxa\":2349},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hoàng Su Phì (xã)",
- "truocsn": "Thị trấn Vinh Quang, Xã Bản Luốc, Xã Ngàm Đăng Vài, Xã Tụ Nhân, Xã Đản Ván",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2407\",\"properties\":{\"matinhxa\":\"8.2421\",\"maxa\":2421},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hồng Sơn (xã)",
- "truocsn": "Xã Chi Thiết, Xã Văn Phú, Xã Hồng Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2364\",\"properties\":{\"matinhxa\":\"8.2378\",\"maxa\":2378},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hồng Thái (xã)",
- "truocsn": "Xã Đà Vị, Xã Sơn Phú, Xã Hồng Thái",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2324\",\"properties\":{\"matinhxa\":\"8.2338\",\"maxa\":2338},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hùng An (xã)",
- "truocsn": "Xã Việt Hồng, Xã Tiên Kiều, Xã Hùng An",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2423\",\"properties\":{\"matinhxa\":\"8.2437\",\"maxa\":2437},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hùng Đức (xã)",
- "truocsn": "xã Hùng Đức (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2345\",\"properties\":{\"matinhxa\":\"8.2359\",\"maxa\":2359},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hùng Lợi (xã)",
- "truocsn": "Xã Trung Minh, Xã Hùng Lợi",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2349\",\"properties\":{\"matinhxa\":\"8.2363\",\"maxa\":2363},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Khâu Vai (xã)",
- "truocsn": "Xã Cán Chu Phìn, Xã Lũng Pù, Xã Khâu Vai",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2381\",\"properties\":{\"matinhxa\":\"8.2395\",\"maxa\":2395},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Khuôn Lùng (xã)",
- "truocsn": "Xã Nà Chì, Xã Khuôn Lùng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2418\",\"properties\":{\"matinhxa\":\"8.2432\",\"maxa\":2432},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Kiên Đài (xã)",
- "truocsn": "Xã Phú Bình, Xã Kiên Đài",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2333\",\"properties\":{\"matinhxa\":\"8.2347\",\"maxa\":2347},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Kiến Thiết (xã)",
- "truocsn": "xã Kiến Thiết (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2347\",\"properties\":{\"matinhxa\":\"8.2361\",\"maxa\":2361},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Kim Bình (xã)",
- "truocsn": "Xã Vinh Quang, Xã Bình Nhân, Xã Kim Bình",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2334\",\"properties\":{\"matinhxa\":\"8.2348\",\"maxa\":2348},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Lâm Bình (xã)",
- "truocsn": "Thị trấn Lăng Can, Xã Phúc Yên, Xã Xuân Lập",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2320\",\"properties\":{\"matinhxa\":\"8.2334\",\"maxa\":2334},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Lao Chải (xã)",
- "truocsn": "Xã Xín Chải, Xã Thanh Đức, Xã Lao Chải",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2398\",\"properties\":{\"matinhxa\":\"8.2412\",\"maxa\":2412},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Liên Hiệp (xã)",
- "truocsn": "Xã Hữu Sản, Xã Đức Xuân, Xã Liên Hiệp",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2433\",\"properties\":{\"matinhxa\":\"8.2447\",\"maxa\":2447},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Linh Hồ (xã)",
- "truocsn": "Xã Ngọc Linh, Xã Trung Thành, Xã Linh Hồ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2401\",\"properties\":{\"matinhxa\":\"8.2415\",\"maxa\":2415},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Lực Hành (xã)",
- "truocsn": "Xã Quý Quân, Xã Chiêu Yên, Xã Lực Hành",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2346\",\"properties\":{\"matinhxa\":\"8.2360\",\"maxa\":2360},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Lũng Cú (xã)",
- "truocsn": "Xã Má Lé, Xã Lũng Táo, Xã Lũng Cú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2373\",\"properties\":{\"matinhxa\":\"8.2387\",\"maxa\":2387},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lũng Phìn (xã)",
- "truocsn": "Xã Sủng Trái, Xã Hố Quáng Phìn, Xã Lũng Phìn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2376\",\"properties\":{\"matinhxa\":\"8.2390\",\"maxa\":2390},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Lùng Tám (xã)",
- "truocsn": "Xã Thái An, Xã Đông Hà, Xã Lùng Tám",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2392\",\"properties\":{\"matinhxa\":\"8.2406\",\"maxa\":2406},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Mậu Duệ (xã)",
- "truocsn": "Xã Ngam La, Xã Mậu Long, Xã Mậu Duệ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2385\",\"properties\":{\"matinhxa\":\"8.2399\",\"maxa\":2399},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Mèo Vạc (xã)",
- "truocsn": "Thị trấn Mèo Vạc, Xã Tả Lủng (huyện Mèo Vạc), Xã Giàng Chu Phìn, Xã Pả Vi",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2377\",\"properties\":{\"matinhxa\":\"8.2391\",\"maxa\":2391},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Minh Ngọc (xã)",
- "truocsn": "Xã Minh Ngọc, Xã Thượng Tân, Xã Yên Định",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2406\",\"properties\":{\"matinhxa\":\"8.2420\",\"maxa\":2420},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Minh Quang (xã)",
- "truocsn": "Xã Phúc Sơn, Xã Hồng Quang, Xã Minh Quang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2328\",\"properties\":{\"matinhxa\":\"8.2342\",\"maxa\":2342},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Minh Sơn (xã)",
- "truocsn": "xã Minh Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2403\",\"properties\":{\"matinhxa\":\"8.2417\",\"maxa\":2417},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Minh Tân (xã)",
- "truocsn": "xã Minh Tân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2394\",\"properties\":{\"matinhxa\":\"8.2408\",\"maxa\":2408},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Minh Thanh (xã)",
- "truocsn": "Xã Bình Yên, Xã Lương Thiện, Xã Minh Thanh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2359\",\"properties\":{\"matinhxa\":\"8.2373\",\"maxa\":2373},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Minh Xuân (phường)",
- "truocsn": "Phường Ỷ La, Phường Tân Hà, Phường Phan Thiết, Phường Minh Xuân, Phường Tân Quang, Xã Kim Phú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2317\",\"properties\":{\"matinhxa\":\"8.2331\",\"maxa\":2331},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Mỹ Lâm (phường)",
- "truocsn": "Phường Mỹ Lâm, Xã Mỹ Bằng, Xã Kim Phú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2354\",\"properties\":{\"matinhxa\":\"8.2368\",\"maxa\":2368},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Nà Hang (xã)",
- "truocsn": "Thị trấn Na Hang, Xã Năng Khả, Xã Thanh Tương",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2319\",\"properties\":{\"matinhxa\":\"8.2333\",\"maxa\":2333},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Nấm Dẩn (xã)",
- "truocsn": "Xã Chế Là, Xã Tả Nhìu, Xã Nấm Dẩn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2436\",\"properties\":{\"matinhxa\":\"8.2450\",\"maxa\":2450},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Nậm Dịch (xã)",
- "truocsn": "Xã Nậm Ty, Xã Tả Sử Choóng, Xã Nậm Dịch",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2412\",\"properties\":{\"matinhxa\":\"8.2426\",\"maxa\":2426},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Nghĩa Thuận (xã)",
- "truocsn": "Xã Thanh Vân, Xã Nghĩa Thuận",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2368\",\"properties\":{\"matinhxa\":\"8.2382\",\"maxa\":2382},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Ngọc Đường (xã)",
- "truocsn": "Xã Ngọc Đường, Xã Yên Định",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2371\",\"properties\":{\"matinhxa\":\"8.2385\",\"maxa\":2385},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Ngọc Long (xã)",
- "truocsn": "xã Ngọc Long (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2386\",\"properties\":{\"matinhxa\":\"8.2400\",\"maxa\":2400},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Nhữ Khê (xã)",
- "truocsn": "Xã Nhữ Hán, Xã Đội Bình, Xã Nhữ Khê",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2357\",\"properties\":{\"matinhxa\":\"8.2371\",\"maxa\":2371},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Niêm Sơn (xã)",
- "truocsn": "Xã Niêm Tòng, Xã Niêm Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2382\",\"properties\":{\"matinhxa\":\"8.2396\",\"maxa\":2396},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nông Tiến (phường)",
- "truocsn": "Phường Nông Tiến, Xã Tràng Đà, Xã Thái Bình",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2318\",\"properties\":{\"matinhxa\":\"8.2332\",\"maxa\":2332},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Pà Vầy Sủ (xã)",
- "truocsn": "Thị trấn Cốc Pài, Xã Nàn Ma, Xã Bản Ngò, Xã Pà Vầy Sủ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2435\",\"properties\":{\"matinhxa\":\"8.2449\",\"maxa\":2449},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Phố Bảng (xã)",
- "truocsn": "Thị trấn Phố Bảng, Xã Phố Là, Xã Phố Cáo, Xã Lũng Thầu",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2440\",\"properties\":{\"matinhxa\":\"8.2454\",\"maxa\":2454},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Phú Linh (xã)",
- "truocsn": "Xã Kim Thạch, Xã Kim Linh, Xã Phú Linh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2372\",\"properties\":{\"matinhxa\":\"8.2386\",\"maxa\":2386},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Phú Lương (xã)",
- "truocsn": "Xã Đại Phú, Xã Tam Đa, Xã Phú Lương",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2366\",\"properties\":{\"matinhxa\":\"8.2380\",\"maxa\":2380},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Phù Lưu (xã)",
- "truocsn": "Xã Minh Dân, Xã Phù Lưu",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2340\",\"properties\":{\"matinhxa\":\"8.2354\",\"maxa\":2354},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Pờ Ly Ngài (xã)",
- "truocsn": "Xã Sán Sả Hồ, Xã Nàng Đôn, Xã Pờ Ly Ngài",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2411\",\"properties\":{\"matinhxa\":\"8.2425\",\"maxa\":2425},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Quản Bạ (xã)",
- "truocsn": "Thị trấn Tam Sơn, Xã Quyết Tiến, Xã Quản Bạ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2391\",\"properties\":{\"matinhxa\":\"8.2405\",\"maxa\":2405},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Quang Bình (xã)",
- "truocsn": "Thị trấn Yên Bình, Xã Tân Nam",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2438\",\"properties\":{\"matinhxa\":\"8.2452\",\"maxa\":2452},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Quảng Nguyên (xã)",
- "truocsn": "xã Quảng Nguyên (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2417\",\"properties\":{\"matinhxa\":\"8.2431\",\"maxa\":2431},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Sà Phìn (xã)",
- "truocsn": "Xã Sủng Là, Xã Sính Lủng, Xã Sảng Tủng, Xã Sà Phìn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2375\",\"properties\":{\"matinhxa\":\"8.2389\",\"maxa\":2389},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Sơn Dương (xã)",
- "truocsn": "Thị trấn Sơn Dương, Xã Hợp Thành, Xã Phúc Ứng, Xã Tú Thịnh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2358\",\"properties\":{\"matinhxa\":\"8.2372\",\"maxa\":2372},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Sơn Thủy (xã)",
- "truocsn": "Xã Ninh Lai, Xã Thiện Kế, Xã Sơn Nam",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2365\",\"properties\":{\"matinhxa\":\"8.2379\",\"maxa\":2379},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Sơn Vĩ (xã)",
- "truocsn": "Xã Thượng Phùng, Xã Xín Cái, Xã Sơn Vĩ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2379\",\"properties\":{\"matinhxa\":\"8.2393\",\"maxa\":2393},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Sủng Máng (xã)",
- "truocsn": "Xã Lũng Chinh, Xã Sủng Trà, Xã Sủng Máng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2378\",\"properties\":{\"matinhxa\":\"8.2392\",\"maxa\":2392},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Hà Lang, Xã Tân An",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2332\",\"properties\":{\"matinhxa\":\"8.2346\",\"maxa\":2346},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tân Long (xã)",
- "truocsn": "Xã Tân Tiến (huyện Yên Sơn), Xã Tân Long",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2352\",\"properties\":{\"matinhxa\":\"8.2366\",\"maxa\":2366},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tân Mỹ (xã)",
- "truocsn": "Xã Hùng Mỹ, Xã Tân Mỹ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2330\",\"properties\":{\"matinhxa\":\"8.2344\",\"maxa\":2344},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tân Quang (xã)",
- "truocsn": "Xã Tân Thành (huyện Bắc Quang), Xã Tân Lập, Xã Tân Quang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2421\",\"properties\":{\"matinhxa\":\"8.2435\",\"maxa\":2435},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tân Thanh (xã)",
- "truocsn": "Xã Kháng Nhật, Xã Hợp Hòa, Xã Tân Thanh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2363\",\"properties\":{\"matinhxa\":\"8.2377\",\"maxa\":2377},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Tân Tiến (huyện Hoàng Su Phì), Xã Bản Nhùng, Xã Túng Sán",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2410\",\"properties\":{\"matinhxa\":\"8.2424\",\"maxa\":2424},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tân Trào (xã)",
- "truocsn": "Xã Kim Quan, Xã Trung Yên, Xã Tân Trào",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2360\",\"properties\":{\"matinhxa\":\"8.2374\",\"maxa\":2374},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tân Trịnh (xã)",
- "truocsn": "Xã Tân Bắc, Xã Tân Trịnh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2425\",\"properties\":{\"matinhxa\":\"8.2439\",\"maxa\":2439},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tát Ngà (xã)",
- "truocsn": "Xã Nậm Ban, Xã Tát Ngà",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2380\",\"properties\":{\"matinhxa\":\"8.2394\",\"maxa\":2394},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Thái Bình (xã)",
- "truocsn": "Xã Phú Thịnh, Xã Tiến Bộ, Xã Thái Bình",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2353\",\"properties\":{\"matinhxa\":\"8.2367\",\"maxa\":2367},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Thái Hòa (xã)",
- "truocsn": "Xã Đức Ninh, Xã Thái Hòa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2344\",\"properties\":{\"matinhxa\":\"8.2358\",\"maxa\":2358},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Thái Sơn (xã)",
- "truocsn": "Xã Thành Long, Xã Thái Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2343\",\"properties\":{\"matinhxa\":\"8.2357\",\"maxa\":2357},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Thắng Mố (xã)",
- "truocsn": "Xã Sủng Cháng, Xã Sủng Thài, Xã Thắng Mố",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2439\",\"properties\":{\"matinhxa\":\"8.2453\",\"maxa\":2453},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Thàng Tín (xã)",
- "truocsn": "Xã Pố Lồ, Xã Thèn Chu Phìn, Xã Thàng Tín",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2409\",\"properties\":{\"matinhxa\":\"8.2423\",\"maxa\":2423},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Thanh Thủy (xã)",
- "truocsn": "Xã Phương Tiến, Xã Thanh Thủy",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2397\",\"properties\":{\"matinhxa\":\"8.2411\",\"maxa\":2411},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Thông Nguyên (xã)",
- "truocsn": "Xã Xuân Minh, Xã Thông Nguyên",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2414\",\"properties\":{\"matinhxa\":\"8.2428\",\"maxa\":2428},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Thuận Hòa (xã)",
- "truocsn": "xã Thuận Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2395\",\"properties\":{\"matinhxa\":\"8.2409\",\"maxa\":2409},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Thượng Lâm (xã)",
- "truocsn": "Xã Khuôn Hà, Xã Thượng Lâm",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2325\",\"properties\":{\"matinhxa\":\"8.2339\",\"maxa\":2339},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Thượng Nông (xã)",
- "truocsn": "Xã Thượng Giáp, Xã Thượng Nông",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2321\",\"properties\":{\"matinhxa\":\"8.2335\",\"maxa\":2335},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Thượng Sơn (xã)",
- "truocsn": "xã Thượng Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2400\",\"properties\":{\"matinhxa\":\"8.2414\",\"maxa\":2414},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tiên Nguyên (xã)",
- "truocsn": "xã Tiên Nguyên (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2424\",\"properties\":{\"matinhxa\":\"8.2438\",\"maxa\":2438},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tiên Yên (xã)",
- "truocsn": "Xã Vĩ Thượng, Xã Hương Sơn, Xã Tiên Yên",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2428\",\"properties\":{\"matinhxa\":\"8.2442\",\"maxa\":2442},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Tri Phú (xã)",
- "truocsn": "Xã Linh Phú, Xã Tri Phú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2336\",\"properties\":{\"matinhxa\":\"8.2350\",\"maxa\":2350},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Trung Hà (xã)",
- "truocsn": "xã Trung Hà (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2329\",\"properties\":{\"matinhxa\":\"8.2343\",\"maxa\":2343},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Trung Sơn (xã)",
- "truocsn": "Xã Đạo Viện, Xã Công Đa, Xã Trung Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2350\",\"properties\":{\"matinhxa\":\"8.2364\",\"maxa\":2364},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Trung Thịnh (xã)",
- "truocsn": "Xã Cốc Rế, Xã Thu Tà, Xã Trung Thịnh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2416\",\"properties\":{\"matinhxa\":\"8.2430\",\"maxa\":2430},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Trường Sinh (xã)",
- "truocsn": "Xã Hào Phú, Xã Đông Lợi, Xã Trường Sinh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2367\",\"properties\":{\"matinhxa\":\"8.2381\",\"maxa\":2381},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Tùng Bá (xã)",
- "truocsn": "xã Tùng Bá (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2396\",\"properties\":{\"matinhxa\":\"8.2410\",\"maxa\":2410},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Tùng Vài (xã)",
- "truocsn": "Xã Cao Mã Pờ, Xã Tả Ván, Xã Tùng Vài",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2390\",\"properties\":{\"matinhxa\":\"8.2404\",\"maxa\":2404},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Vị Xuyên (xã)",
- "truocsn": "Thị trấn Vị Xuyên, Thị trấn Nông trường Việt Lâm, Xã Đạo Đức, Xã Việt Lâm",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2393\",\"properties\":{\"matinhxa\":\"8.2407\",\"maxa\":2407},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Việt Lâm (xã)",
- "truocsn": "Xã Quảng Ngần, Xã Việt Lâm",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2402\",\"properties\":{\"matinhxa\":\"8.2416\",\"maxa\":2416},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Vĩnh Tuy (xã)",
- "truocsn": "Thị trấn Vĩnh Tuy, Xã Vĩnh Hảo, Xã Đông Thành",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2432\",\"properties\":{\"matinhxa\":\"8.2446\",\"maxa\":2446},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Xín Mần (xã)",
- "truocsn": "Xã Thèn Phàng, Xã Nàn Xỉn, Xã Bản Díu, Xã Chí Cà, Xã Xín Mần",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2415\",\"properties\":{\"matinhxa\":\"8.2429\",\"maxa\":2429},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Xuân Giang (xã)",
- "truocsn": "Xã Nà Khương, Xã Xuân Giang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2427\",\"properties\":{\"matinhxa\":\"8.2441\",\"maxa\":2441},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Xuân Vân (xã)",
- "truocsn": "Xã Trung Trực, Xã Phúc Ninh, Xã Xuân Vân",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2348\",\"properties\":{\"matinhxa\":\"8.2362\",\"maxa\":2362},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Yên Cường (xã)",
- "truocsn": "Xã Phiêng Luông, Xã Yên Cường",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2430\",\"properties\":{\"matinhxa\":\"8.2444\",\"maxa\":2444},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Yên Hoa (xã)",
- "truocsn": "Xã Khâu Tinh, Xã Yên Hoa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2323\",\"properties\":{\"matinhxa\":\"8.2337\",\"maxa\":2337},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Yên Lập (xã)",
- "truocsn": "Xã Bình Phú, Xã Yên Lập",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2331\",\"properties\":{\"matinhxa\":\"8.2345\",\"maxa\":2345},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Yên Minh (xã)",
- "truocsn": "Thị trấn Yên Minh, Xã Lao Và Chải, Xã Hữu Vinh, Xã Đông Minh, Xã Vần Chải",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2383\",\"properties\":{\"matinhxa\":\"8.2397\",\"maxa\":2397},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Yên Nguyên (xã)",
- "truocsn": "Xã Hòa Phú, Xã Yên Nguyên",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2337\",\"properties\":{\"matinhxa\":\"8.2351\",\"maxa\":2351},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Yên Phú (xã)",
- "truocsn": "Xã Yên Lâm, Xã Yên Phú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2341\",\"properties\":{\"matinhxa\":\"8.2355\",\"maxa\":2355},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Yên Sơn (xã)",
- "truocsn": "Thị trấn Yên Sơn, Xã Tứ Quận, Xã Lang Quán, Xã Chân Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2351\",\"properties\":{\"matinhxa\":\"8.2365\",\"maxa\":2365},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Yên Thành (xã)",
- "truocsn": "Xã Bản Rịa, Xã Yên Thành",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2437\",\"properties\":{\"matinhxa\":\"8.2451\",\"maxa\":2451},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "A Mú Sung (xã)",
- "truocsn": "Xã Nậm Chạc, Xã A Mú Sung",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.977\",\"properties\":{\"matinhxa\":\"9.988\",\"maxa\":988},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Âu Lâu (phường)",
- "truocsn": "Phường Hợp Minh, Xã Giới Phiên, Xã Minh Quân, Xã Âu Lâu",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.847\",\"properties\":{\"matinhxa\":\"9.858\",\"maxa\":858},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bắc Hà (xã)",
- "truocsn": "Thị trấn Bắc Hà, Xã Na Hối, Xã Thải Giàng Phố, Xã Bản Phố, Xã Hoàng Thu Phố, Xã Nậm Mòn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.931\",\"properties\":{\"matinhxa\":\"9.942\",\"maxa\":942},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bản Hồ (xã)",
- "truocsn": "Xã Thanh Bình (thị xã Sa Pa), Xã Bản Hồ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1002\",\"properties\":{\"matinhxa\":\"9.1013\",\"maxa\":1013},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bản Lầu (xã)",
- "truocsn": "Xã Bản Sen, Xã Lùng Vai, Xã Bản Lầu",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.928\",\"properties\":{\"matinhxa\":\"9.939\",\"maxa\":939},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bản Liền (xã)",
- "truocsn": "Xã Nậm Khánh, Xã Bản Liền",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.934\",\"properties\":{\"matinhxa\":\"9.945\",\"maxa\":945},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bản Xèo (xã)",
- "truocsn": "Xã Pa Cheo, Xã Mường Vi, Xã Bản Xèo",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.993\",\"properties\":{\"matinhxa\":\"9.1004\",\"maxa\":1004},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bảo Ái (xã)",
- "truocsn": "Xã Cảm Ân, Xã Mông Sơn, Xã Tân Nguyên, Xã Bảo Ái",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.904\",\"properties\":{\"matinhxa\":\"9.915\",\"maxa\":915},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bảo Hà (xã)",
- "truocsn": "Xã Kim Sơn, Xã Cam Cọn, Xã Tân An, Xã Tân Thượng, Xã Bảo Hà",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.954\",\"properties\":{\"matinhxa\":\"9.965\",\"maxa\":965},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bảo Nhai (xã)",
- "truocsn": "Xã Nậm Đét, Xã Cốc Ly, Xã Bảo Nhai",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.935\",\"properties\":{\"matinhxa\":\"9.946\",\"maxa\":946},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bảo Thắng (xã)",
- "truocsn": "Thị trấn Phố Lu, Xã Sơn Hà, Xã Sơn Hải, Xã Thái Niên",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.942\",\"properties\":{\"matinhxa\":\"9.953\",\"maxa\":953},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bảo Yên (xã)",
- "truocsn": "Thị trấn Phố Ràng, Xã Yên Sơn, Xã Lương Sơn, Xã Xuân Thượng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.951\",\"properties\":{\"matinhxa\":\"9.962\",\"maxa\":962},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bát Xát (xã)",
- "truocsn": "Thị trấn Bát Xát, Xã Bản Vược, Xã Bản Qua, Xã Phìn Ngan, Xã Quang Kim",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.976\",\"properties\":{\"matinhxa\":\"9.987\",\"maxa\":987},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cam Đường (phường)",
- "truocsn": "Phường Nam Cường (thành phố Lào Cai), Phường Xuân Tăng, Phường Pom Hán, Phường Bắc Cường, Phường Bắc Lệnh, Phường Bình Minh, Xã Cam Đường",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.907\",\"properties\":{\"matinhxa\":\"9.918\",\"maxa\":918},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cảm Nhân (xã)",
- "truocsn": "Xã Xuân Long, Xã Ngọc Chấn, Xã Cảm Nhân",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.903\",\"properties\":{\"matinhxa\":\"9.914\",\"maxa\":914},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cao Sơn (xã)",
- "truocsn": "Xã Lùng Khấu Nhin, Xã Tả Thàng, Xã La Pan Tẩn, Xã Cao Sơn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.926\",\"properties\":{\"matinhxa\":\"9.937\",\"maxa\":937},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Cát Thịnh (xã)",
- "truocsn": "xã Cát Thịnh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.896\",\"properties\":{\"matinhxa\":\"9.907\",\"maxa\":907},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cầu Thia (phường)",
- "truocsn": "Phường Cầu Thia, Xã Thanh Lương, Xã Thạch Lương, Xã Phúc Sơn, Xã Hạnh Sơn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.712\",\"properties\":{\"matinhxa\":\"9.723\",\"maxa\":723},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Chấn Thịnh (xã)",
- "truocsn": "Xã Tân Thịnh (huyện Văn Chấn), Xã Đại Lịch, Xã Chấn Thịnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.897\",\"properties\":{\"matinhxa\":\"9.908\",\"maxa\":908},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Châu Quế (xã)",
- "truocsn": "Xã Châu Quế Thượng, Xã Châu Quế Hạ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.802\",\"properties\":{\"matinhxa\":\"9.813\",\"maxa\":813},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Chế Tạo (xã)",
- "truocsn": "xã Chế Tạo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.842\",\"properties\":{\"matinhxa\":\"9.853\",\"maxa\":853},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Chiềng Ken (xã)",
- "truocsn": "Xã Nậm Tha, Xã Chiềng Ken",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.961\",\"properties\":{\"matinhxa\":\"9.972\",\"maxa\":972},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Cốc Lầu (xã)",
- "truocsn": "Xã Nậm Lúc, Xã Bản Cái, Xã Cốc Lầu",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.939\",\"properties\":{\"matinhxa\":\"9.950\",\"maxa\":950},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Cốc San (xã)",
- "truocsn": "Xã Đồng Tuyển, Xã Tòng Sành, Xã Cốc San",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.995\",\"properties\":{\"matinhxa\":\"9.1006\",\"maxa\":1006},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Dền Sáng (xã)",
- "truocsn": "Xã Dền Thàng, Xã Sàng Ma Sáo, Xã Dền Sáng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.992\",\"properties\":{\"matinhxa\":\"9.1003\",\"maxa\":1003},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đông Cuông (xã)",
- "truocsn": "Xã Quang Minh, Xã An Bình, Xã Đông An, Xã Đông Cuông",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.803\",\"properties\":{\"matinhxa\":\"9.814\",\"maxa\":814},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Dương Quỳ (xã)",
- "truocsn": "Xã Thẳm Dương, Xã Dương Quỳ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.973\",\"properties\":{\"matinhxa\":\"9.984\",\"maxa\":984},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Gia Hội (xã)",
- "truocsn": "Xã Nậm Búng, Xã Nậm Lành, Xã Gia Hội",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.893\",\"properties\":{\"matinhxa\":\"9.904\",\"maxa\":904},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Gia Phú (xã)",
- "truocsn": "Xã Xuân Giao, Xã Thống Nhất, Xã Gia Phú",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.946\",\"properties\":{\"matinhxa\":\"9.957\",\"maxa\":957},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hạnh Phúc (xã)",
- "truocsn": "Thị trấn Trạm Tấu, Xã Bản Công, Xã Hát Lừu, Xã Xà Hồ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.867\",\"properties\":{\"matinhxa\":\"9.878\",\"maxa\":878},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hợp Thành (xã)",
- "truocsn": "Xã Tả Phời, Xã Hợp Thành",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.923\",\"properties\":{\"matinhxa\":\"9.934\",\"maxa\":934},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hưng Khánh (xã)",
- "truocsn": "Xã Hồng Ca, Xã Hưng Khánh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.849\",\"properties\":{\"matinhxa\":\"9.860\",\"maxa\":860},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Khánh Hòa (xã)",
- "truocsn": "Xã Tô Mậu, Xã An Lạc, Xã Động Quan, Xã Khánh Hòa",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.717\",\"properties\":{\"matinhxa\":\"9.728\",\"maxa\":728},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Khánh Yên (xã)",
- "truocsn": "Xã Khánh Yên Trung, Xã Liêm Phú, Xã Khánh Yên Hạ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.972\",\"properties\":{\"matinhxa\":\"9.983\",\"maxa\":983},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Khao Mang (xã)",
- "truocsn": "Xã Hồ Bốn, Xã Khao Mang",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.840\",\"properties\":{\"matinhxa\":\"9.851\",\"maxa\":851},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Lâm Giang (xã)",
- "truocsn": "Xã Lang Thíp, Xã Lâm Giang",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.801\",\"properties\":{\"matinhxa\":\"9.812\",\"maxa\":812},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Lâm Thượng (xã)",
- "truocsn": "Xã Mai Sơn, Xã Khánh Thiện, Xã Tân Phượng, Xã Lâm Thượng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.714\",\"properties\":{\"matinhxa\":\"9.725\",\"maxa\":725},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lào Cai (phường)",
- "truocsn": "Phường Duyên Hải, Phường Cốc Lếu, Phường Kim Tân, Phường Lào Cai, Xã Vạn Hòa, Xã Bản Phiệt",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.975\",\"properties\":{\"matinhxa\":\"9.986\",\"maxa\":986},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lao Chải (xã)",
- "truocsn": "xã Lao Chải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.841\",\"properties\":{\"matinhxa\":\"9.852\",\"maxa\":852},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Liên Sơn (xã)",
- "truocsn": "Thị trấn Nông trường Liên Sơn, Xã Sơn A, Xã Nghĩa Phúc",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.889\",\"properties\":{\"matinhxa\":\"9.900\",\"maxa\":900},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lục Yên (xã)",
- "truocsn": "Thị trấn Yên Thế, Xã Minh Xuân, Xã Yên Thắng, Xã Liễu Đô",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.713\",\"properties\":{\"matinhxa\":\"9.724\",\"maxa\":724},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Lùng Phình (xã)",
- "truocsn": "Xã Tả Van Chư, Xã Lùng Phình, Xã Lùng Thẩn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.932\",\"properties\":{\"matinhxa\":\"9.943\",\"maxa\":943},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Lương Thịnh (xã)",
- "truocsn": "Xã Hưng Thịnh, Xã Lương Thịnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.846\",\"properties\":{\"matinhxa\":\"9.857\",\"maxa\":857},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Mậu A (xã)",
- "truocsn": "Thị trấn Mậu A, Xã Yên Thái, Xã An Thịnh, Xã Mậu Đông, Xã Ngòi A",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.756\",\"properties\":{\"matinhxa\":\"9.767\",\"maxa\":767},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Minh Lương (xã)",
- "truocsn": "Xã Nậm Xây, Xã Minh Lương",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.974\",\"properties\":{\"matinhxa\":\"9.985\",\"maxa\":985},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Mỏ Vàng (xã)",
- "truocsn": "Xã An Lương, Xã Mỏ Vàng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.837\",\"properties\":{\"matinhxa\":\"9.848\",\"maxa\":848},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Mù Cang Chải (xã)",
- "truocsn": "Thị trấn Mù Cang Chải, Xã Kim Nọi, Xã Mồ Dề, Xã Chế Cu Nha",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.838\",\"properties\":{\"matinhxa\":\"9.849\",\"maxa\":849},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Mường Bo (xã)",
- "truocsn": "Xã Liên Minh, Xã Mường Bo",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.956\",\"properties\":{\"matinhxa\":\"9.967\",\"maxa\":967},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mường Hum (xã)",
- "truocsn": "Xã Nậm Pung, Xã Trung Lèng Hồ, Xã Mường Hum",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.994\",\"properties\":{\"matinhxa\":\"9.1005\",\"maxa\":1005},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Mường Khương (xã)",
- "truocsn": "Thị trấn Mường Khương, Xã Thanh Bình (huyện Mường Khương), Xã Nậm Chảy, Xã Tung Chung Phố, Xã Nấm Lư",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.925\",\"properties\":{\"matinhxa\":\"9.936\",\"maxa\":936},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Mường Lai (xã)",
- "truocsn": "Xã An Phú, Xã Vĩnh Lạc, Xã Minh Tiến, Xã Mường Lai",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.715\",\"properties\":{\"matinhxa\":\"9.726\",\"maxa\":726},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Nậm Chày (xã)",
- "truocsn": "Xã Dần Thàng, Xã Nậm Chày",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.959\",\"properties\":{\"matinhxa\":\"9.970\",\"maxa\":970},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Nậm Có (xã)",
- "truocsn": "xã Nậm Có (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.839\",\"properties\":{\"matinhxa\":\"9.850\",\"maxa\":850},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Nam Cường (phường)",
- "truocsn": "Phường Nam Cường (thành phố Yên Bái), Xã Minh Bảo, Xã Tuy Lộc, Xã Cường Thịnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.710\",\"properties\":{\"matinhxa\":\"9.721\",\"maxa\":721},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Nậm Xé (xã)",
- "truocsn": "xã Nậm Xé (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.960\",\"properties\":{\"matinhxa\":\"9.971\",\"maxa\":971},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Nghĩa Đô (xã)",
- "truocsn": "Xã Tân Tiến, Xã Vĩnh Yên, Xã Nghĩa Đô",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.948\",\"properties\":{\"matinhxa\":\"9.959\",\"maxa\":959},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Nghĩa Lộ (phường)",
- "truocsn": "Phường Tân An, Phường Pú Trạng, Xã Nghĩa An, Xã Nghĩa Sơn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.906\",\"properties\":{\"matinhxa\":\"9.917\",\"maxa\":917},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Nghĩa Tâm (xã)",
- "truocsn": "Xã Bình Thuận, Xã Minh An, Xã Nghĩa Tâm",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.900\",\"properties\":{\"matinhxa\":\"9.911\",\"maxa\":911},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Ngũ Chỉ Sơn (xã)",
- "truocsn": "xã Ngũ Chỉ Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.997\",\"properties\":{\"matinhxa\":\"9.1008\",\"maxa\":1008},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Pha Long (xã)",
- "truocsn": "Xã Tả Ngài Chồ, Xã Dìn Chin, Xã Tả Gia Khâu, Xã Pha Long",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.924\",\"properties\":{\"matinhxa\":\"9.935\",\"maxa\":935},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phình Hồ (xã)",
- "truocsn": "Xã Làng Nhì, Xã Bản Mù, Xã Phình Hồ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.868\",\"properties\":{\"matinhxa\":\"9.879\",\"maxa\":879},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phong Dụ Hạ (xã)",
- "truocsn": "Xã Xuân Tầm, Xã Phong Dụ Hạ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.804\",\"properties\":{\"matinhxa\":\"9.815\",\"maxa\":815},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phong Dụ Thượng (xã)",
- "truocsn": "xã Phong Dụ Thượng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.806\",\"properties\":{\"matinhxa\":\"9.817\",\"maxa\":817},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Phong Hải (xã)",
- "truocsn": "Thị trấn Nông trường Phong Hải, Xã Bản Cầm",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.940\",\"properties\":{\"matinhxa\":\"9.951\",\"maxa\":951},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Phúc Khánh (xã)",
- "truocsn": "Xã Việt Tiến, Xã Phúc Khánh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.955\",\"properties\":{\"matinhxa\":\"9.966\",\"maxa\":966},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Phúc Lợi (xã)",
- "truocsn": "Xã Trúc Lâu, Xã Trung Tâm, Xã Phúc Lợi",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.755\",\"properties\":{\"matinhxa\":\"9.766\",\"maxa\":766},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Púng Luông (xã)",
- "truocsn": "Xã Nậm Khắt, Xã La Pán Tẩn, Xã Dế Xu Phình, Xã Púng Luông",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.843\",\"properties\":{\"matinhxa\":\"9.854\",\"maxa\":854},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Quy Mông (xã)",
- "truocsn": "Xã Kiên Thành, Xã Y Can, Xã Quy Mông",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.845\",\"properties\":{\"matinhxa\":\"9.856\",\"maxa\":856},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Sa Pa (phường)",
- "truocsn": "Phường Hàm Rồng, Phường Ô Quý Hồ, Phường Sa Pả, Phường Cầu Mây, Phường Phan Si Păng, Phường Sa Pa",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.996\",\"properties\":{\"matinhxa\":\"9.1007\",\"maxa\":1007},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Si Ma Cai (xã)",
- "truocsn": "Thị trấn Si Ma Cai, Xã Sán Chải, Xã Nàn Sán, Xã Cán Cấu, Xã Quan Hồ Thẩn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.929\",\"properties\":{\"matinhxa\":\"9.940\",\"maxa\":940},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Sín Chéng (xã)",
- "truocsn": "Xã Bản Mế, Xã Thào Chư Phìn, Xã Nàn Sín, Xã Sín Chéng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.930\",\"properties\":{\"matinhxa\":\"9.941\",\"maxa\":941},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Sơn Lương (xã)",
- "truocsn": "Xã Nậm Mười, Xã Sùng Đô, Xã Suối Quyền, Xã Sơn Lương",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.894\",\"properties\":{\"matinhxa\":\"9.905\",\"maxa\":905},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tả Củ Tỷ (xã)",
- "truocsn": "Xã Lùng Cải, Xã Tả Củ Tỷ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.933\",\"properties\":{\"matinhxa\":\"9.944\",\"maxa\":944},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tả Phìn (xã)",
- "truocsn": "Xã Trung Chải, Xã Tả Phìn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.998\",\"properties\":{\"matinhxa\":\"9.1009\",\"maxa\":1009},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Tả Van (xã)",
- "truocsn": "Xã Hoàng Liên, Xã Mường Hoa, Xã Tả Van",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.999\",\"properties\":{\"matinhxa\":\"9.1010\",\"maxa\":1010},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tà Xi Láng (xã)",
- "truocsn": "xã Tà Xi Láng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.888\",\"properties\":{\"matinhxa\":\"9.899\",\"maxa\":899},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tân Hợp (xã)",
- "truocsn": "Xã Đại Sơn, Xã Nà Hẩu, Xã Tân Hợp",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.805\",\"properties\":{\"matinhxa\":\"9.816\",\"maxa\":816},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Tân Lĩnh (xã)",
- "truocsn": "Xã Minh Chuẩn, Xã Tân Lập, Xã Phan Thanh, Xã Khai Trung, Xã Tân Lĩnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.716\",\"properties\":{\"matinhxa\":\"9.727\",\"maxa\":727},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Tằng Loỏng (xã)",
- "truocsn": "Thị trấn Tằng Loỏng, Xã Phú Nhuận",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.943\",\"properties\":{\"matinhxa\":\"9.954\",\"maxa\":954},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thác Bà (xã)",
- "truocsn": "Thị trấn Thác Bà, Xã Vũ Linh, Xã Bạch Hà, Xã Hán Đà, Xã Vĩnh Kiên, Xã Đại Minh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.902\",\"properties\":{\"matinhxa\":\"9.913\",\"maxa\":913},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thượng Bằng La (xã)",
- "truocsn": "Thị trấn Nông trường Trần Phú, Xã Thượng Bằng La",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.899\",\"properties\":{\"matinhxa\":\"9.910\",\"maxa\":910},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Thượng Hà (xã)",
- "truocsn": "Xã Điện Quan, Xã Minh Tân, Xã Thượng Hà",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.950\",\"properties\":{\"matinhxa\":\"9.961\",\"maxa\":961},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trạm Tấu (xã)",
- "truocsn": "Xã Pá Lau, Xã Pá Hu, Xã Túc Đán, Xã Trạm Tấu",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.887\",\"properties\":{\"matinhxa\":\"9.898\",\"maxa\":898},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Trấn Yên (xã)",
- "truocsn": "Thị trấn Cổ Phúc, Xã Báo Đáp, Xã Tân Đồng, Xã Thành Thịnh, Xã Hòa Cuông, Xã Minh Quán",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.844\",\"properties\":{\"matinhxa\":\"9.855\",\"maxa\":855},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Trịnh Tường (xã)",
- "truocsn": "Xã Cốc Mỳ, Xã Trịnh Tường",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.990\",\"properties\":{\"matinhxa\":\"9.1001\",\"maxa\":1001},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Trung Tâm (phường)",
- "truocsn": "Phường Trung Tâm, Xã Phù Nham, Xã Nghĩa Lợi, Xã Nghĩa Lộ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.711\",\"properties\":{\"matinhxa\":\"9.722\",\"maxa\":722},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tú Lệ (xã)",
- "truocsn": "Xã Cao Phạ, Xã Tú Lệ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.890\",\"properties\":{\"matinhxa\":\"9.901\",\"maxa\":901},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Văn Bàn (xã)",
- "truocsn": "Thị trấn Khánh Yên, Xã Khánh Yên Thượng, Xã Sơn Thuỷ, Xã Làng Giàng, Xã Hòa Mạc",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.957\",\"properties\":{\"matinhxa\":\"9.968\",\"maxa\":968},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Văn Chấn (xã)",
- "truocsn": "Thị trấn Sơn Thịnh, Xã Đồng Khê, Xã Suối Bu, Xã Suối Giàng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.895\",\"properties\":{\"matinhxa\":\"9.906\",\"maxa\":906},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Văn Phú (phường)",
- "truocsn": "Phường Yên Thịnh, Xã Tân Thịnh (thành phố Yên Bái), Xã Văn Phú, Xã Phú Thịnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.848\",\"properties\":{\"matinhxa\":\"9.859\",\"maxa\":859},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Việt Hồng (xã)",
- "truocsn": "Xã Việt Cường, Xã Vân Hội, Xã Việt Hồng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.866\",\"properties\":{\"matinhxa\":\"9.877\",\"maxa\":877},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Võ Lao (xã)",
- "truocsn": "Xã Nậm Mả, Xã Nậm Dạng, Xã Võ Lao",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.958\",\"properties\":{\"matinhxa\":\"9.969\",\"maxa\":969},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Xuân Ái (xã)",
- "truocsn": "Xã Đại Phác, Xã Yên Phú, Xã Yên Hợp, Xã Viễn Sơn, Xã Xuân Ái",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.822\",\"properties\":{\"matinhxa\":\"9.833\",\"maxa\":833},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Xuân Hòa (xã)",
- "truocsn": "Xã Tân Dương, Xã Xuân Hòa",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.949\",\"properties\":{\"matinhxa\":\"9.960\",\"maxa\":960},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Xuân Quang (xã)",
- "truocsn": "Xã Phong Niên, Xã Trì Quang, Xã Xuân Quang",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.947\",\"properties\":{\"matinhxa\":\"9.958\",\"maxa\":958},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Y Tý (xã)",
- "truocsn": "Xã A Lù, Xã Y Tý",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.991\",\"properties\":{\"matinhxa\":\"9.1002\",\"maxa\":1002},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Yên Bái (phường)",
- "truocsn": "Phường Đồng Tâm, Phường Yên Ninh, Phường Minh Tân, Phường Nguyễn Thái Học, Phường Hồng Hà",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.709\",\"properties\":{\"matinhxa\":\"9.720\",\"maxa\":720},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Yên Bình (xã)",
- "truocsn": "Thị trấn Yên Bình, Xã Tân Hương, Xã Thịnh Hưng, Xã Đại Đồng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.901\",\"properties\":{\"matinhxa\":\"9.912\",\"maxa\":912},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Yên Thành (xã)",
- "truocsn": "Xã Phúc Ninh, Xã Mỹ Gia, Xã Xuân Lai, Xã Phúc An, Xã Yên Thành",
- "provinceName": "tỉnh Lào Cai"
- },
- {
- "stt": "1",
- "ten": "Búng Lao (xã)",
- "truocsn": "Xã Ẳng Tở, Xã Chiềng Đông, Xã Búng Lao",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2265\",\"properties\":{\"matinhxa\":\"13.2279\",\"maxa\":2279},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Chà Tở (xã)",
- "truocsn": "Xã Nậm Khăn, Xã Chà Tở",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2244\",\"properties\":{\"matinhxa\":\"13.2258\",\"maxa\":2258},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Chiềng Sinh (xã)",
- "truocsn": "Xã Nà Sáy, Xã Mường Thín, Xã Mường Khong, Xã Chiềng Sinh",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2262\",\"properties\":{\"matinhxa\":\"13.2276\",\"maxa\":2276},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Điện Biên Phủ (phường)",
- "truocsn": "Phường Him Lam, Phường Tân Thanh, Phường Mường Thanh, Phường Thanh Bình, Phường Thanh Trường, Xã Thanh Minh",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2233\",\"properties\":{\"matinhxa\":\"13.2247\",\"maxa\":2247},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Mường Ảng (xã)",
- "truocsn": "Thị trấn Mường Ảng, Xã Ẳng Nưa, Xã Ẳng Cang",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2259\",\"properties\":{\"matinhxa\":\"13.2273\",\"maxa\":2273},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Mường Chà (xã)",
- "truocsn": "Xã Chà Cang, Xã Chà Nưa, Xã Nậm Tin, Xã Pa Tần",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2236\",\"properties\":{\"matinhxa\":\"13.2250\",\"maxa\":2250},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Mường Lạn (xã)",
- "truocsn": "Xã Nặm Lịch, Xã Xuân Lao, Xã Mường Lạn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2266\",\"properties\":{\"matinhxa\":\"13.2280\",\"maxa\":2280},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Mường Lay (phường)",
- "truocsn": "Phường Sông Đà, Phường Na Lay, Xã Lay Nưa, Xã Sá Tổng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2234\",\"properties\":{\"matinhxa\":\"13.2248\",\"maxa\":2248},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Mường Luân (xã)",
- "truocsn": "Xã Chiềng Sơ, Xã Luân Giói, Xã Mường Luân",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2252\",\"properties\":{\"matinhxa\":\"13.2266\",\"maxa\":2266},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Mường Mùn (xã)",
- "truocsn": "Xã Mùn Chung, Xã Pú Xi, Xã Mường Mùn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2261\",\"properties\":{\"matinhxa\":\"13.2275\",\"maxa\":2275},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Mường Nhà (xã)",
- "truocsn": "Xã Mường Lói, Xã Phu Luông, Xã Mường Nhà",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2273\",\"properties\":{\"matinhxa\":\"13.2287\",\"maxa\":2287},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Mường Nhé (xã)",
- "truocsn": "Xã Nậm Vì, Xã Chung Chải, Xã Mường Nhé",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2237\",\"properties\":{\"matinhxa\":\"13.2251\",\"maxa\":2251},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Mường Phăng (xã)",
- "truocsn": "Xã Nà Nhạn, Xã Pá Khoang, Xã Mường Phăng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2267\",\"properties\":{\"matinhxa\":\"13.2281\",\"maxa\":2281},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Mường Pồn (xã)",
- "truocsn": "Xã Mường Mươn, Xã Mường Pồn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2249\",\"properties\":{\"matinhxa\":\"13.2263\",\"maxa\":2263},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Mường Thanh (phường)",
- "truocsn": "Phường Noong Bua, Phường Nam Thanh, Xã Thanh Xương",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2232\",\"properties\":{\"matinhxa\":\"13.2246\",\"maxa\":2246},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Mường Toong (xã)",
- "truocsn": "Xã Huổi Lếch, Xã Mường Toong",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2239\",\"properties\":{\"matinhxa\":\"13.2253\",\"maxa\":2253},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Mường Tùng (xã)",
- "truocsn": "Xã Huổi Lèng, Xã Mường Tùng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2245\",\"properties\":{\"matinhxa\":\"13.2259\",\"maxa\":2259},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Nà Bủng (xã)",
- "truocsn": "Xã Vàng Đán, Xã Nà Bủng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2242\",\"properties\":{\"matinhxa\":\"13.2256\",\"maxa\":2256},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Nà Hỳ (xã)",
- "truocsn": "Xã Nà Khoa, Xã Nậm Nhừ, Xã Nậm Chua, Xã Nà Hỳ",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2241\",\"properties\":{\"matinhxa\":\"13.2255\",\"maxa\":2255},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Na Sang (xã)",
- "truocsn": "Thị trấn Mường Chà, Xã Ma Thì Hồ, Xã Sa Lông, Xã Na Sang",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2243\",\"properties\":{\"matinhxa\":\"13.2257\",\"maxa\":2257},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Na Son (xã)",
- "truocsn": "Thị trấn Điện Biên Đông, Xã Keo Lôm, Xã Na Son",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2250\",\"properties\":{\"matinhxa\":\"13.2264\",\"maxa\":2264},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Nà Tấu (xã)",
- "truocsn": "Xã Mường Đăng, Xã Ngối Cáy, Xã Nà Tấu",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2264\",\"properties\":{\"matinhxa\":\"13.2278\",\"maxa\":2278},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Nậm Kè (xã)",
- "truocsn": "Xã Pá Mỳ, Xã Nậm Kè",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2238\",\"properties\":{\"matinhxa\":\"13.2252\",\"maxa\":2252},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Nậm Nèn (xã)",
- "truocsn": "Xã Huổi Mí, Xã Nậm Nèn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2247\",\"properties\":{\"matinhxa\":\"13.2261\",\"maxa\":2261},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Núa Ngam (xã)",
- "truocsn": "Xã Hẹ Muông, Xã Na Tông, Xã Núa Ngam",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2272\",\"properties\":{\"matinhxa\":\"13.2286\",\"maxa\":2286},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Pa Ham (xã)",
- "truocsn": "Xã Hừa Ngài, Xã Pa Ham",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2246\",\"properties\":{\"matinhxa\":\"13.2260\",\"maxa\":2260},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Phình Giàng (xã)",
- "truocsn": "Xã Pú Hồng, Xã Phình Giàng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2275\",\"properties\":{\"matinhxa\":\"13.2289\",\"maxa\":2289},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Pu Nhi (xã)",
- "truocsn": "Xã Nong U, Xã Pu Nhi",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2274\",\"properties\":{\"matinhxa\":\"13.2288\",\"maxa\":2288},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Pú Nhung (xã)",
- "truocsn": "Xã Rạng Đông, Xã Ta Ma, Xã Pú Nhung",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2260\",\"properties\":{\"matinhxa\":\"13.2274\",\"maxa\":2274},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Quài Tở (xã)",
- "truocsn": "Xã Tỏa Tình, Xã Tênh Phông, Xã Quài Tở",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2263\",\"properties\":{\"matinhxa\":\"13.2277\",\"maxa\":2277},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Quảng Lâm (xã)",
- "truocsn": "Xã Na Cô Sa, Xã Quảng Lâm",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2240\",\"properties\":{\"matinhxa\":\"13.2254\",\"maxa\":2254},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Sam Mứn (xã)",
- "truocsn": "Xã Pom Lót, Xã Na Ư",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2271\",\"properties\":{\"matinhxa\":\"13.2285\",\"maxa\":2285},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Sáng Nhè (xã)",
- "truocsn": "Xã Xá Nhè, Xã Mường Đun, Xã Phình Sáng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2257\",\"properties\":{\"matinhxa\":\"13.2271\",\"maxa\":2271},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Si Pa Phìn (xã)",
- "truocsn": "Xã Phìn Hồ, Xã Si Pa Phìn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2248\",\"properties\":{\"matinhxa\":\"13.2262\",\"maxa\":2262},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Sín Chải (xã)",
- "truocsn": "Xã Tả Sìn Thàng, Xã Lao Xả Phình, Xã Sín Chải",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2255\",\"properties\":{\"matinhxa\":\"13.2269\",\"maxa\":2269},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Sín Thầu (xã)",
- "truocsn": "Xã Sen Thượng, Xã Leng Su Sìn, Xã Sín Thầu",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2235\",\"properties\":{\"matinhxa\":\"13.2249\",\"maxa\":2249},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Sính Phình (xã)",
- "truocsn": "Xã Trung Thu, Xã Tả Phìn, Xã Sính Phình",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2256\",\"properties\":{\"matinhxa\":\"13.2270\",\"maxa\":2270},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Thanh An (xã)",
- "truocsn": "Xã Noong Hẹt, Xã Sam Mứn, Xã Thanh An",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2270\",\"properties\":{\"matinhxa\":\"13.2284\",\"maxa\":2284},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Thanh Nưa (xã)",
- "truocsn": "Xã Hua Thanh, Xã Thanh Luông, Xã Thanh Hưng, Xã Thanh Chăn, Xã Thanh Nưa",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2268\",\"properties\":{\"matinhxa\":\"13.2282\",\"maxa\":2282},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Thanh Yên (xã)",
- "truocsn": "Xã Noong Luống, Xã Pa Thơm, Xã Thanh Yên",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2269\",\"properties\":{\"matinhxa\":\"13.2283\",\"maxa\":2283},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Tìa Dình (xã)",
- "truocsn": "Xã Háng Lìa, Xã Tìa Dình",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2276\",\"properties\":{\"matinhxa\":\"13.2290\",\"maxa\":2290},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Tủa Chùa (xã)",
- "truocsn": "Thị trấn Tủa Chùa, Xã Mường Báng, Xã Nà Tòng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2253\",\"properties\":{\"matinhxa\":\"13.2267\",\"maxa\":2267},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Tủa Thàng (xã)",
- "truocsn": "Xã Huổi Só, Xã Tủa Thàng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2254\",\"properties\":{\"matinhxa\":\"13.2268\",\"maxa\":2268},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Tuần Giáo (xã)",
- "truocsn": "Thị trấn Tuần Giáo, Xã Quài Cang, Xã Quài Nưa",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2258\",\"properties\":{\"matinhxa\":\"13.2272\",\"maxa\":2272},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Xa Dung (xã)",
- "truocsn": "Xã Phì Nhừ, Xã Xa Dung",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2186\",\"properties\":{\"matinhxa\":\"13.2200\",\"maxa\":2200},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bản Bo (xã)",
- "truocsn": "Xã Nà Tăm, Xã Bản Bo",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2071\",\"properties\":{\"matinhxa\":\"14.2085\",\"maxa\":2085},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bình Lư (xã)",
- "truocsn": "Thị trấn Tam Đường, Xã Sơn Bình, Xã Bình Lư",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2069\",\"properties\":{\"matinhxa\":\"14.2083\",\"maxa\":2083},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bum Nưa (xã)",
- "truocsn": "Xã Pa Vệ Sủ, Xã Bum Nưa",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2079\",\"properties\":{\"matinhxa\":\"14.2093\",\"maxa\":2093},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bum Tở (xã)",
- "truocsn": "Thị trấn Mường Tè, Xã Can Hồ, Xã Bum Tở",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2076\",\"properties\":{\"matinhxa\":\"14.2090\",\"maxa\":2090},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Dào San (xã)",
- "truocsn": "Xã Tung Qua Lìn, Xã Mù Sang, Xã Dào San",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2093\",\"properties\":{\"matinhxa\":\"14.2107\",\"maxa\":2107},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Đoàn Kết (phường)",
- "truocsn": "Phường Đoàn Kết, Phường Quyết Tiến, Phường Quyết Thắng, Xã Lản Nhì Thàng, Xã Sùng Phài",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2067\",\"properties\":{\"matinhxa\":\"14.2081\",\"maxa\":2081},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Hồng Thu (xã)",
- "truocsn": "Xã Phìn Hồ, Xã Ma Quai, Xã Hồng Thu",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2085\",\"properties\":{\"matinhxa\":\"14.2099\",\"maxa\":2099},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Hua Bum (xã)",
- "truocsn": "Xã Vàng San, Xã Hua Bum",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2077\",\"properties\":{\"matinhxa\":\"14.2091\",\"maxa\":2091},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Khoen On (xã)",
- "truocsn": "Xã Ta Gia, Xã Khoen On",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2103\",\"properties\":{\"matinhxa\":\"14.2117\",\"maxa\":2117},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Khổng Lào (xã)",
- "truocsn": "Xã Hoang Thèn, Xã Bản Lang, Xã Khổng Lào",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2094\",\"properties\":{\"matinhxa\":\"14.2108\",\"maxa\":2108},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Khun Há (xã)",
- "truocsn": "Xã Bản Hon, Xã Khun Há",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2070\",\"properties\":{\"matinhxa\":\"14.2084\",\"maxa\":2084},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Lê Lợi (xã)",
- "truocsn": "Xã Nậm Pì, Xã Pú Đao, Xã Chăn Nưa, Xã Lê Lợi",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2083\",\"properties\":{\"matinhxa\":\"14.2097\",\"maxa\":2097},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Mù Cả (xã)",
- "truocsn": "xã Mù Cả (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2075\",\"properties\":{\"matinhxa\":\"14.2089\",\"maxa\":2089},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Mường Khoa (xã)",
- "truocsn": "Xã Phúc Khoa, Xã Mường Khoa",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2098\",\"properties\":{\"matinhxa\":\"14.2112\",\"maxa\":2112},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Mường Kim (xã)",
- "truocsn": "Xã Tà Mung, Xã Tà Hừa, Xã Pha Mu, Xã Mường Kim",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2102\",\"properties\":{\"matinhxa\":\"14.2116\",\"maxa\":2116},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Mường Mô (xã)",
- "truocsn": "Xã Nậm Chà, Xã Mường Mô",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2080\",\"properties\":{\"matinhxa\":\"14.2094\",\"maxa\":2094},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Mường Tè (xã)",
- "truocsn": "Xã Nậm Khao, Xã Mường Tè",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2074\",\"properties\":{\"matinhxa\":\"14.2088\",\"maxa\":2088},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Mường Than (xã)",
- "truocsn": "Xã Phúc Than, Xã Mường Mít",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2101\",\"properties\":{\"matinhxa\":\"14.2115\",\"maxa\":2115},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Nậm Cuổi (xã)",
- "truocsn": "Xã Nậm Hăn, Xã Nậm Cuổi",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2090\",\"properties\":{\"matinhxa\":\"14.2104\",\"maxa\":2104},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Nậm Hàng (xã)",
- "truocsn": "Thị trấn Nậm Nhùn, Xã Nậm Manh, Xã Nậm Hàng",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2081\",\"properties\":{\"matinhxa\":\"14.2095\",\"maxa\":2095},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Nậm Mạ (xã)",
- "truocsn": "Xã Căn Co, Xã Nậm Mạ",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2088\",\"properties\":{\"matinhxa\":\"14.2102\",\"maxa\":2102},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Nậm Sỏ (xã)",
- "truocsn": "Xã Tà Mít, Xã Nậm Sỏ",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2099\",\"properties\":{\"matinhxa\":\"14.2113\",\"maxa\":2113},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Nậm Tăm (xã)",
- "truocsn": "Xã Lùng Thàng, Xã Nậm Cha, Xã Nậm Tăm",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2086\",\"properties\":{\"matinhxa\":\"14.2100\",\"maxa\":2100},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Pa Tần (xã)",
- "truocsn": "Xã Nậm Ban, Xã Trung Chải, Xã Pa Tần",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2084\",\"properties\":{\"matinhxa\":\"14.2098\",\"maxa\":2098},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Pa Ủ (xã)",
- "truocsn": "Xã Tá Bạ, Xã Pa Ủ",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2073\",\"properties\":{\"matinhxa\":\"14.2087\",\"maxa\":2087},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Pắc Ta (xã)",
- "truocsn": "Xã Hố Mít, Xã Pắc Ta",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2100\",\"properties\":{\"matinhxa\":\"14.2114\",\"maxa\":2114},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Phong Thổ (xã)",
- "truocsn": "Thị trấn Phong Thổ, Xã Huổi Luông, Xã Ma Li Pho, Xã Mường So",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2091\",\"properties\":{\"matinhxa\":\"14.2105\",\"maxa\":2105},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Pu Sam Cáp (xã)",
- "truocsn": "Xã Pa Khóa, Xã Noong Hẻo, Xã Pu Sam Cáp",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2087\",\"properties\":{\"matinhxa\":\"14.2101\",\"maxa\":2101},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Sì Lở Lầu (xã)",
- "truocsn": "Xã Vàng Ma Chải, Xã Mồ Sì San, Xã Pa Vây Sử, Xã Sì Lở Lầu",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2092\",\"properties\":{\"matinhxa\":\"14.2106\",\"maxa\":2106},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Sìn Hồ (xã)",
- "truocsn": "Thị trấn Sìn Hồ, Xã Sà Dề Phìn, Xã Phăng Sô Lin, Xã Tả Phìn",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2082\",\"properties\":{\"matinhxa\":\"14.2096\",\"maxa\":2096},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Sin Suối Hồ (xã)",
- "truocsn": "Xã Nậm Xe, Xã Thèn Sin, Xã Sin Suối Hồ",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2095\",\"properties\":{\"matinhxa\":\"14.2109\",\"maxa\":2109},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Tả Lèng (xã)",
- "truocsn": "Xã Giang Ma, Xã Hồ Thầu, Xã Tả Lèng",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2068\",\"properties\":{\"matinhxa\":\"14.2082\",\"maxa\":2082},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Tà Tổng (xã)",
- "truocsn": "xã Tà Tổng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2078\",\"properties\":{\"matinhxa\":\"14.2092\",\"maxa\":2092},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Tân Phong (phường)",
- "truocsn": "Phường Tân Phong, Phường Đông Phong, Xã San Thàng, Xã Nùng Nàng, Xã Bản Giang",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2066\",\"properties\":{\"matinhxa\":\"14.2080\",\"maxa\":2080},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Tân Uyên (xã)",
- "truocsn": "Thị trấn Tân Uyên, Xã Trung Đồng, Xã Thân Thuộc, Xã Nậm Cần",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2097\",\"properties\":{\"matinhxa\":\"14.2111\",\"maxa\":2111},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Than Uyên (xã)",
- "truocsn": "Thị trấn Than Uyên, Xã Mường Than, Xã Hua Nà, Xã Mường Cang",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2096\",\"properties\":{\"matinhxa\":\"14.2110\",\"maxa\":2110},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Thu Lũm (xã)",
- "truocsn": "Xã Ka Lăng, Xã Thu Lũm",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2072\",\"properties\":{\"matinhxa\":\"14.2086\",\"maxa\":2086},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Tủa Sín Chải (xã)",
- "truocsn": "Xã Làng Mô, Xã Tả Ngảo, Xã Tủa Sín Chải",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2089\",\"properties\":{\"matinhxa\":\"14.2103\",\"maxa\":2103},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bắc Yên (xã)",
- "truocsn": "Thị trấn Bắc Yên, Xã Phiêng Ban, Xã Hồng Ngài, Xã Song Pe",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1362\",\"properties\":{\"matinhxa\":\"15.1374\",\"maxa\":1374},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bình Thuận (xã)",
- "truocsn": "Xã Phổng Lái, Xã Chiềng Pha",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1306\",\"properties\":{\"matinhxa\":\"15.1318\",\"maxa\":1318},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bó Sinh (xã)",
- "truocsn": "Xã Pú Bẩu, Xã Chiềng En, Xã Bó Sinh",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1399\",\"properties\":{\"matinhxa\":\"15.1412\",\"maxa\":1412},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Chiềng An (phường)",
- "truocsn": "Phường Chiềng An, Xã Chiềng Xôm, Xã Chiềng Đen",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1299\",\"properties\":{\"matinhxa\":\"15.1311\",\"maxa\":1311},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Chiềng Cơi (phường)",
- "truocsn": "Phường Chiềng Cơi, Xã Hua La, Xã Chiềng Cọ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1298\",\"properties\":{\"matinhxa\":\"15.1310\",\"maxa\":1310},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Chiềng Hặc (xã)",
- "truocsn": "Xã Tú Nang, Xã Mường Lựm, Xã Chiềng Hặc",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1386\",\"properties\":{\"matinhxa\":\"15.1399\",\"maxa\":1399},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Chiềng Hoa (xã)",
- "truocsn": "Xã Chiềng Ân, Xã Chiềng Công, Xã Chiềng Hoa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1361\",\"properties\":{\"matinhxa\":\"15.1373\",\"maxa\":1373},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Chiềng Khoong (xã)",
- "truocsn": "Xã Mường Cai, Xã Chiềng Khoong",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1403\",\"properties\":{\"matinhxa\":\"15.1416\",\"maxa\":1416},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Chiềng Khương (xã)",
- "truocsn": "Xã Mường Sai, Xã Chiềng Khương",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1406\",\"properties\":{\"matinhxa\":\"15.1419\",\"maxa\":1419},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Chiềng La (xã)",
- "truocsn": "Xã Chiềng Ngàm, Xã Nong Lay, Xã Tông Cọ, Xã Chiềng La",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1308\",\"properties\":{\"matinhxa\":\"15.1320\",\"maxa\":1320},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Chiềng Lao (xã)",
- "truocsn": "Xã Nậm Giôn, Xã Hua Trai, Xã Chiềng Lao",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1358\",\"properties\":{\"matinhxa\":\"15.1370\",\"maxa\":1370},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Chiềng Mai (xã)",
- "truocsn": "Xã Chiềng Ban, Xã Chiềng Kheo, Xã Chiềng Dong, Xã Chiềng Ve, Xã Chiềng Mai",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1393\",\"properties\":{\"matinhxa\":\"15.1406\",\"maxa\":1406},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Chiềng Mung (xã)",
- "truocsn": "Xã Mường Bằng, Xã Mường Bon, Xã Chiềng Mung",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1392\",\"properties\":{\"matinhxa\":\"15.1405\",\"maxa\":1405},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Chiềng Sại (xã)",
- "truocsn": "Xã Phiêng Côn, Xã Chiềng Sại",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1367\",\"properties\":{\"matinhxa\":\"15.1379\",\"maxa\":1379},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Chiềng Sinh (phường)",
- "truocsn": "Phường Chiềng Sinh, Xã Chiềng Ngần",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1300\",\"properties\":{\"matinhxa\":\"15.1312\",\"maxa\":1312},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Chiềng Sơ (xã)",
- "truocsn": "Xã Yên Hưng, Xã Chiềng Sơ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1402\",\"properties\":{\"matinhxa\":\"15.1415\",\"maxa\":1415},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Chiềng Sơn (xã)",
- "truocsn": "Xã Chiềng Xuân, Xã Chiềng Sơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1377\",\"properties\":{\"matinhxa\":\"15.1389\",\"maxa\":1389},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Chiềng Sung (xã)",
- "truocsn": "Xã Chiềng Chăn, Xã Chiềng Sung",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1390\",\"properties\":{\"matinhxa\":\"15.1403\",\"maxa\":1403},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Co Mạ (xã)",
- "truocsn": "Xã Co Tòng, Xã Pá Lông, Xã Co Mạ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1354\",\"properties\":{\"matinhxa\":\"15.1366\",\"maxa\":1366},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đoàn Kết (xã)",
- "truocsn": "Xã Chiềng Chung (thị xã Mộc Châu), Xã Đoàn Kết",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1376\",\"properties\":{\"matinhxa\":\"15.1388\",\"maxa\":1388},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Gia Phù (xã)",
- "truocsn": "Xã Tường Phù, Xã Suối Bau, Xã Sập Xa, Xã Gia Phù",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1371\",\"properties\":{\"matinhxa\":\"15.1383\",\"maxa\":1383},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Huổi Một (xã)",
- "truocsn": "Xã Nậm Mằn, Xã Huổi Một",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1404\",\"properties\":{\"matinhxa\":\"15.1417\",\"maxa\":1417},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Kim Bon (xã)",
- "truocsn": "Xã Đá Đỏ, Xã Kim Bon",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1373\",\"properties\":{\"matinhxa\":\"15.1385\",\"maxa\":1385},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Long Hẹ (xã)",
- "truocsn": "Xã É Tòng, Xã Long Hẹ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1353\",\"properties\":{\"matinhxa\":\"15.1365\",\"maxa\":1365},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Lóng Phiêng (xã)",
- "truocsn": "Xã Chiềng Tương, Xã Lóng Phiêng",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1388\",\"properties\":{\"matinhxa\":\"15.1401\",\"maxa\":1401},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Lóng Sập (xã)",
- "truocsn": "Xã Chiềng Khừa, Xã Lóng Sập",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1381\",\"properties\":{\"matinhxa\":\"15.1394\",\"maxa\":1394},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Mai Sơn (xã)",
- "truocsn": "Thị trấn Hát Lót, Xã Hát Lót, Xã Cò Nòi",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1394\",\"properties\":{\"matinhxa\":\"15.1407\",\"maxa\":1407},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Mộc Châu (phường)",
- "truocsn": "Phường Mộc Lỵ, Phường Mường Sang, Xã Chiềng Hắc",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3312\",\"properties\":{\"matinhxa\":\"15.3328\",\"maxa\":3328},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Mộc Sơn (phường)",
- "truocsn": "Phường Đông Sang, Phường Mộc Sơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1382\",\"properties\":{\"matinhxa\":\"15.1395\",\"maxa\":1395},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Muổi Nọi (xã)",
- "truocsn": "Xã Bản Lầm, Xã Bon Phặng, Xã Muổi Nọi",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1356\",\"properties\":{\"matinhxa\":\"15.1368\",\"maxa\":1368},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Mường Bám (xã)",
- "truocsn": "xã Mường Bám (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1352\",\"properties\":{\"matinhxa\":\"15.1364\",\"maxa\":1364},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Mường Bang (xã)",
- "truocsn": "Xã Mường Do, Xã Mường Lang, Xã Mường Bang",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1374\",\"properties\":{\"matinhxa\":\"15.1386\",\"maxa\":1386},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Mường Bú (xã)",
- "truocsn": "Xã Mường Chùm, Xã Tạ Bú, Xã Mường Bú",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1360\",\"properties\":{\"matinhxa\":\"15.1372\",\"maxa\":1372},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Mường Chanh (xã)",
- "truocsn": "Xã Chiềng Chung (huyện Mai Sơn), Xã Mường Chanh",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1391\",\"properties\":{\"matinhxa\":\"15.1404\",\"maxa\":1404},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Mường Chiên (xã)",
- "truocsn": "Xã Chiềng Khay, Xã Cà Nàng, Xã Mường Chiên",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1301\",\"properties\":{\"matinhxa\":\"15.1313\",\"maxa\":1313},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Mường Cơi (xã)",
- "truocsn": "Xã Mường Thải, Xã Tân Lang, Xã Mường Cơi",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1370\",\"properties\":{\"matinhxa\":\"15.1382\",\"maxa\":1382},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Mường É (xã)",
- "truocsn": "Xã Phổng Lập, Xã Mường É",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1307\",\"properties\":{\"matinhxa\":\"15.1319\",\"maxa\":1319},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Mường Giôn (xã)",
- "truocsn": "Xã Pá Ma Pha Khinh, Xã Mường Giôn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1302\",\"properties\":{\"matinhxa\":\"15.1314\",\"maxa\":1314},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Mường Hung (xã)",
- "truocsn": "Xã Chiềng Cang, Xã Mường Hung",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1405\",\"properties\":{\"matinhxa\":\"15.1418\",\"maxa\":1418},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Mường Khiêng (xã)",
- "truocsn": "Xã Liệp Tè, Xã Bó Mười, Xã Mường Khiêng",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1309\",\"properties\":{\"matinhxa\":\"15.1321\",\"maxa\":1321},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Mường La (xã)",
- "truocsn": "Thị trấn Ít Ong, Xã Nặm Păm, Xã Chiềng San, Xã Chiềng Muôn, Xã Mường Trai, Xã Pi Toong",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1357\",\"properties\":{\"matinhxa\":\"15.1369\",\"maxa\":1369},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Mường Lầm (xã)",
- "truocsn": "Xã Đứa Mòn, Xã Mường Lầm",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1400\",\"properties\":{\"matinhxa\":\"15.1413\",\"maxa\":1413},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mường Lạn (xã)",
- "truocsn": "xã Mường Lạn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1410\",\"properties\":{\"matinhxa\":\"15.1423\",\"maxa\":1423},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Mường Lèo (xã)",
- "truocsn": "xã Mường Lèo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1409\",\"properties\":{\"matinhxa\":\"15.1422\",\"maxa\":1422},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Mường Sại (xã)",
- "truocsn": "Xã Nặm Ét, Xã Mường Sại",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1304\",\"properties\":{\"matinhxa\":\"15.1316\",\"maxa\":1316},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nậm Lầu (xã)",
- "truocsn": "Xã Chiềng Bôm, Xã Púng Tra, Xã Nậm Lầu",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1355\",\"properties\":{\"matinhxa\":\"15.1367\",\"maxa\":1367},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nậm Ty (xã)",
- "truocsn": "Xã Chiềng Phung, Xã Nậm Ty",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1401\",\"properties\":{\"matinhxa\":\"15.1414\",\"maxa\":1414},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Ngọc Chiến (xã)",
- "truocsn": "xã Ngọc Chiến (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1359\",\"properties\":{\"matinhxa\":\"15.1371\",\"maxa\":1371},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Pắc Ngà (xã)",
- "truocsn": "Xã Chim Vàn, Xã Pắc Ngà",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1365\",\"properties\":{\"matinhxa\":\"15.1377\",\"maxa\":1377},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Phiêng Cằm (xã)",
- "truocsn": "Xã Chiềng Nơi, Xã Phiêng Cằm",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1395\",\"properties\":{\"matinhxa\":\"15.1408\",\"maxa\":1408},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phiêng Khoài (xã)",
- "truocsn": "xã Phiêng Khoài (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1389\",\"properties\":{\"matinhxa\":\"15.1402\",\"maxa\":1402},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phiêng Pằn (xã)",
- "truocsn": "Xã Nà Ớt, Xã Chiềng Lương, Xã Phiêng Pằn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1396\",\"properties\":{\"matinhxa\":\"15.1409\",\"maxa\":1409},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phù Yên (xã)",
- "truocsn": "Thị trấn Quang Huy, Xã Huy Hạ, Xã Huy Tường, Xã Huy Tân, Xã Huy Thượng",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1368\",\"properties\":{\"matinhxa\":\"15.1380\",\"maxa\":1380},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Púng Bánh (xã)",
- "truocsn": "Xã Dồm Cang, Xã Sam Kha, Xã Púng Bánh",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1407\",\"properties\":{\"matinhxa\":\"15.1420\",\"maxa\":1420},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Quỳnh Nhai (xã)",
- "truocsn": "Thị trấn Mường Giàng, Xã Chiềng Bằng, Xã Chiềng Khoang, Xã Chiềng Ơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1303\",\"properties\":{\"matinhxa\":\"15.1315\",\"maxa\":1315},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Song Khủa (xã)",
- "truocsn": "Xã Mường Tè, Xã Liên Hòa, Xã Quang Minh, Xã Song Khủa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1379\",\"properties\":{\"matinhxa\":\"15.1391\",\"maxa\":1391},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Sông Mã (xã)",
- "truocsn": "Thị trấn Sông Mã, Xã Nà Nghịu",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1398\",\"properties\":{\"matinhxa\":\"15.1411\",\"maxa\":1411},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Sốp Cộp (xã)",
- "truocsn": "Xã Mường Và, Xã Nậm Lạnh, Xã Sốp Cộp",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1408\",\"properties\":{\"matinhxa\":\"15.1421\",\"maxa\":1421},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Suối Tọ (xã)",
- "truocsn": "xã Suối Tọ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1369\",\"properties\":{\"matinhxa\":\"15.1381\",\"maxa\":1381},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Tà Hộc (xã)",
- "truocsn": "Xã Nà Bó, Xã Tà Hộc",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1397\",\"properties\":{\"matinhxa\":\"15.1410\",\"maxa\":1410},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Tạ Khoa (xã)",
- "truocsn": "Xã Mường Khoa, Xã Hua Nhàn, Xã Tạ Khoa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1366\",\"properties\":{\"matinhxa\":\"15.1378\",\"maxa\":1378},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Tà Xùa (xã)",
- "truocsn": "Xã Làng Chếu, Xã Háng Đồng, Xã Tà Xùa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1364\",\"properties\":{\"matinhxa\":\"15.1376\",\"maxa\":1376},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Tân Phong (xã)",
- "truocsn": "Xã Bắc Phong, Xã Nam Phong, Xã Tân Phong",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1375\",\"properties\":{\"matinhxa\":\"15.1387\",\"maxa\":1387},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tân Yên (xã)",
- "truocsn": "xã Tân Yên (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1378\",\"properties\":{\"matinhxa\":\"15.1390\",\"maxa\":1390},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Thảo Nguyên (phường)",
- "truocsn": "Phường Cờ Đỏ, Phường Thảo Ngu yên",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1438\",\"properties\":{\"matinhxa\":\"15.1451\",\"maxa\":1451},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Thuận Châu (xã)",
- "truocsn": "Thị trấn Thuận Châu, Xã Phổng Ly, Xã Thôm Mòn, Xã Tông Lạnh, Xã Chiềng Pấc",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1305\",\"properties\":{\"matinhxa\":\"15.1317\",\"maxa\":1317},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tô Hiệu (phường)",
- "truocsn": "Phường Quyết Thắng, Phường Quyết Tâm, Phường Chiềng Lề, Phường Tô Hiệu",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1297\",\"properties\":{\"matinhxa\":\"15.1309\",\"maxa\":1309},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tô Múa (xã)",
- "truocsn": "Xã Chiềng Khoa, Xã Suối Bàng, Xã Tô Múa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1380\",\"properties\":{\"matinhxa\":\"15.1393\",\"maxa\":1393},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tường Hạ (xã)",
- "truocsn": "Xã Tường Thượng, Xã Tường Phong, Xã Tường Tiến, Xã Tường Hạ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1372\",\"properties\":{\"matinhxa\":\"15.1384\",\"maxa\":1384},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Vân Hồ (xã)",
- "truocsn": "Xã Lóng Luông, Xã Chiềng Yên, Xã Mường Men, Xã Vân Hồ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1383\",\"properties\":{\"matinhxa\":\"15.1396\",\"maxa\":1396},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Vân Sơn (phường)",
- "truocsn": "Phường Bình Minh, Phường Vân Sơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3291\",\"properties\":{\"matinhxa\":\"15.3307\",\"maxa\":3307},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Xím Vàng (xã)",
- "truocsn": "Xã Hang Chú, Xã Xí m Vàng",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1363\",\"properties\":{\"matinhxa\":\"15.1375\",\"maxa\":1375},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Xuân Nha (xã)",
- "truocsn": "Xã Tân Xuân, Xã Xuân Nha",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1384\",\"properties\":{\"matinhxa\":\"15.1397\",\"maxa\":1397},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Yên Châu (xã)",
- "truocsn": "Thị trấn Yên Châu, Xã Chiềng Đông, Xã Chiềng Sàng, Xã Chiềng Pằn, Xã Chiềng Khoi, Xã Sặp Vạt",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1385\",\"properties\":{\"matinhxa\":\"15.1398\",\"maxa\":1398},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Yên Sơn (xã)",
- "truocsn": "Xã Chiềng On, Xã Yên Sơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1387\",\"properties\":{\"matinhxa\":\"15.1400\",\"maxa\":1400},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Khánh (xã)",
- "truocsn": "Xã Cù Vân, Xã Hà Thượng, Xã An Khánh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1128\",\"properties\":{\"matinhxa\":\"10.1139\",\"maxa\":1139},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Bể (xã)",
- "truocsn": "Xã Cao Thượng, Xã Nam Mẫu, Xã Khang Ninh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1093\",\"properties\":{\"matinhxa\":\"10.1104\",\"maxa\":1104},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bá Xuyên (phường)",
- "truocsn": "Phường Mỏ Chè, Phường Châu Sơn, Xã Bá Xuyên",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1135\",\"properties\":{\"matinhxa\":\"10.1146\",\"maxa\":1146},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bắc Kạn (phường)",
- "truocsn": "Phường Sông Cầu, Phường Phùng Chí Kiên, Phường Xuất Hóa, Xã Nông Thượng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1183\",\"properties\":{\"matinhxa\":\"10.1194\",\"maxa\":1194},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bách Quang (phường)",
- "truocsn": "Phường Lương Sơn, Phường Bách Quang, Xã Tân Quang",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1133\",\"properties\":{\"matinhxa\":\"10.1144\",\"maxa\":1144},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bạch Thông (xã)",
- "truocsn": "Xã Đồng Thắng, Xã Dương Phong, Xã Quang Thuận",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1201\",\"properties\":{\"matinhxa\":\"10.1212\",\"maxa\":1212},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bằng Thành (xã)",
- "truocsn": "Xã Bộc Bố, Xã Nhạn Môn, Xã Giáo Hiệu, Xã Bằng Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1088\",\"properties\":{\"matinhxa\":\"10.1099\",\"maxa\":1099},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bằng Vân (xã)",
- "truocsn": "Xã Thượng Ân, Xã Bằng Vân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1101\",\"properties\":{\"matinhxa\":\"10.1112\",\"maxa\":1112},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Thành (xã)",
- "truocsn": "Xã Sơn Phú, Xã Bình Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1150\",\"properties\":{\"matinhxa\":\"10.1161\",\"maxa\":1161},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Yên (xã)",
- "truocsn": "Xã Trung Lương, Xã Định Biên, Xã Thanh Định, Xã Bình Yên",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1131\",\"properties\":{\"matinhxa\":\"10.1142\",\"maxa\":1142},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cẩm Giàng (xã)",
- "truocsn": "Xã Quân Hà, Xã Nguyên Phúc, Xã Mỹ Thanh, Xã Cẩm Giàng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1106\",\"properties\":{\"matinhxa\":\"10.1117\",\"maxa\":1117},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cao Minh (xã)",
- "truocsn": "Xã Công Bằng, Xã Cổ Linh, Xã Cao Tân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1089\",\"properties\":{\"matinhxa\":\"10.1100\",\"maxa\":1100},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Chợ Đồn (xã)",
- "truocsn": "Thị trấn Bằng Lũng, Xã Ngọc Phái, Xã Phương Viên, Xã Bằng Lãng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1107\",\"properties\":{\"matinhxa\":\"10.1118\",\"maxa\":1118},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Chợ Mới (xã)",
- "truocsn": "Thị trấn Đồng Tâm, Xã Quảng Chu, Xã Như Cố",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1185\",\"properties\":{\"matinhxa\":\"10.1196\",\"maxa\":1196},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Chợ Rã (xã)",
- "truocsn": "Thị trấn Chợ Rã, Xã Thượng Giáo, Xã Địa Linh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1091\",\"properties\":{\"matinhxa\":\"10.1102\",\"maxa\":1102},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Côn Minh (xã)",
- "truocsn": "Xã Quang Phong, Xã Dương Sơn, Xã Côn Minh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1192\",\"properties\":{\"matinhxa\":\"10.1203\",\"maxa\":1203},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Cường Lợi (xã)",
- "truocsn": "Xã Văn Vũ, Xã Cường Lợi",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1191\",\"properties\":{\"matinhxa\":\"10.1202\",\"maxa\":1202},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đại Phúc (xã)",
- "truocsn": "Thị trấn Hùng Sơn, Xã Phúc Xuân, Xã Phúc Trìu, Xã Tân Thái, Xã Phúc Tân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1117\",\"properties\":{\"matinhxa\":\"10.1128\",\"maxa\":1128},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đại Từ (xã)",
- "truocsn": "Xã Bình Thuận, Xã Khôi Kỳ, Xã Mỹ Yên, Xã Lục Ba",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1127\",\"properties\":{\"matinhxa\":\"10.1138\",\"maxa\":1138},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Dân Tiến (xã)",
- "truocsn": "Xã Bình Long, Xã Phương Giao, Xã Dân Tiến",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1157\",\"properties\":{\"matinhxa\":\"10.1168\",\"maxa\":1168},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Điềm Thụy (xã)",
- "truocsn": "Xã Hà Châu, Xã Nga My, Xã Điềm Thụy, Xã Thượng Đình",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1181\",\"properties\":{\"matinhxa\":\"10.1192\",\"maxa\":1192},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Định Hóa (xã)",
- "truocsn": "Thị trấn Chợ Chu, Xã Phúc Chu, Xã Bảo Linh, Xã Đồng Thịnh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1136\",\"properties\":{\"matinhxa\":\"10.1147\",\"maxa\":1147},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đồng Hỷ (xã)",
- "truocsn": "Thị trấn Hóa Thượng, Thị trấn Sông Cầu, Xã Minh Lập, Xã Hóa Trung",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1159\",\"properties\":{\"matinhxa\":\"10.1170\",\"maxa\":1170},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đồng Phúc (xã)",
- "truocsn": "Xã Quảng Khê, Xã Hoàng Trĩ, Xã Bằng Phúc, Xã Đồng Phúc",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1098\",\"properties\":{\"matinhxa\":\"10.1109\",\"maxa\":1109},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đức Lương (xã)",
- "truocsn": "Xã Minh Tiến, Xã Phúc Lương, Xã Đức Lương",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1130\",\"properties\":{\"matinhxa\":\"10.1141\",\"maxa\":1141},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đức Xuân (phường)",
- "truocsn": "Phường Nguyễn Thị Minh Khai, Phường Huyền Tụng, Phường Đức Xuân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1184\",\"properties\":{\"matinhxa\":\"10.1195\",\"maxa\":1195},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Gia Sàng (phường)",
- "truocsn": "Phường Hương Sơn, Xã Đồng Liên, Phường Gia Sàng, Phường Cam Giá",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1116\",\"properties\":{\"matinhxa\":\"10.1127\",\"maxa\":1127},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hiệp Lực (xã)",
- "truocsn": "Xã Thuần Mang, Xã Hiệp Lực",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1103\",\"properties\":{\"matinhxa\":\"10.1114\",\"maxa\":1114},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hợp Thành (xã)",
- "truocsn": "Xã Ôn Lương, Xã Phủ Lý, Xã Hợp Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1141\",\"properties\":{\"matinhxa\":\"10.1152\",\"maxa\":1152},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Kha Sơn (xã)",
- "truocsn": "Xã Lương Phú, Xã Tân Đức, Xã Thanh Ninh, Xã Dương Thành, Xã Kha Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1182\",\"properties\":{\"matinhxa\":\"10.1193\",\"maxa\":1193},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Kim Phượng (xã)",
- "truocsn": "Xã Quy Kỳ, Xã Kim Phượng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1149\",\"properties\":{\"matinhxa\":\"10.1160\",\"maxa\":1160},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "La Bằng (xã)",
- "truocsn": "Xã Hoàng Nông, Xã Tiên Hội, Xã La Bằng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1126\",\"properties\":{\"matinhxa\":\"10.1137\",\"maxa\":1137},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "La Hiên (xã)",
- "truocsn": "Xã Cúc Đường, Xã La Hiên",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1155\",\"properties\":{\"matinhxa\":\"10.1166\",\"maxa\":1166},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Lam Vỹ (xã)",
- "truocsn": "Xã Linh Thông, Xã Lam Vỹ",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1148\",\"properties\":{\"matinhxa\":\"10.1159\",\"maxa\":1159},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Linh Sơn (phường)",
- "truocsn": "Phường Chùa Hang, Phường Đồng Bẩm, Xã Cao Ngạn, Xã Huống Thượng, Xã Linh Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1122\",\"properties\":{\"matinhxa\":\"10.1133\",\"maxa\":1133},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Nà Phặc (xã)",
- "truocsn": "Thị trấn Nà Phặc, Xã Trung Hòa",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1099\",\"properties\":{\"matinhxa\":\"10.1110\",\"maxa\":1110},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Na Rì (xã)",
- "truocsn": "Thị trấn Yến Lạc, Xã Sơn Thành, Xã Kim Lư",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1189\",\"properties\":{\"matinhxa\":\"10.1200\",\"maxa\":1200},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Nam Cường (xã)",
- "truocsn": "Xã Xuân Lạc, Xã Đồng Lạc, Xã Nam Cường",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1108\",\"properties\":{\"matinhxa\":\"10.1119\",\"maxa\":1119},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Nam Hòa (xã)",
- "truocsn": "Xã Cây Thị, Xã Nam Hòa",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1145\",\"properties\":{\"matinhxa\":\"10.1156\",\"maxa\":1156},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Ngân Sơn (xã)",
- "truocsn": "Thị trấn Vân Tùng, Xã Cốc Đán, Xã Đức Vân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1102\",\"properties\":{\"matinhxa\":\"10.1113\",\"maxa\":1113},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Nghĩa Tá (xã)",
- "truocsn": "Xã Lương Bằng, Xã Bình Trung, Xã Nghĩa Tá",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1112\",\"properties\":{\"matinhxa\":\"10.1123\",\"maxa\":1123},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Nghiên Loan (xã)",
- "truocsn": "Xã Xuân La, Xã An Thắng, Xã Nghiên Loan",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1090\",\"properties\":{\"matinhxa\":\"10.1101\",\"maxa\":1101},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Nghinh Tường (xã)",
- "truocsn": "Xã Vũ Chấn, Xã Nghinh Tường",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1153\",\"properties\":{\"matinhxa\":\"10.1164\",\"maxa\":1164},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Phan Đình Phùng (phường)",
- "truocsn": "Phường Trưng Vương, Phường Túc Duyên, Phường Đồng Quang, Phường Quang Trung, Phường Hoàng Văn Thụ, Phường Tân Thịnh, Phường Phan Đình Phùng, Phường Gia Sàng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1115\",\"properties\":{\"matinhxa\":\"10.1126\",\"maxa\":1126},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Phổ Yên (phường)",
- "truocsn": "Phường Ba Hàng, Phường Hồng Tiến, Phường Bãi Bông, Xã Đắc Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1164\",\"properties\":{\"matinhxa\":\"10.1175\",\"maxa\":1175},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Phong Quang (xã)",
- "truocsn": "Xã Dương Quang, Xã Đôn Phong",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1202\",\"properties\":{\"matinhxa\":\"10.1213\",\"maxa\":1213},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Phú Bình (xã)",
- "truocsn": "Thị trấn Hương Sơn, Xã Xuân Phương, Xã Úc Kỳ, Xã Nhã Lộng, Xã Bảo Lý, Xã Thượng Đình",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1177\",\"properties\":{\"matinhxa\":\"10.1188\",\"maxa\":1188},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Phú Đình (xã)",
- "truocsn": "Xã Điềm Mặc, Xã Phú Đình",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1139\",\"properties\":{\"matinhxa\":\"10.1150\",\"maxa\":1150},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Phú Lạc (xã)",
- "truocsn": "Xã Phục Linh, Xã Tân Linh, Xã Phú Lạc",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1124\",\"properties\":{\"matinhxa\":\"10.1135\",\"maxa\":1135},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Phú Lương (xã)",
- "truocsn": "Thị trấn Đu, Thị trấn Giang Tiên, Xã Yên Lạc, Xã Động Đạt",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1147\",\"properties\":{\"matinhxa\":\"10.1158\",\"maxa\":1158},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phú Thịnh (xã)",
- "truocsn": "Xã Bản Ngoại, Xã Phú Cường, Xã Phú Thịnh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1125\",\"properties\":{\"matinhxa\":\"10.1136\",\"maxa\":1136},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phủ Thông (xã)",
- "truocsn": "Thị trấn Phủ Thông, Xã Vi Hương, Xã Tân Tú, Xã Lục Bình",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1104\",\"properties\":{\"matinhxa\":\"10.1115\",\"maxa\":1115},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phú Xuyên (xã)",
- "truocsn": "Xã Yên Lãng, Xã Phú Xuyên",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1162\",\"properties\":{\"matinhxa\":\"10.1173\",\"maxa\":1173},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phúc Lộc (xã)",
- "truocsn": "Xã Bành Trạch, Xã Hà Hiệu, Xã Phúc Lộc",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1092\",\"properties\":{\"matinhxa\":\"10.1103\",\"maxa\":1103},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phúc Thuận (phường)",
- "truocsn": "Phường Bắc Sơn, Xã Minh Đức, Xã Phúc Thuận",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1165\",\"properties\":{\"matinhxa\":\"10.1176\",\"maxa\":1176},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phượng Tiến (xã)",
- "truocsn": "Xã Tân Dương, Xã Tân Thịnh, Xã Phượng Tiến",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1137\",\"properties\":{\"matinhxa\":\"10.1148\",\"maxa\":1148},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Quân Chu (xã)",
- "truocsn": "Thị trấn Quân Chu, Xã Cát Nê",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1123\",\"properties\":{\"matinhxa\":\"10.1134\",\"maxa\":1134},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Quan Triều (phường)",
- "truocsn": "Phường Tân Long, Phường Quang Vinh, Phường Quan Triều, Xã Sơn Cẩm",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1114\",\"properties\":{\"matinhxa\":\"10.1125\",\"maxa\":1125},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Quảng Bạch (xã)",
- "truocsn": "Xã Tân Lập, Xã Quảng Bạch",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1109\",\"properties\":{\"matinhxa\":\"10.1120\",\"maxa\":1120},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Quang Sơn (xã)",
- "truocsn": "Xã Tân Long, Xã Quang Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1161\",\"properties\":{\"matinhxa\":\"10.1172\",\"maxa\":1172},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Quyết Thắng (phường)",
- "truocsn": "Phường Thịnh Đán, Xã Phúc Hà, Xã Quyết Thắng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1118\",\"properties\":{\"matinhxa\":\"10.1129\",\"maxa\":1129},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Sảng Mộc (xã)",
- "truocsn": "xã Sảng Mộc (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1158\",\"properties\":{\"matinhxa\":\"10.1169\",\"maxa\":1169},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Sông Công (phường)",
- "truocsn": "Phường Thắng Lợi, Phường Phố Cò, Phường Cải Đan",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1132\",\"properties\":{\"matinhxa\":\"10.1143\",\"maxa\":1143},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tân Cương (xã)",
- "truocsn": "Xã Thịnh Đức, Xã Bình Sơn, Xã Tân Cương",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1120\",\"properties\":{\"matinhxa\":\"10.1131\",\"maxa\":1131},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tân Khánh (xã)",
- "truocsn": "Xã Bàn Đạt, Xã Đào Xá, Xã Tân Khánh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1179\",\"properties\":{\"matinhxa\":\"10.1190\",\"maxa\":1190},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tân Kỳ (xã)",
- "truocsn": "Xã Tân Sơn, Xã Cao Kỳ, Xã Hòa Mục",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1186\",\"properties\":{\"matinhxa\":\"10.1197\",\"maxa\":1197},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Hòa, Xã Tân Kim, Xã Tân Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1180\",\"properties\":{\"matinhxa\":\"10.1191\",\"maxa\":1191},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Thần Sa (xã)",
- "truocsn": "Xã Thượng Nung, Xã Thần Xa",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1154\",\"properties\":{\"matinhxa\":\"10.1165\",\"maxa\":1165},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Thành Công (xã)",
- "truocsn": "Xã Vạn Phái, Xã Thành Công",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1175\",\"properties\":{\"matinhxa\":\"10.1186\",\"maxa\":1186},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Thanh Mai (xã)",
- "truocsn": "Xã Thanh Vận, Xã Mai Lạp, Xã Thanh Mai",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1187\",\"properties\":{\"matinhxa\":\"10.1198\",\"maxa\":1198},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Thanh Thịnh (xã)",
- "truocsn": "Xã Nông Hạ, Xã Thanh Thịnh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1188\",\"properties\":{\"matinhxa\":\"10.1199\",\"maxa\":1199},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Thượng Minh (xã)",
- "truocsn": "Xã Yến Dương, Xã Chu Hương, Xã Mỹ Phương",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1094\",\"properties\":{\"matinhxa\":\"10.1105\",\"maxa\":1105},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Thượng Quan (xã)",
- "truocsn": "xã Thượng Quan (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1265\",\"properties\":{\"matinhxa\":\"10.1276\",\"maxa\":1276},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tích Lương (phường)",
- "truocsn": "Phường Trung Thành (thành phố Thái Nguyên), Phường Phú Xá, Phường Tân Thành, Phường Tân Lập, Phường Tích Lương, Phường Cam Giá",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1119\",\"properties\":{\"matinhxa\":\"10.1130\",\"maxa\":1130},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Trại Cau (xã)",
- "truocsn": "Thị trấn Trại Cau, Xã Hợp Tiến",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1160\",\"properties\":{\"matinhxa\":\"10.1171\",\"maxa\":1171},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Trần Phú (xã)",
- "truocsn": "Xã Văn Minh, Xã Cư Lễ, Xã Trần Phú",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1195\",\"properties\":{\"matinhxa\":\"10.1206\",\"maxa\":1206},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tràng Xá (xã)",
- "truocsn": "Xã Liên Minh, Xã Tràng Xá",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1156\",\"properties\":{\"matinhxa\":\"10.1167\",\"maxa\":1167},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Trung Hội (xã)",
- "truocsn": "Xã Phú Tiến, Xã Bộc Nhiêu, Xã Trung Hội",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1138\",\"properties\":{\"matinhxa\":\"10.1149\",\"maxa\":1149},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Trung Thành (phường)",
- "truocsn": "Phường Trung Thành (thành phố Phổ Yên), Phường Đông Cao, Phường Tân Phú, Phường Thuận Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1176\",\"properties\":{\"matinhxa\":\"10.1187\",\"maxa\":1187},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Văn Hán (xã)",
- "truocsn": "Xã Khe Mo, Xã Văn Hán",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1144\",\"properties\":{\"matinhxa\":\"10.1155\",\"maxa\":1155},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Văn Lang (xã)",
- "truocsn": "Xã Kim Hỷ, Xã Lương Thượng, Xã Văn Lang",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1190\",\"properties\":{\"matinhxa\":\"10.1201\",\"maxa\":1201},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Văn Lăng (xã)",
- "truocsn": "Xã Hòa Bình, Xã Văn Lăng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1143\",\"properties\":{\"matinhxa\":\"10.1154\",\"maxa\":1154},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Vạn Phú (xã)",
- "truocsn": "Xã Văn Yên, Xã Vạn Phú",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1163\",\"properties\":{\"matinhxa\":\"10.1174\",\"maxa\":1174},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Vạn Xuân (phường)",
- "truocsn": "Phường Nam Tiến, Phường Đồng Tiến, Phường Tân Hương, Phường Tiên Phong",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1173\",\"properties\":{\"matinhxa\":\"10.1184\",\"maxa\":1184},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Vĩnh Thông (xã)",
- "truocsn": "Xã Sỹ Bình, Xã Vũ Muộn, Xã Cao Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1200\",\"properties\":{\"matinhxa\":\"10.1211\",\"maxa\":1211},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Võ Nhai (xã)",
- "truocsn": "Thị trấn Đình Cả, Xã Phú Thượng, Xã Lâu Thượng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1152\",\"properties\":{\"matinhxa\":\"10.1163\",\"maxa\":1163},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Vô Tranh (xã)",
- "truocsn": "Xã Tức Tranh, Xã Cổ Lũng, Xã Phú Đô, Xã Vô Tranh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1142\",\"properties\":{\"matinhxa\":\"10.1153\",\"maxa\":1153},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Xuân Dương (xã)",
- "truocsn": "Xã Đổng Xá, Xã Liêm Thủy, Xã Xuân Dương",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1199\",\"properties\":{\"matinhxa\":\"10.1210\",\"maxa\":1210},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Yên Bình (xã)",
- "truocsn": "Xã Yên Cư, Xã Bình Văn, Xã Yên Hân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1113\",\"properties\":{\"matinhxa\":\"10.1124\",\"maxa\":1124},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Yên Phong (xã)",
- "truocsn": "Xã Đại Sảo, Xã Yên Mỹ, Xã Yên Phong",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1111\",\"properties\":{\"matinhxa\":\"10.1122\",\"maxa\":1122},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Yên Thịnh (xã)",
- "truocsn": "Xã Bản Thi, Xã Yên Thượng, Xã Yên Thịnh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1110\",\"properties\":{\"matinhxa\":\"10.1121\",\"maxa\":1121},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Yên Trạch (xã)",
- "truocsn": "Xã Yên Ninh, Xã Yên Đổ, Xã Yên Trạch",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1140\",\"properties\":{\"matinhxa\":\"10.1151\",\"maxa\":1151},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Ba Sơn (xã)",
- "truocsn": "Xã Mẫu Sơn (huyện Cao Lộc), Xã Cao Lâu, Xã Xuất Lễ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1800\",\"properties\":{\"matinhxa\":\"11.1814\",\"maxa\":1814},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bắc Sơn (xã)",
- "truocsn": "Thị trấn Bắc Sơn, Xã Long Đống, Xã Bắc Quỳnh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1840\",\"properties\":{\"matinhxa\":\"11.1854\",\"maxa\":1854},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bằng Mạc (xã)",
- "truocsn": "Xã Gia Lộc, Xã Bằng Hữu, Xã Thượng Cường, Xã Bằng Mạc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1805\",\"properties\":{\"matinhxa\":\"11.1819\",\"maxa\":1819},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bình Gia (xã)",
- "truocsn": "Xã Hoàng Văn Thụ (huyện Bình Gia), Xã Mông Ân, Thị trấn Bình Gia",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1838\",\"properties\":{\"matinhxa\":\"11.1852\",\"maxa\":1852},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Cai Kinh (xã)",
- "truocsn": "Xã Yên Vượng, Xã Yên Sơn, Xã Cai Kinh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1803\",\"properties\":{\"matinhxa\":\"11.1817\",\"maxa\":1817},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cao Lộc (xã)",
- "truocsn": "Xã Lộc Yên, Xã Thanh Lòa, Xã Thạch Đạn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1793\",\"properties\":{\"matinhxa\":\"11.1807\",\"maxa\":1807},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Châu Sơn (xã)",
- "truocsn": "Xã Bắc Lãng, Xã Đồng Thắng, Xã Cường Lợi, Xã Châu Sơn, Xã Kiên Mộc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1857\",\"properties\":{\"matinhxa\":\"11.1871\",\"maxa\":1871},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Chi Lăng (xã)",
- "truocsn": "Xã Chi Lăng (huyện Chi Lăng), Thị trấn Chi Lăng, Thị trấn Đồng Mỏ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1791\",\"properties\":{\"matinhxa\":\"11.1805\",\"maxa\":1805},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Chiến Thắng (xã)",
- "truocsn": "Xã Chiến Thắng (huyện Chi Lăng), Xã Vân An, Xã Liên Sơn, Xã Vân Thủy",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1804\",\"properties\":{\"matinhxa\":\"11.1818\",\"maxa\":1818},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Công Sơn (xã)",
- "truocsn": "Xã Hòa Cư, Xã Hải Yến, Xã Công Sơn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1801\",\"properties\":{\"matinhxa\":\"11.1815\",\"maxa\":1815},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Điềm He (xã)",
- "truocsn": "Xã Trấn Ninh, Xã Liên Hội, Xã Điềm He",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1815\",\"properties\":{\"matinhxa\":\"11.1829\",\"maxa\":1829},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đình Lập (xã)",
- "truocsn": "Thị trấn Đình Lập, Xã Đình Lập, Xã Bính Xá",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1855\",\"properties\":{\"matinhxa\":\"11.1869\",\"maxa\":1869},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đoàn Kết (xã)",
- "truocsn": "Xã Khánh Long, Xã Cao Minh, Xã Đoàn Kết",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1826\",\"properties\":{\"matinhxa\":\"11.1840\",\"maxa\":1840},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đồng Đăng (xã)",
- "truocsn": "Thị trấn Đồng Đăng, Xã Thụy Hùng (huyện Cao Lộc), Xã Phú Xá, Xã Hồng Phong, Xã Bảo Lâm",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1792\",\"properties\":{\"matinhxa\":\"11.1806\",\"maxa\":1806},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông Kinh (phường)",
- "truocsn": "Phường Vĩnh Trại, Phường Đông Kinh, Xã Yên Trạch, Xã Mai Pha",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1789\",\"properties\":{\"matinhxa\":\"11.1803\",\"maxa\":1803},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Hoa Thám (xã)",
- "truocsn": "Xã Hưng Đạo, Xã Hoa Thám",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1832\",\"properties\":{\"matinhxa\":\"11.1846\",\"maxa\":1846},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Hoàng Văn Thụ (xã)",
- "truocsn": "Xã Hồng Thái, Xã Hoàng Văn Thụ (huyện Văn Lãng), Xã Tân Mỹ, Xã Nhạc Kỳ, Xã Tân Thanh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1813\",\"properties\":{\"matinhxa\":\"11.1827\",\"maxa\":1827},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hội Hoan (xã)",
- "truocsn": "Xã Gia Miễn, Xã Hội Hoan",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1812\",\"properties\":{\"matinhxa\":\"11.1826\",\"maxa\":1826},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hồng Phong (xã)",
- "truocsn": "Xã Hồng Phong (huyện Bình Gia), Xã Minh Khai",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1834\",\"properties\":{\"matinhxa\":\"11.1848\",\"maxa\":1848},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hưng Vũ (xã)",
- "truocsn": "Xã Trấn Yên, Xã Hưng Vũ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1821\",\"properties\":{\"matinhxa\":\"11.1835\",\"maxa\":1835},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hữu Liên (xã)",
- "truocsn": "Xã Yên Thịnh, Xã Hữu Liên",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1802\",\"properties\":{\"matinhxa\":\"11.1816\",\"maxa\":1816},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hữu Lũng (xã)",
- "truocsn": "Thị trấn Hữu Lũng, Xã Đồng Tân, Xã Hồ Sơn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1842\",\"properties\":{\"matinhxa\":\"11.1856\",\"maxa\":1856},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Kháng Chiến (xã)",
- "truocsn": "Xã Trung Thành, Xã Tân Minh, Xã Kháng Chiến",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1830\",\"properties\":{\"matinhxa\":\"11.1844\",\"maxa\":1844},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Khánh Khê (xã)",
- "truocsn": "Xã Xuân Long, Xã Bình Trung, Xã Khánh Khê",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1816\",\"properties\":{\"matinhxa\":\"11.1830\",\"maxa\":1830},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Khuất Xá (xã)",
- "truocsn": "Xã Tam Gia, Xã Khuất Xá",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1851\",\"properties\":{\"matinhxa\":\"11.1865\",\"maxa\":1865},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Kiên Mộc (xã)",
- "truocsn": "Xã Bắc Xa, Xã Bính Xá, Xã Kiên Mộc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1854\",\"properties\":{\"matinhxa\":\"11.1868\",\"maxa\":1868},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Kỳ Lừa (phường)",
- "truocsn": "Phường Hoàng Văn Thụ, Thị trấn Cao Lộc, Xã Hợp Thành, Xã Tân Liên, Xã Gia Cát",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1788\",\"properties\":{\"matinhxa\":\"11.1802\",\"maxa\":1802},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Lộc Bình (xã)",
- "truocsn": "Thị trấn Lộc Bình, Xã Khánh Xuân, Xã Đồng Bục, Xã Hữu Khánh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1849\",\"properties\":{\"matinhxa\":\"11.1863\",\"maxa\":1863},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Lợi Bác (xã)",
- "truocsn": "Xã Sàn Viên, Xã Lợi Bác",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1852\",\"properties\":{\"matinhxa\":\"11.1866\",\"maxa\":1866},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Lương Văn Tri (phường)",
- "truocsn": "Phường Chi Lăng, Xã Quảng Lạc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1790\",\"properties\":{\"matinhxa\":\"11.1804\",\"maxa\":1804},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Mẫu Sơn (xã)",
- "truocsn": "Xã Mẫu Sơn (huyện Lộc Bình), Xã Yên Khoái, Xã Tú Mịch",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1850\",\"properties\":{\"matinhxa\":\"11.1864\",\"maxa\":1864},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Na Dương (xã)",
- "truocsn": "Thị trấn Na Dương, Xã Đông Quan, Xã Tú Đoạn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1848\",\"properties\":{\"matinhxa\":\"11.1862\",\"maxa\":1862},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Na Sầm (xã)",
- "truocsn": "Thị trấn Na Sầm, Xã Hoàng Việt, Xã Bắc Hùng",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1810\",\"properties\":{\"matinhxa\":\"11.1824\",\"maxa\":1824},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Nhân Lý (xã)",
- "truocsn": "Xã Mai Sao, Xã Bắc Thủy, Xã Lâm Sơn, Xã Nhân Lý",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1806\",\"properties\":{\"matinhxa\":\"11.1820\",\"maxa\":1820},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Nhất Hòa (xã)",
- "truocsn": "Xã Tân Thành (huyện Bắc Sơn), Xã Nhất Tiến, Xã Nhất Hòa",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1824\",\"properties\":{\"matinhxa\":\"11.1838\",\"maxa\":1838},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Quan Sơn (xã)",
- "truocsn": "Xã Hữu Kiên, Xã Quan Sơn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1808\",\"properties\":{\"matinhxa\":\"11.1822\",\"maxa\":1822},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Quốc Khánh (xã)",
- "truocsn": "Xã Tri Phương, Xã Đội Cấn, Xã Quốc Khánh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1827\",\"properties\":{\"matinhxa\":\"11.1841\",\"maxa\":1841},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Quốc Việt (xã)",
- "truocsn": "Xã Đào Viên, Xã Quốc Việt",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1831\",\"properties\":{\"matinhxa\":\"11.1845\",\"maxa\":1845},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Quý Hòa (xã)",
- "truocsn": "Xã Vĩnh Yên, Xã Quý Hòa",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1833\",\"properties\":{\"matinhxa\":\"11.1847\",\"maxa\":1847},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Tam Thanh (phường)",
- "truocsn": "Phường Tam Thanh, Xã Hoàng Đồng",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1787\",\"properties\":{\"matinhxa\":\"11.1801\",\"maxa\":1801},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Tân Đoàn (xã)",
- "truocsn": "Xã Tân Thành (huyện Cao Lộc), Xã Tràng Phái, Xã Tân Đoàn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1817\",\"properties\":{\"matinhxa\":\"11.1831\",\"maxa\":1831},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Thành (huyện Hữu Lũng), Xã Hòa Lạc, Xã Hòa Sơn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1846\",\"properties\":{\"matinhxa\":\"11.1860\",\"maxa\":1860},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Tân Yên, Xã Kim Đồng, Xã Tân Tiến",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1828\",\"properties\":{\"matinhxa\":\"11.1842\",\"maxa\":1842},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Tân Tri (xã)",
- "truocsn": "Xã Đồng Ý, Xã Vạn Thủy, Xã Tân Tri",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1820\",\"properties\":{\"matinhxa\":\"11.1834\",\"maxa\":1834},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Tân Văn (xã)",
- "truocsn": "Xã Hồng Thái (huyện Bình Gia), Xã Bình La, Xã Tân Văn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1839\",\"properties\":{\"matinhxa\":\"11.1853\",\"maxa\":1853},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Thái Bình (xã)",
- "truocsn": "Thị trấn Nông Trường Thái Bình, Xã Lâm Ca, Xã Thái Bình",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1856\",\"properties\":{\"matinhxa\":\"11.1870\",\"maxa\":1870},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Thất Khê (xã)",
- "truocsn": "Xã Chi Lăng (huyện Tràng Định), Xã Chí Minh, Thị trấn Thất Khê",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1825\",\"properties\":{\"matinhxa\":\"11.1839\",\"maxa\":1839},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Thiện Hòa (xã)",
- "truocsn": "Xã Yên Lỗ, Xã Thiện Hòa",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1835\",\"properties\":{\"matinhxa\":\"11.1849\",\"maxa\":1849},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Thiện Long (xã)",
- "truocsn": "Xã Hòa Bình (huyện Bình Gia), Xã Tân Hòa, Xã Thiện Long",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1837\",\"properties\":{\"matinhxa\":\"11.1851\",\"maxa\":1851},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Thiện Tân (xã)",
- "truocsn": "Xã Thanh Sơn, Xã Đồng Tiến, Xã Thiện Tân",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1844\",\"properties\":{\"matinhxa\":\"11.1858\",\"maxa\":1858},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Thiện Thuật (xã)",
- "truocsn": "Xã Quang Trung, Xã Thiện Thuật",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1836\",\"properties\":{\"matinhxa\":\"11.1850\",\"maxa\":1850},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Thống Nhất (xã)",
- "truocsn": "Xã Minh Hiệp, Xã Hữu Lân, Xã Thống Nhất",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1841\",\"properties\":{\"matinhxa\":\"11.1855\",\"maxa\":1855},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Thụy Hùng (xã)",
- "truocsn": "Xã Thụy Hùng (huyện Văn Lãng), Xã Thanh Long, Xã Trùng Khánh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1809\",\"properties\":{\"matinhxa\":\"11.1823\",\"maxa\":1823},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Tràng Định (xã)",
- "truocsn": "Xã Đề Thám, Xã Hùng Sơn, Xã Hùng Việt",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1829\",\"properties\":{\"matinhxa\":\"11.1843\",\"maxa\":1843},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Tri Lễ (xã)",
- "truocsn": "Xã Lương Năng, Xã Hữu Lễ, Xã Tri Lễ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1818\",\"properties\":{\"matinhxa\":\"11.1832\",\"maxa\":1832},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Tuấn Sơn (xã)",
- "truocsn": "Xã Minh Sơn, Xã Minh Hòa, Xã Hòa Thắng",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1847\",\"properties\":{\"matinhxa\":\"11.1861\",\"maxa\":1861},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Văn Lãng (xã)",
- "truocsn": "Xã Bắc Việt, Xã Bắc La, Xã Tân Tác, Xã Thành Hòa",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1811\",\"properties\":{\"matinhxa\":\"11.1825\",\"maxa\":1825},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Vạn Linh (xã)",
- "truocsn": "Xã Hòa Bình (huyện Chi Lăng), Xã Y Tịch, Xã Vạn Linh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1807\",\"properties\":{\"matinhxa\":\"11.1821\",\"maxa\":1821},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Vân Nham (xã)",
- "truocsn": "Xã Minh Tiến, Xã Nhật Tiến, Xã Vân Nham",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1845\",\"properties\":{\"matinhxa\":\"11.1859\",\"maxa\":1859},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Văn Quan (xã)",
- "truocsn": "Xã Hòa Bình (huyện Văn Quan), Xã Tú Xuyên, Thị trấn Văn Quan",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1814\",\"properties\":{\"matinhxa\":\"11.1828\",\"maxa\":1828},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Vũ Lăng (xã)",
- "truocsn": "Xã Tân Lập, Xã Tân Hương, Xã Chiêu Vũ, Xã Vũ Lăng",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1822\",\"properties\":{\"matinhxa\":\"11.1836\",\"maxa\":1836},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Vũ Lễ (xã)",
- "truocsn": "Xã Chiến Thắng (huyện Bắc Sơn), Xã Vũ Sơn, Xã Vũ Lễ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1823\",\"properties\":{\"matinhxa\":\"11.1837\",\"maxa\":1837},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Xuân Dương (xã)",
- "truocsn": "Xã Nam Quan, Xã Ái Quốc, Xã Xuân Dương",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1853\",\"properties\":{\"matinhxa\":\"11.1867\",\"maxa\":1867},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Yên Bình (xã)",
- "truocsn": "Xã Hòa Bình (huyện Hữu Lũng), Xã Quyết Thắng, Xã Yên Bình",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1843\",\"properties\":{\"matinhxa\":\"11.1857\",\"maxa\":1857},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Yên Phúc (xã)",
- "truocsn": "Xã An Sơn, Xã Bình Phúc, Xã Yên Phúc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1819\",\"properties\":{\"matinhxa\":\"11.1833\",\"maxa\":1833},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Sinh (phường)",
- "truocsn": "Phường Bình Dương, Xã An Sinh, Xã Việt Dân, Phường Đức Chính",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1900\",\"properties\":{\"matinhxa\":\"3.1914\",\"maxa\":1914},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Chẽ (xã)",
- "truocsn": "Thị trấn Ba Chẽ, Xã Thanh Sơn, Xã Nam Sơn, Xã Đồn Đạc, Xã Hải Lạng",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1882\",\"properties\":{\"matinhxa\":\"3.1896\",\"maxa\":1896},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bãi Cháy (phường)",
- "truocsn": "Phường Hùng Thắng, Phường Bãi Cháy",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1869\",\"properties\":{\"matinhxa\":\"3.1883\",\"maxa\":1883},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bình Khê (phường)",
- "truocsn": "Phường Tràng An, Phường Bình Khê, Xã Tràng Lương",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1860\",\"properties\":{\"matinhxa\":\"3.1874\",\"maxa\":1874},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bình Liêu (xã)",
- "truocsn": "Thị trấn Bình Liêu, Xã Húc Động, Xã Vô Ngại",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1875\",\"properties\":{\"matinhxa\":\"3.1889\",\"maxa\":1889},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cái Chiên (xã)",
- "truocsn": "xã Cái Chiên (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3299\",\"properties\":{\"matinhxa\":\"3.3315\",\"maxa\":3315},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Cẩm Phả (phường)",
- "truocsn": "Phường Cẩm Trung, Phường Cẩm Thành, Phường Cẩm Bình, Phường Cẩm Tây, Phường Cẩm Đông",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1873\",\"properties\":{\"matinhxa\":\"3.1887\",\"maxa\":1887},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cao Xanh (phường)",
- "truocsn": "Phường Hà Khánh, Phường Cao Xanh",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1880\",\"properties\":{\"matinhxa\":\"3.1894\",\"maxa\":1894},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cô Tô (đặc khu)",
- "truocsn": "Thị trấn Cô Tô, Xã Đồng Tiến, Xã Thanh Lân",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3292\",\"properties\":{\"matinhxa\":\"3.3308\",\"maxa\":3308},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cửa Ông (phường)",
- "truocsn": "Phường Cẩm Phú, Phường Cẩm Thịnh, Phường Cẩm Sơn, Phường Cửa Ông",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1874\",\"properties\":{\"matinhxa\":\"3.1888\",\"maxa\":1888},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đầm Hà (xã)",
- "truocsn": "Thị trấn Đầm Hà, Xã Tân Bình, Xã Đại Bình, Xã Tân Lập, Xã Đầm Hà",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1892\",\"properties\":{\"matinhxa\":\"3.1906\",\"maxa\":1906},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Điền Xá (xã)",
- "truocsn": "Xã Hà Lâu, Xã Điền Xá, Xã Yên Than",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1876\",\"properties\":{\"matinhxa\":\"3.1890\",\"maxa\":1890},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đông Mai (phường)",
- "truocsn": "Phường Minh Thành, Phường Đông Mai",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1879\",\"properties\":{\"matinhxa\":\"3.1893\",\"maxa\":1893},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đông Ngũ (xã)",
- "truocsn": "Xã Đông Hải, Xã Đại Dực, Xã Đông Ngũ",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1896\",\"properties\":{\"matinhxa\":\"3.1910\",\"maxa\":1910},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông Triều (phường)",
- "truocsn": "Phường Thủy An, Phường Hưng Đạo, Phường Hồng Phong, Xã Nguyễn Huệ, Phường Đức Chính",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1901\",\"properties\":{\"matinhxa\":\"3.1915\",\"maxa\":1915},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đường Hoa (xã)",
- "truocsn": "Xã Quảng Sơn, Xã Đường Hoa, Xã Quảng Long",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1895\",\"properties\":{\"matinhxa\":\"3.1909\",\"maxa\":1909},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Hà An (phường)",
- "truocsn": "Phường Tân An, Phường Hà An, Xã Hoàng Tân, Xã Liên Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1865\",\"properties\":{\"matinhxa\":\"3.1879\",\"maxa\":1879},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hà Lầm (phường)",
- "truocsn": "Phường Cao Thắng, Phường Hà Trung, Phường Hà Lầm",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1870\",\"properties\":{\"matinhxa\":\"3.1884\",\"maxa\":1884},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hạ Long (phường)",
- "truocsn": "Phường Hồng Hà, Phường Hồng Hải",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3297\",\"properties\":{\"matinhxa\":\"3.3313\",\"maxa\":3313},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hà Tu (phường)",
- "truocsn": "Phường Hà Phong, Phường Hà Tu",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3283\",\"properties\":{\"matinhxa\":\"3.3299\",\"maxa\":3299},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hải Hòa (xã)",
- "truocsn": "Xã Hải Lạng, Xã Hải Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1899\",\"properties\":{\"matinhxa\":\"3.1913\",\"maxa\":1913},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hải Lạng (xã)",
- "truocsn": "Xã Đồng Rui, Xã Hải Lạng, Xã Hải Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1885\",\"properties\":{\"matinhxa\":\"3.1899\",\"maxa\":1899},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hải Ninh (xã)",
- "truocsn": "Xã Quảng Nghĩa, Xã Hải Tiến",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1888\",\"properties\":{\"matinhxa\":\"3.1902\",\"maxa\":1902},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Hải Sơn (xã)",
- "truocsn": "Xã Bắc Sơn, Xã Hải Sơn",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1887\",\"properties\":{\"matinhxa\":\"3.1901\",\"maxa\":1901},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hiệp Hòa (phường)",
- "truocsn": "Phường Cộng Hòa, Xã Sông Khoai, Xã Hiệp Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1878\",\"properties\":{\"matinhxa\":\"3.1892\",\"maxa\":1892},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hoàng Quế (phường)",
- "truocsn": "Phường Yên Đức, Phường Hoàng Quế, Xã Hồng Thái Tây, Xã Hồng Thái Đông",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1861\",\"properties\":{\"matinhxa\":\"3.1875\",\"maxa\":1875},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hoành Bồ (phường)",
- "truocsn": "Phường Hoành Bồ, Xã Sơn Dương, Xã Lê Lợi, Xã Đồng Lâm",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1866\",\"properties\":{\"matinhxa\":\"3.1880\",\"maxa\":1880},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hoành Mô (xã)",
- "truocsn": "Xã Đồng Văn, Xã Hoành Mô",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1893\",\"properties\":{\"matinhxa\":\"3.1907\",\"maxa\":1907},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hồng Gai (phường)",
- "truocsn": "Phường Bạch Đằng, Phường Trần Hưng Đạo, Phường Hồng Gai",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3293\",\"properties\":{\"matinhxa\":\"3.3309\",\"maxa\":3309},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Kỳ Thượng (xã)",
- "truocsn": "Xã Thanh Lâm, Xã Đạp Thanh, Xã Kỳ Thượng",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1883\",\"properties\":{\"matinhxa\":\"3.1897\",\"maxa\":1897},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Liên Hòa (phường)",
- "truocsn": "Phường Phong Hải, Xã Liên Vị, Xã Tiền Phong, Xã Liên Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1881\",\"properties\":{\"matinhxa\":\"3.1895\",\"maxa\":1895},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Lục Hồn (xã)",
- "truocsn": "Xã Đồng Tâm, Xã Lục Hồn",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1894\",\"properties\":{\"matinhxa\":\"3.1908\",\"maxa\":1908},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Lương Minh (xã)",
- "truocsn": "Xã Đồng Sơn, Xã Lương Minh",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1862\",\"properties\":{\"matinhxa\":\"3.1876\",\"maxa\":1876},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Mạo Khê (phường)",
- "truocsn": "Phường Xuân Sơn, Phường Kim Sơn, Phường Yên Thọ, Phường Mạo Khê",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1902\",\"properties\":{\"matinhxa\":\"3.1916\",\"maxa\":1916},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Móng Cái 1 (phường)",
- "truocsn": "Phường Trần Phú, Phường Hải Hòa, Phường Bình Ngọc, Phường Trà Cổ, Xã Hải Xuân",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1904\",\"properties\":{\"matinhxa\":\"3.1918\",\"maxa\":1918},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Móng Cái 2 (phường)",
- "truocsn": "Phường Ninh Dương, Phường Ka Long, Xã Vạn Ninh",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1898\",\"properties\":{\"matinhxa\":\"3.1912\",\"maxa\":1912},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Móng Cái 3 (phường)",
- "truocsn": "Phường Hải Yên, Xã Hải Đông",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1890\",\"properties\":{\"matinhxa\":\"3.1904\",\"maxa\":1904},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Mông Dương (phường)",
- "truocsn": "Phường Mông Dương, Xã Dương Huy",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1872\",\"properties\":{\"matinhxa\":\"3.1886\",\"maxa\":1886},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Phong Cốc (phường)",
- "truocsn": "Phường Nam Hòa, Phường Yên Hải, Phường Phong Cốc, Xã Cẩm La",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1877\",\"properties\":{\"matinhxa\":\"3.1891\",\"maxa\":1891},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Quảng Đức (xã)",
- "truocsn": "Xã Quảng Thành, Xã Quảng Thịnh, Xã Quảng Đức",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1897\",\"properties\":{\"matinhxa\":\"3.1911\",\"maxa\":1911},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Quảng Hà (xã)",
- "truocsn": "Thị trấn Quảng Hà, Xã Quảng Minh, Xã Quảng Chính, Xã Quảng Phong, Xã Quảng Long",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1889\",\"properties\":{\"matinhxa\":\"3.1903\",\"maxa\":1903},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Quang Hanh (phường)",
- "truocsn": "Phường Cẩm Thạch, Phường Cẩm Thủy, Phường Quang Hanh",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1871\",\"properties\":{\"matinhxa\":\"3.1885\",\"maxa\":1885},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Quảng La (xã)",
- "truocsn": "Xã Bằng Cả, Xã Dân Chủ, Xã Tân Dân, Xã Quảng La",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1863\",\"properties\":{\"matinhxa\":\"3.1877\",\"maxa\":1877},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Quảng Tân (xã)",
- "truocsn": "Xã Quảng An, Xã Dực Yên, Xã Quảng Lâm, Xã Quảng Tân",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1891\",\"properties\":{\"matinhxa\":\"3.1905\",\"maxa\":1905},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Quảng Yên (phường)",
- "truocsn": "Phường Yên Giang, Phường Quảng Yên, Xã Tiền An",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1886\",\"properties\":{\"matinhxa\":\"3.1900\",\"maxa\":1900},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Thống Nhất (xã)",
- "truocsn": "Xã Vũ Oai, Xã Hòa Bình, Xã Thống Nhất, Xã Đồng Lâm",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1867\",\"properties\":{\"matinhxa\":\"3.1881\",\"maxa\":1881},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Tiên Yên (xã)",
- "truocsn": "Thị trấn Tiên Yên, Xã Phong Dụ, Xã Tiên Lãng, Xã Yên Than, Xã Đại Dực, Xã Đông Ngũ, Xã Vô Ngại",
- "provinceName": "tỉnh Quảng Ninh"
- },
- {
- "stt": "48",
- "ten": "Tuần Châu (phường)",
- "truocsn": "Phường Đại Yên, Phường Tuần Châu, Phường Hà Khẩu",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1903\",\"properties\":{\"matinhxa\":\"3.1917\",\"maxa\":1917},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Uông Bí (phường)",
- "truocsn": "Phường Quang Trung, Phường Thanh Sơn, Phường Yên Thanh, Phường Trưng Vương",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1858\",\"properties\":{\"matinhxa\":\"3.1872\",\"maxa\":1872},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Vân Đồn (đặc khu)",
- "truocsn": "Thị trấn Cái Rồng, Xã Bản Sen, Xã Bình Dân, Xã Đài Xuyên, Xã Đoàn Kết, Xã Đông Xá, Xã Hạ Long, Xã Minh Châu, Xã Ngọc Vừng, Xã Quan Lạn, Xã Thắng Lợi, Xã Vạn Yên",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3298\",\"properties\":{\"matinhxa\":\"3.3314\",\"maxa\":3314},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Vàng Danh (phường)",
- "truocsn": "Phường Bắc Sơn, Phường Nam Khê, Phường Vàng Danh, Phường Trưng Vương",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1868\",\"properties\":{\"matinhxa\":\"3.1882\",\"maxa\":1882},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Việt Hưng (phường)",
- "truocsn": "Phường Giếng Đáy, Phường Việt Hưng, Phường Hà Khẩu",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1864\",\"properties\":{\"matinhxa\":\"3.1878\",\"maxa\":1878},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Vĩnh Thực (xã)",
- "truocsn": "Xã Vĩnh Trung, Xã Vĩnh Thực",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3300\",\"properties\":{\"matinhxa\":\"3.3316\",\"maxa\":3316},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Yên Tử (phường)",
- "truocsn": "Phường Phương Đông, Phường Phương Nam, Xã Thượng Yên Công",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1859\",\"properties\":{\"matinhxa\":\"3.1873\",\"maxa\":1873},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Bình (xã)",
- "truocsn": "Xã Hưng Thi, Xã Thống Nhất, Xã An Bình",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1675\",\"properties\":{\"matinhxa\":\"12.1689\",\"maxa\":1689},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Nghĩa (xã)",
- "truocsn": "Thị trấn Ba Hàng Đồi, Xã Phú Nghĩa, Xã Phú Thành",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1647\",\"properties\":{\"matinhxa\":\"12.1660\",\"maxa\":1660},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Âu Cơ (phường)",
- "truocsn": "Phường Thanh Vinh, Phường Âu Cơ, Xã Thanh Minh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1567\",\"properties\":{\"matinhxa\":\"12.1580\",\"maxa\":1580},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bản Nguyên (xã)",
- "truocsn": "Xã Cao Xá, Xã Vĩnh Lại, Xã Bản Nguyên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1573\",\"properties\":{\"matinhxa\":\"12.1586\",\"maxa\":1586},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bằng Luân (xã)",
- "truocsn": "Xã Bằng Doãn, Xã Phúc Lai, Xã Bằng Luân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1543\",\"properties\":{\"matinhxa\":\"12.1556\",\"maxa\":1556},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bao La (xã)",
- "truocsn": "Xã Mai Hịch, Xã Xăm Khòe, Xã Bao La",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1687\",\"properties\":{\"matinhxa\":\"12.1701\",\"maxa\":1701},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Nguyên (xã)",
- "truocsn": "Thị trấn Hương Canh, Xã Tam Hợp, Xã Quất Lưu, Xã Sơn Lôi",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1630\",\"properties\":{\"matinhxa\":\"12.1643\",\"maxa\":1643},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Phú (xã)",
- "truocsn": "Xã Tiên Du, Xã An Đạo, Xã Bình Phú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1591\",\"properties\":{\"matinhxa\":\"12.1604\",\"maxa\":1604},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Tuyền (xã)",
- "truocsn": "Thị trấn Bá Hiến, Xã Trung Mỹ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1629\",\"properties\":{\"matinhxa\":\"12.1642\",\"maxa\":1642},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Xuyên (xã)",
- "truocsn": "Thị trấn Gia Khánh, Xã Hương Sơn, Xã Thiện Kế",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1628\",\"properties\":{\"matinhxa\":\"12.1641\",\"maxa\":1641},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cẩm Khê (xã)",
- "truocsn": "Thị trấn Cẩm Khê, Xã Minh Tân, Xã Phong Thịnh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1566\",\"properties\":{\"matinhxa\":\"12.1579\",\"maxa\":1579},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cao Dương (xã)",
- "truocsn": "Xã Thanh Cao, Xã Thanh Sơn, Xã Cao Dương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1649\",\"properties\":{\"matinhxa\":\"12.1662\",\"maxa\":1662},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cao Phong (xã)",
- "truocsn": "Thị trấn Cao Phong, Xã Hợp Phong, Xã Thu Phong",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1658\",\"properties\":{\"matinhxa\":\"12.1671\",\"maxa\":1671},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cao Sơn (xã)",
- "truocsn": "Xã Tân Minh, Xã Cao Sơn (huyện Đà Bắc)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1677\",\"properties\":{\"matinhxa\":\"12.1691\",\"maxa\":1691},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Chân Mộng (xã)",
- "truocsn": "Xã Hùng Long, Xã Yên Kiện, Xã Chân Mộng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1546\",\"properties\":{\"matinhxa\":\"12.1559\",\"maxa\":1559},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Chí Đám (xã)",
- "truocsn": "Xã Hùng Xuyên, Xã Chí Đám",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1544\",\"properties\":{\"matinhxa\":\"12.1557\",\"maxa\":1557},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Chí Tiên (xã)",
- "truocsn": "Xã Sơn Cương, Xã Thanh Hà, Xã Chí Tiên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1580\",\"properties\":{\"matinhxa\":\"12.1593\",\"maxa\":1593},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cự Đồng (xã)",
- "truocsn": "Xã Tất Thắng, Xã Thắng Sơn, Xã Cự Đồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1578\",\"properties\":{\"matinhxa\":\"12.1591\",\"maxa\":1591},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đà Bắc (xã)",
- "truocsn": "Thị trấn Đà Bắc, Xã Hiền Lương (huyện Đà Bắc), Xã Toàn Sơn, Xã Tú Lý",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1681\",\"properties\":{\"matinhxa\":\"12.1695\",\"maxa\":1695},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đại Đình (xã)",
- "truocsn": "Thị trấn Đại Đình, Xã Bồ Lý",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1627\",\"properties\":{\"matinhxa\":\"12.1640\",\"maxa\":1640},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đại Đồng (xã)",
- "truocsn": "Xã Ân Nghĩa, Xã Tân Mỹ, Xã Yên Nghiệp",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1672\",\"properties\":{\"matinhxa\":\"12.1686\",\"maxa\":1686},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Dân Chủ (xã)",
- "truocsn": "Xã Bảo Thanh, Xã Trị Quận, Xã Hạ Giáp, Xã Gia Thanh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1555\",\"properties\":{\"matinhxa\":\"12.1568\",\"maxa\":1568},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đan Thượng (xã)",
- "truocsn": "Xã Tứ Hiệp, Xã Đại Phạm, Xã Hà Lương, Xã Đan Thượng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1602\",\"properties\":{\"matinhxa\":\"12.1615\",\"maxa\":1615},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đạo Trù (xã)",
- "truocsn": "Xã Yên Dương, Xã Đạo Trù",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1626\",\"properties\":{\"matinhxa\":\"12.1639\",\"maxa\":1639},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đào Xá (xã)",
- "truocsn": "Xã Xuân Lộc, Xã Thạch Đồng, Xã Tân Phương, Xã Đào Xá",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1570\",\"properties\":{\"matinhxa\":\"12.1583\",\"maxa\":1583},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đoan Hùng (xã)",
- "truocsn": "Thị trấn Đoan Hùng, Xã Hợp Nhất, Xã Ngọc Quan",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1542\",\"properties\":{\"matinhxa\":\"12.1555\",\"maxa\":1555},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đồng Lương (xã)",
- "truocsn": "Xã Điêu Lương, Xã Yên Dưỡng, Xã Đồng Lương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1587\",\"properties\":{\"matinhxa\":\"12.1600\",\"maxa\":1600},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đông Thành (xã)",
- "truocsn": "Xã Khải Xuân, Xã Võ Lao, Xã Đông Thành",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1588\",\"properties\":{\"matinhxa\":\"12.1601\",\"maxa\":1601},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Đức Nhàn (xã)",
- "truocsn": "Xã Mường Chiềng, Xã Nánh Nghê",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1683\",\"properties\":{\"matinhxa\":\"12.1697\",\"maxa\":1697},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Dũng Tiến (xã)",
- "truocsn": "Xã Cuối Hạ, Xã Mỵ Hòa, Xã Nuông Dăm",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1656\",\"properties\":{\"matinhxa\":\"12.1669\",\"maxa\":1669},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hạ Hòa (xã)",
- "truocsn": "Thị trấn Hạ Hòa, Xã Minh Hạc, Xã Ấm Hạ, Xã Gia Điền",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1547\",\"properties\":{\"matinhxa\":\"12.1560\",\"maxa\":1560},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hải Lựu (xã)",
- "truocsn": "Xã Nhân Đạo, Xã Đôn Nhân, Xã Phương Khoan, Xã Hải Lựu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1614\",\"properties\":{\"matinhxa\":\"12.1627\",\"maxa\":1627},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hiền Lương (xã)",
- "truocsn": "Xã Hiền Lương (huyện Hạ Hòa), Xã Xuân Áng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1603\",\"properties\":{\"matinhxa\":\"12.1616\",\"maxa\":1616},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hiền Quan (xã)",
- "truocsn": "Xã Thanh Uyên, Xã Bắc Sơn, Xã Hiền Quan",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1562\",\"properties\":{\"matinhxa\":\"12.1575\",\"maxa\":1575},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hòa Bình (phường)",
- "truocsn": "Phường Đồng Tiến, Phường Hữu Nghị, Phường Phương Lâm, Phường Quỳnh Lâm, Phường Tân Thịnh, Phường Thịnh Lang, Phường Trung Minh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1651\",\"properties\":{\"matinhxa\":\"12.1664\",\"maxa\":1664},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hoàng An (xã)",
- "truocsn": "Xã Hoàng Đan, Xã Hoàng Lâu, Xã An Hòa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1624\",\"properties\":{\"matinhxa\":\"12.1637\",\"maxa\":1637},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hoàng Cương (xã)",
- "truocsn": "Xã Ninh Dân, Xã Mạn Lạn, Xã Hoàng Cương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1577\",\"properties\":{\"matinhxa\":\"12.1590\",\"maxa\":1590},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hội Thịnh (xã)",
- "truocsn": "Xã Duy Phiên, Xã Thanh Vân, Xã Hội Thịnh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1623\",\"properties\":{\"matinhxa\":\"12.1636\",\"maxa\":1636},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hợp Kim (xã)",
- "truocsn": "Xã Kim Lập, Xã Nam Thượng, Xã Sào Báy",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1660\",\"properties\":{\"matinhxa\":\"12.1673\",\"maxa\":1673},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hợp Lý (xã)",
- "truocsn": "Xã Ngọc Mỹ (huyện Lập Thạch), Xã Quang Sơn, Xã Hợp Lý",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1643\",\"properties\":{\"matinhxa\":\"12.1656\",\"maxa\":1656},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hùng Việt (xã)",
- "truocsn": "Xã Nhật Tiến, Xã Hùng Việt",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1569\",\"properties\":{\"matinhxa\":\"12.1582\",\"maxa\":1582},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hương Cần (xã)",
- "truocsn": "Xã Yên Lương, Xã Yên Lãng, Xã Hương Cần",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1600\",\"properties\":{\"matinhxa\":\"12.1613\",\"maxa\":1613},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hy Cương (xã)",
- "truocsn": "Xã Thanh Đình, Xã Chu Hóa, Xã Hy Cương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1560\",\"properties\":{\"matinhxa\":\"12.1573\",\"maxa\":1573},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Khả Cửu (xã)",
- "truocsn": "Xã Đông Cửu, Xã Thượng Cửu, Xã Khả Cửu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1590\",\"properties\":{\"matinhxa\":\"12.1603\",\"maxa\":1603},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Kim Bôi (xã)",
- "truocsn": "Thị trấn Bo, Xã Vĩnh Đồng, Xã Kim Bôi",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1665\",\"properties\":{\"matinhxa\":\"12.1679\",\"maxa\":1679},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Kỳ Sơn (phường)",
- "truocsn": "Phường Kỳ Sơn, Xã Độc Lập, Xã Mông Hóa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1679\",\"properties\":{\"matinhxa\":\"12.1693\",\"maxa\":1693},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Lạc Lương (xã)",
- "truocsn": "Xã Bảo Hiệu, Xã Đa Phúc, Xã Lạc Sỹ, Xã Lạc Lương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1664\",\"properties\":{\"matinhxa\":\"12.1678\",\"maxa\":1678},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lạc Sơn (xã)",
- "truocsn": "Thị trấn Vụ Bản, Xã Hương Nhượng, Xã Vũ Bình",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1650\",\"properties\":{\"matinhxa\":\"12.1663\",\"maxa\":1663},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Lạc Thủy (xã)",
- "truocsn": "Thị trấn Chi Nê, Xã Đồng Tâm, Xã Khoan Dụ, Xã Yên Bồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1646\",\"properties\":{\"matinhxa\":\"12.1659\",\"maxa\":1659},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Lai Đồng (xã)",
- "truocsn": "Xã Kiệt Sơn, Xã Tân Sơn, Xã Đồng Sơn, Xã Lai Đồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1568\",\"properties\":{\"matinhxa\":\"12.1581\",\"maxa\":1581},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Lâm Thao (xã)",
- "truocsn": "Thị trấn Hùng Sơn, Thị trấn Lâm Thao, Xã Thạch Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1565\",\"properties\":{\"matinhxa\":\"12.1578\",\"maxa\":1578},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Lập Thạch (xã)",
- "truocsn": "Thị trấn Lập Thạch, Xã Xuân Hòa, Xã Tử Du, Xã Vân Trục",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1612\",\"properties\":{\"matinhxa\":\"12.1625\",\"maxa\":1625},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Liên Châu (xã)",
- "truocsn": "Xã Đại Tự, Xã Hồng Châu, Xã Liên Châu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1636\",\"properties\":{\"matinhxa\":\"12.1649\",\"maxa\":1649},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Liên Hòa (xã)",
- "truocsn": "Thị trấn Hoa Sơn, Xã Bàn Giản, Xã Liên Hòa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1616\",\"properties\":{\"matinhxa\":\"12.1629\",\"maxa\":1629},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Liên Minh (xã)",
- "truocsn": "Xã Đỗ Sơn, Xã Đỗ Xuyên, Xã Lương Lỗ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1584\",\"properties\":{\"matinhxa\":\"12.1597\",\"maxa\":1597},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Liên Sơn (xã)",
- "truocsn": "Xã Cư Yên, Xã Liên Sơn, Xã Cao Sơn (huyện Lương Sơn)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3311\",\"properties\":{\"matinhxa\":\"12.3327\",\"maxa\":3327},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Long Cốc (xã)",
- "truocsn": "Xã Tam Thanh, Xã Vinh Tiền, Xã Long Cốc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1575\",\"properties\":{\"matinhxa\":\"12.1588\",\"maxa\":1588},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Lương Sơn (xã)",
- "truocsn": "Thị trấn Lương Sơn, Xã Hòa Sơn, Xã Lâm Sơn, Xã Nhuận Trạch, Xã Tân Vinh, Xã Cao Sơn (huyện Lương Sơn)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1682\",\"properties\":{\"matinhxa\":\"12.1696\",\"maxa\":1696},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Mai Châu (xã)",
- "truocsn": "Thị trấn Mai Châu, Xã Nà Phòn, Xã Thành Sơn, Xã Tòng Đậu, Xã Đồng Tân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1685\",\"properties\":{\"matinhxa\":\"12.1699\",\"maxa\":1699},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Mai Hạ (xã)",
- "truocsn": "Xã Chiềng Châu, Xã Vạn Mai, Xã Mai Hạ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1688\",\"properties\":{\"matinhxa\":\"12.1702\",\"maxa\":1702},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Minh Đài (xã)",
- "truocsn": "Xã Mỹ Thuận, Xã Văn Luông, Xã Minh Đài",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1598\",\"properties\":{\"matinhxa\":\"12.1611\",\"maxa\":1611},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Minh Hòa (xã)",
- "truocsn": "Xã Ngọc Lập, Xã Ngọc Đồng, Xã Minh Hòa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1594\",\"properties\":{\"matinhxa\":\"12.1607\",\"maxa\":1607},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Mường Bi (xã)",
- "truocsn": "Xã Mỹ Hòa, Xã Phong Phú, Xã Phú Cường",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1644\",\"properties\":{\"matinhxa\":\"12.1657\",\"maxa\":1657},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Mường Động (xã)",
- "truocsn": "Xã Đông Bắc, Xã Hợp Tiến, Xã Tú Sơn, Xã Vĩnh Tiến",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1655\",\"properties\":{\"matinhxa\":\"12.1668\",\"maxa\":1668},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Mường Hoa (xã)",
- "truocsn": "Xã Phú Vinh, Xã Suối Hoa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1654\",\"properties\":{\"matinhxa\":\"12.1667\",\"maxa\":1667},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Mường Thàng (xã)",
- "truocsn": "Xã Dũng Phong, Xã Nam Phong, Xã Tây Phong, Xã Thạch Yên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1652\",\"properties\":{\"matinhxa\":\"12.1665\",\"maxa\":1665},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Mường Vang (xã)",
- "truocsn": "Xã Tân Lập (huyện Lạc Sơn), Xã Quý Hòa, Xã Tuân Đạo",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1673\",\"properties\":{\"matinhxa\":\"12.1687\",\"maxa\":1687},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nật Sơn (xã)",
- "truocsn": "Xã Xuân Thủy (huyện Kim Bôi), Xã Bình Sơn, Xã Đú Sáng, Xã Hùng Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1653\",\"properties\":{\"matinhxa\":\"12.1666\",\"maxa\":1666},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Ngọc Sơn (xã)",
- "truocsn": "Xã Ngọc Lâu, Xã Tự Do, Xã Ngọc Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1669\",\"properties\":{\"matinhxa\":\"12.1683\",\"maxa\":1683},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nguyệt Đức (xã)",
- "truocsn": "Xã Văn Tiến, Xã Trung Kiên, Xã Trung Hà, Xã Nguyệt Đức",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1635\",\"properties\":{\"matinhxa\":\"12.1648\",\"maxa\":1648},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Nhân Nghĩa (xã)",
- "truocsn": "Xã Mỹ Thành, Xã Văn Nghĩa, Xã Nhân Nghĩa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1657\",\"properties\":{\"matinhxa\":\"12.1670\",\"maxa\":1670},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Nông Trang (phường)",
- "truocsn": "Phường Minh Phương, Phường Nông Trang, Xã Thụy Vân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1561\",\"properties\":{\"matinhxa\":\"12.1574\",\"maxa\":1574},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Pà Cò (xã)",
- "truocsn": "Xã Cun Pheo, Xã Hang Kia, Xã Pà Cò, Xã Đồng Tân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1686\",\"properties\":{\"matinhxa\":\"12.1700\",\"maxa\":1700},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Phong Châu (phường)",
- "truocsn": "Phường Phong Châu, Xã Phú Hộ, Xã Hà Thạch",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1579\",\"properties\":{\"matinhxa\":\"12.1592\",\"maxa\":1592},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Phú Khê (xã)",
- "truocsn": "Xã Hương Lung, Xã Phú Khê",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1581\",\"properties\":{\"matinhxa\":\"12.1594\",\"maxa\":1594},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Phú Mỹ (xã)",
- "truocsn": "Xã Liên Hoa, Xã Lệ Mỹ, Xã Phú Mỹ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1553\",\"properties\":{\"matinhxa\":\"12.1566\",\"maxa\":1566},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Phù Ninh (xã)",
- "truocsn": "Thị trấn Phong Châu, Xã Phú Nham, Xã Phú Lộc, Xã Phù Ninh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1592\",\"properties\":{\"matinhxa\":\"12.1605\",\"maxa\":1605},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Phú Thọ (phường)",
- "truocsn": "Phường Hùng Vương (thị xã Phú Thọ), Xã Văn Lung, Xã Hà Lộc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1571\",\"properties\":{\"matinhxa\":\"12.1584\",\"maxa\":1584},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Phúc Yên (phường)",
- "truocsn": "Phường Hùng Vương (thành phố Phúc Yên), Phường Hai Bà Trưng, Phường Phúc Thắng, Phường Tiền Châu, Phường Nam Viêm",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1610\",\"properties\":{\"matinhxa\":\"12.1623\",\"maxa\":1623},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Phùng Nguyên (xã)",
- "truocsn": "Xã Tứ Xã, Xã Sơn Vi, Xã Phùng Nguyên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1576\",\"properties\":{\"matinhxa\":\"12.1589\",\"maxa\":1589},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Quảng Yên (xã)",
- "truocsn": "Xã Đại An, Xã Đông Lĩnh, Xã Quảng Yên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1552\",\"properties\":{\"matinhxa\":\"12.1565\",\"maxa\":1565},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quy Đức (xã)",
- "truocsn": "Xã Đoàn Kết (huyện Đà Bắc), Xã Đồng Ruộng, Xã Trung Thành, Xã Yên Hoà",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1680\",\"properties\":{\"matinhxa\":\"12.1694\",\"maxa\":1694},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Quyết Thắng (xã)",
- "truocsn": "Xã Chí Đạo, Xã Định Cư, Xã Quyết Thắng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1676\",\"properties\":{\"matinhxa\":\"12.1690\",\"maxa\":1690},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Sơn Đông (xã)",
- "truocsn": "Xã Tây Sơn, Xã Cao Phong, Xã Sơn Đông",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1620\",\"properties\":{\"matinhxa\":\"12.1633\",\"maxa\":1633},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Sơn Lương (xã)",
- "truocsn": "Xã Mỹ Lương, Xã Mỹ Lung, Xã Lương Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1604\",\"properties\":{\"matinhxa\":\"12.1617\",\"maxa\":1617},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Sông Lô (xã)",
- "truocsn": "Xã Đồng Thịnh (huyện Sông Lô), Xã Tứ Yên, Xã Đức Bác, Xã Yên Thạch",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1618\",\"properties\":{\"matinhxa\":\"12.1631\",\"maxa\":1631},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tam Đảo (xã)",
- "truocsn": "Thị trấn Hợp Châu, Thị trấn Tam Đảo, Xã Hồ Sơn, Xã Minh Quang",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1625\",\"properties\":{\"matinhxa\":\"12.1638\",\"maxa\":1638},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tam Dương (xã)",
- "truocsn": "Thị trấn Hợp Hòa, Thị trấn Kim Long, Xã Hướng Đạo, Xã Đạo Tú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1621\",\"properties\":{\"matinhxa\":\"12.1634\",\"maxa\":1634},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tam Dương Bắc (xã)",
- "truocsn": "Xã Đồng Tĩnh, Xã Hoàng Hoa, Xã Tam Quan",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1622\",\"properties\":{\"matinhxa\":\"12.1635\",\"maxa\":1635},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tam Hồng (xã)",
- "truocsn": "Thị trấn Tam Hồng, Xã Yên Phương, Xã Yên Đồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1634\",\"properties\":{\"matinhxa\":\"12.1647\",\"maxa\":1647},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tam Nông (xã)",
- "truocsn": "Thị trấn Hưng Hóa, Xã Dân Quyền, Xã Hương Nộn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1596\",\"properties\":{\"matinhxa\":\"12.1609\",\"maxa\":1609},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Tam Sơn (xã)",
- "truocsn": "Xã Tân Lập (huyện Sông Lô), Xã Đồng Quế, Thị trấn Tam Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1617\",\"properties\":{\"matinhxa\":\"12.1630\",\"maxa\":1630},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tân Hòa (phường)",
- "truocsn": "Phường Tân Hòa, Xã Hòa Bình, Xã Yên Mông",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1662\",\"properties\":{\"matinhxa\":\"12.1676\",\"maxa\":1676},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Tân Lạc (xã)",
- "truocsn": "Thị trấn Mãn Đức, Xã Ngọc Mỹ (huyện Tân Lạc), Xã Đông Lai, Xã Thanh Hối, Xã Tử Nê",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1645\",\"properties\":{\"matinhxa\":\"12.1658\",\"maxa\":1658},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Tân Mai (xã)",
- "truocsn": "Xã Sơn Thủy (huyện Mai Châu), Xã Tân Thành",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1659\",\"properties\":{\"matinhxa\":\"12.1672\",\"maxa\":1672},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tân Pheo (xã)",
- "truocsn": "Xã Đồng Chum, Xã Giáp Đắt, Xã Tân Pheo",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1684\",\"properties\":{\"matinhxa\":\"12.1698\",\"maxa\":1698},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tân Sơn (xã)",
- "truocsn": "Thị trấn Tân Phú, Xã Thu Ngạc, Xã Thạch Kiệt",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1556\",\"properties\":{\"matinhxa\":\"12.1569\",\"maxa\":1569},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Tây Cốc (xã)",
- "truocsn": "Xã Phú Lâm, Xã Ca Đình, Xã Tây Cốc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1545\",\"properties\":{\"matinhxa\":\"12.1558\",\"maxa\":1558},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tề Lỗ (xã)",
- "truocsn": "Xã Đồng Văn, Xã Trung Nguyên, Xã Tề Lỗ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1633\",\"properties\":{\"matinhxa\":\"12.1646\",\"maxa\":1646},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Thái Hòa (xã)",
- "truocsn": "Xã Bắc Bình, Xã Liễn Sơn, Xã Thái Hòa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1615\",\"properties\":{\"matinhxa\":\"12.1628\",\"maxa\":1628},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Thanh Ba (xã)",
- "truocsn": "Thị trấn Thanh Ba, Xã Đồng Xuân, Xã Hanh Cù, Xã Vân Lĩnh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1551\",\"properties\":{\"matinhxa\":\"12.1564\",\"maxa\":1564},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Thanh Miếu (phường)",
- "truocsn": "Phường Thọ Sơn, Phường Tiên Cát, Phường Bạch Hạc, Phường Thanh Miếu, Xã Sông Lô",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1586\",\"properties\":{\"matinhxa\":\"12.1599\",\"maxa\":1599},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Thanh Sơn (xã)",
- "truocsn": "Thị trấn Thanh Sơn, Xã Sơn Hùng, Xã Giáp Lai, Xã Thạch Khoán, Xã Thục Luyện",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1558\",\"properties\":{\"matinhxa\":\"12.1571\",\"maxa\":1571},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Thanh Thủy (xã)",
- "truocsn": "Xã Sơn Thủy (huyện Thanh Thủy), Xã Đoan Hạ, Xã Bảo Yên, Thị trấn Thanh Thủy",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1595\",\"properties\":{\"matinhxa\":\"12.1608\",\"maxa\":1608},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Thịnh Minh (xã)",
- "truocsn": "Xã Hợp Thành, Xã Quang Tiến, Xã Thịnh Minh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1678\",\"properties\":{\"matinhxa\":\"12.1692\",\"maxa\":1692},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Thổ Tang (xã)",
- "truocsn": "Thị trấn Thổ Tang, Xã Thượng Trưng, Xã Tuân Chính",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1641\",\"properties\":{\"matinhxa\":\"12.1654\",\"maxa\":1654},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Thọ Văn (xã)",
- "truocsn": "Xã Dị Nậu, Xã Tề Lễ, Xã Thọ Văn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1583\",\"properties\":{\"matinhxa\":\"12.1596\",\"maxa\":1596},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Thống Nhất (phường)",
- "truocsn": "Phường Dân Chủ, Phường Thái Bình, Phường Thống Nhất, Xã Vầy Nưa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1674\",\"properties\":{\"matinhxa\":\"12.1688\",\"maxa\":1688},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Thu Cúc (xã)",
- "truocsn": "xã Thu Cúc (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1606\",\"properties\":{\"matinhxa\":\"12.1619\",\"maxa\":1619},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Thung Nai (xã)",
- "truocsn": "Xã Bắc Phong, Xã Bình Thanh, Xã Thung Nai",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1670\",\"properties\":{\"matinhxa\":\"12.1684\",\"maxa\":1684},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Thượng Cốc (xã)",
- "truocsn": "Xã Miền Đồi, Xã Văn Sơn, Xã Thượng Cốc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1661\",\"properties\":{\"matinhxa\":\"12.1674\",\"maxa\":1674},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Thượng Long (xã)",
- "truocsn": "Xã Phúc Khánh, Xã Nga Hoàng, Xã Thượng Long",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1564\",\"properties\":{\"matinhxa\":\"12.1577\",\"maxa\":1577},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Tiên Lữ (xã)",
- "truocsn": "Xã Xuân Lôi, Xã Văn Quán, Xã Đồng Ích, Xã Tiên Lữ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1619\",\"properties\":{\"matinhxa\":\"12.1632\",\"maxa\":1632},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Tiên Lương (xã)",
- "truocsn": "Xã Phượng Vĩ, Xã Minh Thắng, Xã Tiên Lương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1554\",\"properties\":{\"matinhxa\":\"12.1567\",\"maxa\":1567},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Tiền Phong (xã)",
- "truocsn": "Xã Tiền Phong, Xã Vầy Nưa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1663\",\"properties\":{\"matinhxa\":\"12.1677\",\"maxa\":1677},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Toàn Thắng (xã)",
- "truocsn": "Xã Gia Mô, Xã Lỗ Sơn, Xã Nhân Mỹ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1648\",\"properties\":{\"matinhxa\":\"12.1661\",\"maxa\":1661},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Trạm Thản (xã)",
- "truocsn": "Xã Tiên Phú, Xã Trung Giáp, Xã Trạm Thản",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1607\",\"properties\":{\"matinhxa\":\"12.1620\",\"maxa\":1620},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Trung Sơn (xã)",
- "truocsn": "xã Trung Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1605\",\"properties\":{\"matinhxa\":\"12.1618\",\"maxa\":1618},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Tu Vũ (xã)",
- "truocsn": "Xã Đồng Trung, Xã Hoàng Xá, Xã Tu Vũ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1597\",\"properties\":{\"matinhxa\":\"12.1610\",\"maxa\":1610},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Vân Bán (xã)",
- "truocsn": "Xã Tùng Khê, Xã Tam Sơn, Xã Văn Bán",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1574\",\"properties\":{\"matinhxa\":\"12.1587\",\"maxa\":1587},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Văn Lang (xã)",
- "truocsn": "Xã Vô Tranh, Xã Bằng Giã, Xã Minh Côi, Xã Văn Lang",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1549\",\"properties\":{\"matinhxa\":\"12.1562\",\"maxa\":1562},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Văn Miếu (xã)",
- "truocsn": "Xã Tân Lập, Xã Tân Minh (huyện Thanh Sơn), Xã Văn Miếu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1601\",\"properties\":{\"matinhxa\":\"12.1614\",\"maxa\":1614},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Vân Phú (phường)",
- "truocsn": "Phường Vân Phú, Xã Phượng Lâu, Xã Hùng Lô, Xã Kim Đức",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1557\",\"properties\":{\"matinhxa\":\"12.1570\",\"maxa\":1570},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Vân Sơn (xã)",
- "truocsn": "Xã Ngổ Luông, Xã Quyết Chiến, Xã Vân Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1666\",\"properties\":{\"matinhxa\":\"12.1680\",\"maxa\":1680},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Vạn Xuân (xã)",
- "truocsn": "Xã Quang Húc, Xã Lam Sơn, Xã Vạn Xuân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1599\",\"properties\":{\"matinhxa\":\"12.1612\",\"maxa\":1612},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Việt Trì (phường)",
- "truocsn": "Phường Tân Dân, Phường Gia Cẩm, Phường Minh Nông, Phường Dữu Lâu, Xã Trưng Vương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1593\",\"properties\":{\"matinhxa\":\"12.1606\",\"maxa\":1606},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Vĩnh An (xã)",
- "truocsn": "Xã Kim Xá, Xã Yên Bình, Xã Chấn Hưng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1638\",\"properties\":{\"matinhxa\":\"12.1651\",\"maxa\":1651},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Vĩnh Chân (xã)",
- "truocsn": "Xã Lang Sơn, Xã Yên Luật, Xã Vĩnh Chân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1550\",\"properties\":{\"matinhxa\":\"12.1563\",\"maxa\":1563},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Vĩnh Hưng (xã)",
- "truocsn": "Xã Nghĩa Hưng, Xã Yên Lập, Xã Đại Đồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1639\",\"properties\":{\"matinhxa\":\"12.1652\",\"maxa\":1652},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Vĩnh Phú (xã)",
- "truocsn": "Xã An Nhân, Xã Vĩnh Thịnh, Xã Ngũ Kiên, Xã Vĩnh Phú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1642\",\"properties\":{\"matinhxa\":\"12.1655\",\"maxa\":1655},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "131",
- "ten": "Vĩnh Phúc (phường)",
- "truocsn": "Phường Định Trung, Phường Liên Bảo, Phường Khai Quang, Phường Ngô Quyền, Phường Đống Đa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1609\",\"properties\":{\"matinhxa\":\"12.1622\",\"maxa\":1622},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "132",
- "ten": "Vĩnh Thành (xã)",
- "truocsn": "Xã Sao Đại Việt, Xã Lũng Hòa, Xã Tân Phú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1640\",\"properties\":{\"matinhxa\":\"12.1653\",\"maxa\":1653},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "133",
- "ten": "Vĩnh Tường (xã)",
- "truocsn": "Thị trấn Vĩnh Tường, Thị trấn Tứ Trưng, Xã Lương Điền, Xã Vũ Di",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1637\",\"properties\":{\"matinhxa\":\"12.1650\",\"maxa\":1650},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "134",
- "ten": "Vĩnh Yên (phường)",
- "truocsn": "Phường Tích Sơn, Phường Hội Hợp, Phường Đồng Tâm, Xã Thanh Trù",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1608\",\"properties\":{\"matinhxa\":\"12.1621\",\"maxa\":1621},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "135",
- "ten": "Võ Miếu (xã)",
- "truocsn": "Xã Địch Quả, Xã Cự Thắng, Xã Võ Miếu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1582\",\"properties\":{\"matinhxa\":\"12.1595\",\"maxa\":1595},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "136",
- "ten": "Xuân Đài (xã)",
- "truocsn": "Xã Kim Thượng, Xã Xuân Sơn, Xã Xuân Đài",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1585\",\"properties\":{\"matinhxa\":\"12.1598\",\"maxa\":1598},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "137",
- "ten": "Xuân Hòa (phường)",
- "truocsn": "Phường Đồng Xuân, Phường Xuân Hòa, Xã Cao Minh, Xã Ngọc Thanh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1611\",\"properties\":{\"matinhxa\":\"12.1624\",\"maxa\":1624},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "138",
- "ten": "Xuân Lãng (xã)",
- "truocsn": "Thị trấn Thanh Lãng, Thị trấn Đạo Đức, Xã Tân Phong, Xã Phú Xuân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1631\",\"properties\":{\"matinhxa\":\"12.1644\",\"maxa\":1644},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "139",
- "ten": "Xuân Lũng (xã)",
- "truocsn": "Xã Tiên Kiên, Xã Xuân Huy, Xã Xuân Lũng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1572\",\"properties\":{\"matinhxa\":\"12.1585\",\"maxa\":1585},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "140",
- "ten": "Xuân Viên (xã)",
- "truocsn": "Xã Xuân Thủy (huyện Yên Lập), Xã Xuân An, Xã Xuân Viên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1559\",\"properties\":{\"matinhxa\":\"12.1572\",\"maxa\":1572},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "141",
- "ten": "Yên Kỳ (xã)",
- "truocsn": "Xã Hương Xạ, Xã Phương Viên, Xã Yên Kỳ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1548\",\"properties\":{\"matinhxa\":\"12.1561\",\"maxa\":1561},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "142",
- "ten": "Yên Lạc (xã)",
- "truocsn": "Thị trấn Yên Lạc, Xã Bình Định, Xã Đồng Cương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1632\",\"properties\":{\"matinhxa\":\"12.1645\",\"maxa\":1645},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "143",
- "ten": "Yên Lãng (xã)",
- "truocsn": "Xã Quang Yên, Xã Lãng Công",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1613\",\"properties\":{\"matinhxa\":\"12.1626\",\"maxa\":1626},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "144",
- "ten": "Yên Lập (xã)",
- "truocsn": "Thị trấn Yên Lập, Xã Đồng Thịnh (huyện Yên Lập), Xã Hưng Long, Xã Đồng Lạc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1589\",\"properties\":{\"matinhxa\":\"12.1602\",\"maxa\":1602},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "145",
- "ten": "Yên Phú (xã)",
- "truocsn": "Xã Bình Hẻm, Xã Xuất Hóa, Xã Yên Phú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1668\",\"properties\":{\"matinhxa\":\"12.1682\",\"maxa\":1682},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "146",
- "ten": "Yên Sơn (xã)",
- "truocsn": "Xã Tinh Nhuệ, Xã Lương Nha, Xã Yên Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1563\",\"properties\":{\"matinhxa\":\"12.1576\",\"maxa\":1576},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "147",
- "ten": "Yên Thủy (xã)",
- "truocsn": "Thị trấn Hàng Trạm, Xã Lạc Thịnh, Xã Phú Lai",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1671\",\"properties\":{\"matinhxa\":\"12.1685\",\"maxa\":1685},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "148",
- "ten": "Yên Trị (xã)",
- "truocsn": "Xã Đoàn Kết (huyện Yên Thủy), Xã Hữu Lợi, Xã Ngọc Lương, Xã Yên Trị",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1667\",\"properties\":{\"matinhxa\":\"12.1681\",\"maxa\":1681},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Lạc (xã)",
- "truocsn": "Xã Lệ Viễn, Xã An Lạc",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2121\",\"properties\":{\"matinhxa\":\"2.2135\",\"maxa\":2135},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bắc Giang (phường)",
- "truocsn": "Phường Thọ Xương, Phường Ngô Quyền, Phường Xương Giang, Phường Hoàng Văn Thụ, Phường Trần Phú, Phường Dĩnh Kế, Phường Dĩnh Trì",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2146\",\"properties\":{\"matinhxa\":\"2.2160\",\"maxa\":2160},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bắc Lũng (xã)",
- "truocsn": "Xã Yên Sơn, Xã Lan Mẫu, Xã Khám Lạng, Xã Bắc Lũng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2178\",\"properties\":{\"matinhxa\":\"2.2192\",\"maxa\":2192},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bảo Đài (xã)",
- "truocsn": "Xã Bảo Sơn, Xã Thanh Lâm, Xã Tam Dị, Xã Bảo Đài",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2176\",\"properties\":{\"matinhxa\":\"2.2190\",\"maxa\":2190},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Biển Động (xã)",
- "truocsn": "Thị trấn Biển Động, Xã Kim Sơn, Xã Phú Nhuận",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2113\",\"properties\":{\"matinhxa\":\"2.2127\",\"maxa\":2127},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Biên Sơn (xã)",
- "truocsn": "Xã Phong Vân, Xã Biên Sơn, Trường bắn TB1",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2111\",\"properties\":{\"matinhxa\":\"2.2125\",\"maxa\":2125},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bố Hạ (xã)",
- "truocsn": "Thị trấn Bố Hạ, Xã Đông Sơn, Xã Hương Vĩ",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2164\",\"properties\":{\"matinhxa\":\"2.2178\",\"maxa\":2178},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bồng Lai (phường)",
- "truocsn": "Phường Cách Bi, Phường Bồng Lai, Xã Mộ Đạo",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2191\",\"properties\":{\"matinhxa\":\"2.2205\",\"maxa\":2205},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cẩm Lý (xã)",
- "truocsn": "Xã Đan Hội, Xã Cẩm Lý",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2179\",\"properties\":{\"matinhxa\":\"2.2193\",\"maxa\":2193},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cảnh Thụy (phường)",
- "truocsn": "Phường Cảnh Thụy, Xã Tiến Dũng, Xã Tư Mại",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2153\",\"properties\":{\"matinhxa\":\"2.2167\",\"maxa\":2167},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cao Đức (xã)",
- "truocsn": "Xã Vạn Ninh, Xã Cao Đức",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2135\",\"properties\":{\"matinhxa\":\"2.2149\",\"maxa\":2149},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Chi Lăng (xã)",
- "truocsn": "Xã Yên Giả, Xã Chi Lăng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2181\",\"properties\":{\"matinhxa\":\"2.2195\",\"maxa\":2195},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Chũ (phường)",
- "truocsn": "Phường Thanh Hải, Phường Hồng Giang, Phường Trù Hựu, Phường Chũ",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2106\",\"properties\":{\"matinhxa\":\"2.2120\",\"maxa\":2120},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đa Mai (phường)",
- "truocsn": "Phường Tân Mỹ, Phường Mỹ Độ, Phường Song Mai, Phường Đa Mai, Xã Quế Nham",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2147\",\"properties\":{\"matinhxa\":\"2.2161\",\"maxa\":2161},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đại Đồng (xã)",
- "truocsn": "Xã Tri Phương, Xã Hoàn Sơn, Xã Đại Đồng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2125\",\"properties\":{\"matinhxa\":\"2.2139\",\"maxa\":2139},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đại Lai (xã)",
- "truocsn": "Xã Song Giang, Xã Đại Lai",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2136\",\"properties\":{\"matinhxa\":\"2.2150\",\"maxa\":2150},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đại Sơn (xã)",
- "truocsn": "Xã Giáo Liêm, Xã Phúc Sơn, Xã Đại Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2119\",\"properties\":{\"matinhxa\":\"2.2133\",\"maxa\":2133},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đào Viên (phường)",
- "truocsn": "Phường Phù Lương, Xã Ngọc Xá, Xã Đào Viên",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2185\",\"properties\":{\"matinhxa\":\"2.2199\",\"maxa\":2199},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đèo Gia (xã)",
- "truocsn": "Xã Tân Lập, Xã Đèo Gia",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2115\",\"properties\":{\"matinhxa\":\"2.2129\",\"maxa\":2129},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đông Cứu (xã)",
- "truocsn": "Xã Giang Sơn, Xã Lãng Ngâm, Xã Đông Cứu",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2138\",\"properties\":{\"matinhxa\":\"2.2152\",\"maxa\":2152},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đồng Kỳ (xã)",
- "truocsn": "Xã Đồng Hưu, Xã Đồng Vương, Xã Đồng Kỳ",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2163\",\"properties\":{\"matinhxa\":\"2.2177\",\"maxa\":2177},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đồng Nguyên (phường)",
- "truocsn": "Phường Trang Hạ, Phường Đồng Kỵ, Phường Đồng Nguyên",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2199\",\"properties\":{\"matinhxa\":\"2.2213\",\"maxa\":2213},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đông Phú (xã)",
- "truocsn": "Xã Đông Hưng, Xã Đông Phú",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2175\",\"properties\":{\"matinhxa\":\"2.2189\",\"maxa\":2189},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đồng Việt (xã)",
- "truocsn": "Xã Đức Giang, Xã Đồng Phúc, Xã Đồng Việt",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2187\",\"properties\":{\"matinhxa\":\"2.2201\",\"maxa\":2201},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Dương Hưu (xã)",
- "truocsn": "Xã Long Sơn, Xã Dương Hưu",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2124\",\"properties\":{\"matinhxa\":\"2.2138\",\"maxa\":2138},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Gia Bình (xã)",
- "truocsn": "Thị trấn Gia Bình, Xã Xuân Lai, Xã Quỳnh Phú, Xã Đại Bái",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2134\",\"properties\":{\"matinhxa\":\"2.2148\",\"maxa\":2148},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hạp Lĩnh (phường)",
- "truocsn": "Phường Khắc Niệm, Phường Hạp Lĩnh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2203\",\"properties\":{\"matinhxa\":\"2.2217\",\"maxa\":2217},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hiệp Hòa (xã)",
- "truocsn": "Thị trấn Thắng, Xã Đông Lỗ, Xã Đoan Bái, Xã Danh Thắng, Xã Lương Phong",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2156\",\"properties\":{\"matinhxa\":\"2.2170\",\"maxa\":2170},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hoàng Vân (xã)",
- "truocsn": "Xã Đồng Tiến (huyện Hiệp Hòa), Xã Toàn Thắng, Xã Ngọc Sơn, Xã Hoàng Vân",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2157\",\"properties\":{\"matinhxa\":\"2.2171\",\"maxa\":2171},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hợp Thịnh (xã)",
- "truocsn": "Xã Thường Thắng, Xã Mai Trung, Xã Hùng Thái, Xã Sơn Thịnh, Xã Hợp Thịnh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2158\",\"properties\":{\"matinhxa\":\"2.2172\",\"maxa\":2172},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Kép (xã)",
- "truocsn": "Thị trấn Kép, Xã Quang Thịnh, Xã Hương Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2171\",\"properties\":{\"matinhxa\":\"2.2185\",\"maxa\":2185},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Kiên Lao (xã)",
- "truocsn": "Xã Kiên Thành, Xã Kiên Lao",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2110\",\"properties\":{\"matinhxa\":\"2.2124\",\"maxa\":2124},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Kinh Bắc (phường)",
- "truocsn": "Phường Suối Hoa, Phường Tiền Ninh Vệ, Phường Vạn An, Phường Hòa Long, Phường Khúc Xuyên, Phường Kinh Bắc",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2144\",\"properties\":{\"matinhxa\":\"2.2158\",\"maxa\":2158},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Lâm Thao (xã)",
- "truocsn": "Xã Bình Định, Xã Quảng Phú, Xã Lâm Thao",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2142\",\"properties\":{\"matinhxa\":\"2.2156\",\"maxa\":2156},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Lạng Giang (xã)",
- "truocsn": "Thị trấn Vôi, Xã Xương Lâm, Xã Hương Lạc, Xã Tân Hưng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2169\",\"properties\":{\"matinhxa\":\"2.2183\",\"maxa\":2183},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Liên Bão (xã)",
- "truocsn": "Xã Hiên Vân, Xã Việt Đoàn, Xã Liên Bão",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2131\",\"properties\":{\"matinhxa\":\"2.2145\",\"maxa\":2145},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Lục Nam (xã)",
- "truocsn": "Thị trấn Phương Sơn, Thị trấn Đồi Ngô, Xã Cương Sơn, Xã Tiên Nha, Xã Chu Điện",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2174\",\"properties\":{\"matinhxa\":\"2.2188\",\"maxa\":2188},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lục Ngạn (xã)",
- "truocsn": "Thị trấn Phì Điền, Xã Giáp Sơn, Xã Đồng Cốc, Xã Tân Hoa, Xã Tân Quang",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2112\",\"properties\":{\"matinhxa\":\"2.2126\",\"maxa\":2126},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lục Sơn (xã)",
- "truocsn": "Xã Bình Sơn, Xã Lục Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2105\",\"properties\":{\"matinhxa\":\"2.2119\",\"maxa\":2119},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Lương Tài (xã)",
- "truocsn": "Thị trấn Thứa, Xã Phú Hòa, Xã Tân Lãng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2139\",\"properties\":{\"matinhxa\":\"2.2153\",\"maxa\":2153},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Mão Điền (phường)",
- "truocsn": "Phường An Bình, Xã Hoài Thượng, Xã Mão Điền",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2194\",\"properties\":{\"matinhxa\":\"2.2208\",\"maxa\":2208},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Mỹ Thái (xã)",
- "truocsn": "Xã Xuân Hương, Xã Dương Đức, Xã Tân Thanh, Xã Mỹ Thái",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2172\",\"properties\":{\"matinhxa\":\"2.2186\",\"maxa\":2186},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Nam Dương (xã)",
- "truocsn": "Xã Tân Mộc, Xã Nam Dương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2114\",\"properties\":{\"matinhxa\":\"2.2128\",\"maxa\":2128},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Nam Sơn (phường)",
- "truocsn": "Phường Vân Dương, Phường Nam Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2202\",\"properties\":{\"matinhxa\":\"2.2216\",\"maxa\":2216},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Nếnh (phường)",
- "truocsn": "Phường Quang Châu, Phường Vân Trung, Phường Tăng Tiến, Phường Nếnh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2155\",\"properties\":{\"matinhxa\":\"2.2169\",\"maxa\":2169},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nghĩa Phương (xã)",
- "truocsn": "Xã Trường Giang, Xã Huyền Sơn, Xã Nghĩa Phương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2177\",\"properties\":{\"matinhxa\":\"2.2191\",\"maxa\":2191},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Ngọc Thiện (xã)",
- "truocsn": "Xã Song Vân, Xã Ngọc Châu, Xã Ngọc Vân, Xã Việt Ngọc, Xã Ngọc Thiện",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2168\",\"properties\":{\"matinhxa\":\"2.2182\",\"maxa\":2182},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Nhã Nam (xã)",
- "truocsn": "Thị trấn Nhã Nam, Xã Tân Trung, Xã Liên Sơn, Xã An Dương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2166\",\"properties\":{\"matinhxa\":\"2.2180\",\"maxa\":2180},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Nhân Hòa (phường)",
- "truocsn": "Phường Đại Xuân, Phường Nhân Hòa, Xã Việt Thống",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2183\",\"properties\":{\"matinhxa\":\"2.2197\",\"maxa\":2197},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Nhân Thắng (xã)",
- "truocsn": "Thị trấn Nhân Thắng, Xã Thái Bảo, Xã Bình Dương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2137\",\"properties\":{\"matinhxa\":\"2.2151\",\"maxa\":2151},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Ninh Xá (phường)",
- "truocsn": "Phường Ninh Xá, Xã Nguyệt Đức",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2200\",\"properties\":{\"matinhxa\":\"2.2214\",\"maxa\":2214},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phật Tích (xã)",
- "truocsn": "Xã Minh Đạo, Xã Cảnh Hưng, Xã Phật Tích",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2132\",\"properties\":{\"matinhxa\":\"2.2146\",\"maxa\":2146},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phù Khê (phường)",
- "truocsn": "Phường Châu Khê, Phường Hương Mạc, Phường Phù Khê",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2198\",\"properties\":{\"matinhxa\":\"2.2212\",\"maxa\":2212},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phù Lãng (xã)",
- "truocsn": "Xã Châu Phong, Xã Đức Long, Xã Phù Lãng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2190\",\"properties\":{\"matinhxa\":\"2.2204\",\"maxa\":2204},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phúc Hoà (xã)",
- "truocsn": "Xã Hợp Đức, Xã Liên Chung, Xã Phúc Hòa",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2167\",\"properties\":{\"matinhxa\":\"2.2181\",\"maxa\":2181},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phương Liễu (phường)",
- "truocsn": "Phường Phượng Mao, Phường Phương Liễu",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2184\",\"properties\":{\"matinhxa\":\"2.2198\",\"maxa\":2198},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Phượng Sơn (phường)",
- "truocsn": "Phường Phượng Sơn, Xã Quý Sơn, Xã Mỹ An",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2116\",\"properties\":{\"matinhxa\":\"2.2130\",\"maxa\":2130},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Quang Trung (xã)",
- "truocsn": "Xã Lam Sơn, Xã Quang Trung",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2149\",\"properties\":{\"matinhxa\":\"2.2163\",\"maxa\":2163},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Quế Võ (phường)",
- "truocsn": "Phường Phố Mới, Phường Bằng An, Phường Việt Hùng, Phường Quế Tân",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2180\",\"properties\":{\"matinhxa\":\"2.2194\",\"maxa\":2194},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Sa Lý (xã)",
- "truocsn": "Xã Phong Minh, Xã Sa Lý",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2108\",\"properties\":{\"matinhxa\":\"2.2122\",\"maxa\":2122},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Sơn Động (xã)",
- "truocsn": "Thị trấn An Châu, Xã An Bá, Xã Vĩnh An",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2117\",\"properties\":{\"matinhxa\":\"2.2131\",\"maxa\":2131},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Sơn Hải (xã)",
- "truocsn": "Xã Hộ Đáp, Xã Sơn Hải",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2109\",\"properties\":{\"matinhxa\":\"2.2123\",\"maxa\":2123},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Song Liễu (phường)",
- "truocsn": "Phường Xuân Lâm, Phường Hà Mãn, Xã Ngũ Thái, Xã Song Liễu",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2201\",\"properties\":{\"matinhxa\":\"2.2215\",\"maxa\":2215},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tam Đa (xã)",
- "truocsn": "Xã Thụy Hòa, Xã Đông Phong, Xã Tam Đa",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2126\",\"properties\":{\"matinhxa\":\"2.2140\",\"maxa\":2140},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tam Giang (xã)",
- "truocsn": "Xã Hòa Tiến, Xã Tam Giang",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2127\",\"properties\":{\"matinhxa\":\"2.2141\",\"maxa\":2141},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tam Sơn (phường)",
- "truocsn": "Phường Tương Giang, Phường Tam Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2197\",\"properties\":{\"matinhxa\":\"2.2211\",\"maxa\":2211},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tam Tiến (xã)",
- "truocsn": "Xã Tiến Thắng, Xã An Thượng, Xã Tam Tiến",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2161\",\"properties\":{\"matinhxa\":\"2.2175\",\"maxa\":2175},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tân An (phường)",
- "truocsn": "Phường Tân An, Xã Quỳnh Sơn, Xã Trí Yên, Xã Lãng Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2151\",\"properties\":{\"matinhxa\":\"2.2165\",\"maxa\":2165},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Chi (xã)",
- "truocsn": "Xã Lạc Vệ, Xã Tân Chi",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2133\",\"properties\":{\"matinhxa\":\"2.2147\",\"maxa\":2147},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Dĩnh (xã)",
- "truocsn": "Xã Tân Dĩnh, Xã Thái Đào, Xã Đại Lâm",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2173\",\"properties\":{\"matinhxa\":\"2.2187\",\"maxa\":2187},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Sơn (xã)",
- "truocsn": "Xã Cấm Sơn, Xã Tân Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2107\",\"properties\":{\"matinhxa\":\"2.2121\",\"maxa\":2121},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tân Tiến (phường)",
- "truocsn": "Phường Hương Gián, Phường Tân Tiến, Xã Xuân Phú",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2152\",\"properties\":{\"matinhxa\":\"2.2166\",\"maxa\":2166},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tân Yên (xã)",
- "truocsn": "Thị trấn Cao Thượng, Xã Cao Xá, Xã Việt Lập, Xã Ngọc Lý",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2165\",\"properties\":{\"matinhxa\":\"2.2179\",\"maxa\":2179},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tây Yên Tử (xã)",
- "truocsn": "Thị trấn Tây Yên Tử, Xã Thanh Luận",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2118\",\"properties\":{\"matinhxa\":\"2.2132\",\"maxa\":2132},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thuận Thành (phường)",
- "truocsn": "Phường Hồ, Phường Song Hồ, Phường Gia Đông, Xã Đại Đồng Thành",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2193\",\"properties\":{\"matinhxa\":\"2.2207\",\"maxa\":2207},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tiên Du (xã)",
- "truocsn": "Thị trấn Lim, Xã Nội Duệ, Xã Phú Lâm",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2130\",\"properties\":{\"matinhxa\":\"2.2144\",\"maxa\":2144},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tiên Lục (xã)",
- "truocsn": "Xã Đào Mỹ, Xã Nghĩa Hòa, Xã An Hà, Xã Nghĩa Hưng, Xã Tiên Lục",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2170\",\"properties\":{\"matinhxa\":\"2.2184\",\"maxa\":2184},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Tiền Phong (phường)",
- "truocsn": "Phường Nội Hoàng, Phường Song Khê, Phường Đồng Sơn, Phường Tiền Phong",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2148\",\"properties\":{\"matinhxa\":\"2.2162\",\"maxa\":2162},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Trạm Lộ (phường)",
- "truocsn": "Phường Trạm Lộ, Xã Nghĩa Đạo",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2196\",\"properties\":{\"matinhxa\":\"2.2210\",\"maxa\":2210},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Trí Quả (phường)",
- "truocsn": "Phường Thanh Khương, Phường Trí Quả, Xã Đình Tổ",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2195\",\"properties\":{\"matinhxa\":\"2.2209\",\"maxa\":2209},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Trung Chính (xã)",
- "truocsn": "Xã Phú Lương, Xã Quang Minh, Xã Trung Chính",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2141\",\"properties\":{\"matinhxa\":\"2.2155\",\"maxa\":2155},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Trung Kênh (xã)",
- "truocsn": "Xã An Thịnh, Xã An Tập, Xã Trung Kênh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2140\",\"properties\":{\"matinhxa\":\"2.2154\",\"maxa\":2154},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trường Sơn (xã)",
- "truocsn": "Xã Vô Tranh, Xã Trường Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2104\",\"properties\":{\"matinhxa\":\"2.2118\",\"maxa\":2118},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tự Lạn (phường)",
- "truocsn": "Phường Tự Lạn, Xã Việt Tiến, Xã Thượng Lan, Xã Hương Mai",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2188\",\"properties\":{\"matinhxa\":\"2.2202\",\"maxa\":2202},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Từ Sơn (phường)",
- "truocsn": "Phường Đông Ngàn, Phường Tân Hồng, Phường Phù Chẩn, Phường Đình Bảng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2192\",\"properties\":{\"matinhxa\":\"2.2206\",\"maxa\":2206},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tuấn Đạo (xã)",
- "truocsn": "xã Tuấn Đạo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2123\",\"properties\":{\"matinhxa\":\"2.2137\",\"maxa\":2137},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Vân Hà (phường)",
- "truocsn": "Phường Ninh Sơn, Phường Quảng Minh, Xã Tiên Sơn, Xã Trung Sơn, Xã Vân Hà",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2154\",\"properties\":{\"matinhxa\":\"2.2168\",\"maxa\":2168},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Văn Môn (xã)",
- "truocsn": "Xã Yên Phụ, Xã Đông Thọ, Xã Văn Môn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2129\",\"properties\":{\"matinhxa\":\"2.2143\",\"maxa\":2143},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Vân Sơn (xã)",
- "truocsn": "Xã Hữu Sản, Xã Vân Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2120\",\"properties\":{\"matinhxa\":\"2.2134\",\"maxa\":2134},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Việt Yên (phường)",
- "truocsn": "Phường Bích Động, Phường Hồng Thái, Xã Minh Đức, Xã Nghĩa Trung",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2189\",\"properties\":{\"matinhxa\":\"2.2203\",\"maxa\":2203},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Võ Cường (phường)",
- "truocsn": "Phường Đại Phúc, Phường Phong Khê, Phường Võ Cường",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2145\",\"properties\":{\"matinhxa\":\"2.2159\",\"maxa\":2159},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Vũ Ninh (phường)",
- "truocsn": "Phường Kim Chân, Phường Đáp Cầu, Phường Thị Cầu, Phường Vũ Ninh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2143\",\"properties\":{\"matinhxa\":\"2.2157\",\"maxa\":2157},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Xuân Cẩm (xã)",
- "truocsn": "Thị trấn Bắc Lý, Xã Hương Lâm, Xã Mai Đình, Xã Châu Minh, Xã Xuân Cẩm",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2159\",\"properties\":{\"matinhxa\":\"2.2173\",\"maxa\":2173},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Xuân Lương (xã)",
- "truocsn": "Xã Đồng Tiến (huyện Yên Thế), Xã Canh Nậu, Xã Xuân Lương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2160\",\"properties\":{\"matinhxa\":\"2.2174\",\"maxa\":2174},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Yên Định (xã)",
- "truocsn": "Xã Cẩm Đàn, Xã Yên Định",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2122\",\"properties\":{\"matinhxa\":\"2.2136\",\"maxa\":2136},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Yên Dũng (phường)",
- "truocsn": "Phường Tân Liễu, Phường Nham Biền, Xã Yên Lư",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2150\",\"properties\":{\"matinhxa\":\"2.2164\",\"maxa\":2164},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Yên Phong (xã)",
- "truocsn": "Thị trấn Chờ, Xã Trung Nghĩa, Xã Long Châu, Xã Đông Tiến",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2182\",\"properties\":{\"matinhxa\":\"2.2196\",\"maxa\":2196},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Yên Thế (xã)",
- "truocsn": "Thị trấn Phồn Xương, Xã Đồng Lạc, Xã Đồng Tâm, Xã Tân Hiệp, Xã Tân Sỏi",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2162\",\"properties\":{\"matinhxa\":\"2.2176\",\"maxa\":2176},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Yên Trung (xã)",
- "truocsn": "Xã Dũng Liệt, Xã Yên Trung",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2128\",\"properties\":{\"matinhxa\":\"2.2142\",\"maxa\":2142},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Ái Quốc (phường)",
- "truocsn": "Phường Ái Quốc, Xã Quyết Thắng, Xã Hồng Lạc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.858\",\"properties\":{\"matinhxa\":\"4.869\",\"maxa\":869},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Biên (phường)",
- "truocsn": "Phường An Dương, Phường An Biên, Phường Trần Nguyên Hãn, Phường Vĩnh Niệm",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1194\",\"properties\":{\"matinhxa\":\"4.1205\",\"maxa\":1205},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Dương (phường)",
- "truocsn": "Phường Nam Sơn (quận An Dương), Phường An Hải, Phường Lê Lợi, Phường Đồng Thái, Phường Tân Tiến, Phường An Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1169\",\"properties\":{\"matinhxa\":\"4.1180\",\"maxa\":1180},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Hải (phường)",
- "truocsn": "Phường An Đồng, Phường Hồng Thái, Phường Lê Lợi, Phường An Hải, Phường Đồng Thái",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1236\",\"properties\":{\"matinhxa\":\"4.1247\",\"maxa\":1247},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Hưng (xã)",
- "truocsn": "Xã An Thái, Xã An Thọ, Xã Chiến Thắng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1053\",\"properties\":{\"matinhxa\":\"4.1064\",\"maxa\":1064},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Khánh (xã)",
- "truocsn": "Xã Tân Viên, Xã Mỹ Đức, Xã Thái Sơn",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1075\",\"properties\":{\"matinhxa\":\"4.1086\",\"maxa\":1086},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "An Lão (xã)",
- "truocsn": "Thị trấn An Lão, Xã An Thắng, Xã Tân Dân, Xã An Tiến, Thị trấn Trường Sơn, Xã Thái Sơn",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1095\",\"properties\":{\"matinhxa\":\"4.1106\",\"maxa\":1106},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "An Phong (phường)",
- "truocsn": "Phường An Hòa, Phường Hồng Phong, Phường Đại Bản, Phường Lê Thiện, Phường Tân Tiến, Phường Lê Lợi",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1097\",\"properties\":{\"matinhxa\":\"4.1108\",\"maxa\":1108},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "An Phú (xã)",
- "truocsn": "Xã An Bình, Xã An Phú, Xã Cộng Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.963\",\"properties\":{\"matinhxa\":\"4.974\",\"maxa\":974},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "An Quang (xã)",
- "truocsn": "Xã Quốc Tuấn, Xã Quang Trung (huyện An Lão), Xã Quang Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1082\",\"properties\":{\"matinhxa\":\"4.1093\",\"maxa\":1093},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "An Thành (xã)",
- "truocsn": "Xã Ngũ Phúc (huyện Kim Thành), Xã Kim Tân, Xã Kim Đính",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.945\",\"properties\":{\"matinhxa\":\"4.956\",\"maxa\":956},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "An Trường (xã)",
- "truocsn": "Xã Bát Trang, Xã Trường Thọ, Xã Trường Thành",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1096\",\"properties\":{\"matinhxa\":\"4.1107\",\"maxa\":1107},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bắc An Phụ (phường)",
- "truocsn": "Phường Thất Hùng, Xã Bạch Đằng (thị xã Kinh Môn), Xã Lê Ninh, Phường Văn Đức",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.860\",\"properties\":{\"matinhxa\":\"4.871\",\"maxa\":871},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bắc Thanh Miện (xã)",
- "truocsn": "Xã Hồng Quang, Xã Lam Sơn, Xã Lê Hồng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1045\",\"properties\":{\"matinhxa\":\"4.1056\",\"maxa\":1056},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Bạch Đằng (phường)",
- "truocsn": "Phường Minh Đức, Xã Bạch Đằng (thành phố Thủy Nguyên), Phường Phạm Ngũ Lão",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1171\",\"properties\":{\"matinhxa\":\"4.1182\",\"maxa\":1182},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Bạch Long Vĩ (đặc khu)",
- "truocsn": "Huyện Bạch Long Vĩ",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3310\",\"properties\":{\"matinhxa\":\"4.3326\",\"maxa\":3326},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Bình Giang (xã)",
- "truocsn": "Xã Tân Việt (huyện Bình Giang), Xã Long Xuyên, Xã Hồng Khê, Xã Cổ Bì, Xã Vĩnh Hồng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1012\",\"properties\":{\"matinhxa\":\"4.1023\",\"maxa\":1023},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cẩm Giang (xã)",
- "truocsn": "Thị trấn Cẩm Giang, Xã Định Sơn, Xã Cẩm Hoàng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1010\",\"properties\":{\"matinhxa\":\"4.1021\",\"maxa\":1021},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Cẩm Giàng (xã)",
- "truocsn": "Xã Lương Điền, Xã Ngọc Liên, Xã Cẩm Hưng, Xã Phúc Điền",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1015\",\"properties\":{\"matinhxa\":\"4.1026\",\"maxa\":1026},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Cát Hải (đặc khu)",
- "truocsn": "Thị trấn Cát Hải, Thị trấn Cát Bà, Xã Đồng Bài, Xã Hoàng Châu, Xã Nghĩa Lộ, Xã Văn Phong, Xã Gia Luận, Xã Hiền Hào, Xã Phù Long, Xã Trân Châu, Xã Việt Hải, Xã Xuân Đám",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.989\",\"properties\":{\"matinhxa\":\"4.1000\",\"maxa\":1000},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Chấn Hưng (xã)",
- "truocsn": "Xã Nam Hưng (huyện Tiên Lãng), Xã Bắc Hưng, Xã Đông Hưng, Xã Tây Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1129\",\"properties\":{\"matinhxa\":\"4.1140\",\"maxa\":1140},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Chí Linh (phường)",
- "truocsn": "Phường Phả Lại, Phường Cổ Thành, Xã Nhân Huệ",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.861\",\"properties\":{\"matinhxa\":\"4.872\",\"maxa\":872},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Chí Minh (xã)",
- "truocsn": "Xã An Thanh, Xã Văn Tố, Xã Chí Minh",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.886\",\"properties\":{\"matinhxa\":\"4.897\",\"maxa\":897},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Chu Văn An (phường)",
- "truocsn": "Phường Sao Đỏ, Phường Văn An, Phường Chí Minh, Phường Thái Học, Phường Cộng Hòa, Phường Văn Đức",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.862\",\"properties\":{\"matinhxa\":\"4.873\",\"maxa\":873},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đại Sơn (xã)",
- "truocsn": "Xã Bình Lãng, Xã Đại Sơn, Xã Thanh Hải, Xã Hưng Đạo (huyện Tứ Kỳ)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.952\",\"properties\":{\"matinhxa\":\"4.963\",\"maxa\":963},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đồ Sơn (phường)",
- "truocsn": "Phường Hải Sơn, Phường Tân Thành, Phường Vạn Hương, Phường Ngọc Xuyên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.988\",\"properties\":{\"matinhxa\":\"4.999\",\"maxa\":999},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đông Hải (phường)",
- "truocsn": "Phường Đông Hải 1, Phường Đông Hải 2, Phường Nam Hải",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.969\",\"properties\":{\"matinhxa\":\"4.980\",\"maxa\":980},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đường An (xã)",
- "truocsn": "Xã Thúc Kháng, Xã Thái Minh, Xã Tân Hồng, Xã Thái Dương, Xã Thái Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1011\",\"properties\":{\"matinhxa\":\"4.1022\",\"maxa\":1022},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Dương Kinh (phường)",
- "truocsn": "Phường Hòa Nghĩa, Phường Tân Thành, Phường Anh Dũng, Phường Hải Thành",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.983\",\"properties\":{\"matinhxa\":\"4.994\",\"maxa\":994},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Gia Lộc (xã)",
- "truocsn": "Xã Gia Tiến, Thị trấn Gia Lộc, Xã Gia Phúc, Xã Yết Kiêu, Xã Lê Lợi (huyện Gia Lộc)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1000\",\"properties\":{\"matinhxa\":\"4.1011\",\"maxa\":1011},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Gia Phúc (xã)",
- "truocsn": "Xã Toàn Thắng, Xã Hoàng Diệu, Xã Hồng Hưng, Xã Thống Kênh, Xã Đoàn Thượng, Xã Quang Đức, Thị trấn Gia Lộc, Xã Gia Phúc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.980\",\"properties\":{\"matinhxa\":\"4.991\",\"maxa\":991},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Gia Viên (phường)",
- "truocsn": "Phường Đằng Giang, Phường Cầu Đất, Phường Lạch Tray, Phường Gia Viên, Phường Đông Khê",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1193\",\"properties\":{\"matinhxa\":\"4.1204\",\"maxa\":1204},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hà Bắc (xã)",
- "truocsn": "Xã Tân Việt (huyện Thanh Hà), Xã Cẩm Việt, Xã Hồng Lạc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.938\",\"properties\":{\"matinhxa\":\"4.949\",\"maxa\":949},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hà Đông (xã)",
- "truocsn": "Xã Thanh Hồng, Xã Vĩnh Cường, Xã Thanh Quang",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.966\",\"properties\":{\"matinhxa\":\"4.977\",\"maxa\":977},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hà Nam (xã)",
- "truocsn": "Xã Thanh Xuân, Xã Liên Mạc, Xã Thanh Lang, Xã Thanh An, Xã Hòa Bình",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.944\",\"properties\":{\"matinhxa\":\"4.955\",\"maxa\":955},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hà Tây (xã)",
- "truocsn": "Xã Tân An, Xã An Phượng, Xã Thanh Hải",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.953\",\"properties\":{\"matinhxa\":\"4.964\",\"maxa\":964},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hải An (phường)",
- "truocsn": "Phường Cát Bi, Phường Đằng Lâm, Phường Thành Tô, Phường Đằng Hải, Phường Tràng Cát, Phường Nam Hải, Phường Đông Hải 2",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1197\",\"properties\":{\"matinhxa\":\"4.1208\",\"maxa\":1208},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hải Dương (phường)",
- "truocsn": "Phường Trần Hưng Đạo (thành phố Hải Dương), Phường Nhị Châu, Phường Ngọc Châu, Phường Quang Trung",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.967\",\"properties\":{\"matinhxa\":\"4.978\",\"maxa\":978},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hải Hưng (xã)",
- "truocsn": "Xã Tân Trào (huyện Thanh Miện), Xã Ngô Quyền, Xã Đoàn Kết",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1046\",\"properties\":{\"matinhxa\":\"4.1057\",\"maxa\":1057},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hòa Bình (phường)",
- "truocsn": "Phường Hòa Bình, Phường An Lư, Phường Thủy Hà",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1172\",\"properties\":{\"matinhxa\":\"4.1183\",\"maxa\":1183},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hồng An (phường)",
- "truocsn": "Phường Quán Toan, Phường An Hồng, Phường An Hưng, Phường Đại Bản, Phường Lê Thiện, Phường Tân Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1223\",\"properties\":{\"matinhxa\":\"4.1234\",\"maxa\":1234},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hồng Bàng (phường)",
- "truocsn": "Phường Hoàng Văn Thụ, Phường Minh Khai, Phường Phan Bội Châu, Phường Thượng Lý, Phường Sở Dầu, Phường Hùng Vương, Phường Gia Viên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1178\",\"properties\":{\"matinhxa\":\"4.1189\",\"maxa\":1189},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hồng Châu (xã)",
- "truocsn": "Xã Tân Quang, Xã Văn Hội, Xã Hưng Long",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1038\",\"properties\":{\"matinhxa\":\"4.1049\",\"maxa\":1049},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hợp Tiến (xã)",
- "truocsn": "Xã Nam Hưng (huyện Nam Sách), Xã Nam Tân, Xã Hợp Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.864\",\"properties\":{\"matinhxa\":\"4.875\",\"maxa\":875},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hưng Đạo (phường)",
- "truocsn": "Phường Đa Phúc, Phường Hưng Đạo, Phường Anh Dũng, Phường Hải Thành",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1174\",\"properties\":{\"matinhxa\":\"4.1185\",\"maxa\":1185},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Hùng Thắng (xã)",
- "truocsn": "Xã Hùng Thắng (huyện Tiên Lãng), Xã Vinh Quang",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.987\",\"properties\":{\"matinhxa\":\"4.998\",\"maxa\":998},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Kẻ Sặt (xã)",
- "truocsn": "Xã Vĩnh Hưng, Xã Hùng Thắng (huyện Bình Giang), Thị trấn Kẻ Sặt, Xã Vĩnh Hồng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1014\",\"properties\":{\"matinhxa\":\"4.1025\",\"maxa\":1025},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Khúc Thừa Dụ (xã)",
- "truocsn": "Xã Bình Xuyên, Xã Hồng Phong (huyện Ninh Giang), Xã Kiến Phúc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1039\",\"properties\":{\"matinhxa\":\"4.1050\",\"maxa\":1050},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Kiến An (phường)",
- "truocsn": "Phường Nam Sơn (quận Kiến An), Phường Đồng Hòa, Phường Bắc Sơn, Phường Trần Thành Ngọ, Phường Văn Đẩu",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1198\",\"properties\":{\"matinhxa\":\"4.1209\",\"maxa\":1209},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Kiến Hải (xã)",
- "truocsn": "Xã Tân Phong, Xã Đại Hợp (huyện Kiến Thụy), Xã Tú Sơn, Xã Đoàn Xá",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.986\",\"properties\":{\"matinhxa\":\"4.997\",\"maxa\":997},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Kiến Hưng (xã)",
- "truocsn": "Xã Tân Trào (huyện Kiến Thụy), Xã Kiến Hưng, Xã Đoàn Xá",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.984\",\"properties\":{\"matinhxa\":\"4.995\",\"maxa\":995},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Kiến Minh (xã)",
- "truocsn": "Xã Minh Tân (huyện Kiến Thụy), Xã Đại Đồng, Xã Đông Phương",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1203\",\"properties\":{\"matinhxa\":\"4.1214\",\"maxa\":1214},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Kiến Thụy (xã)",
- "truocsn": "Thị trấn Núi Đối, Xã Thanh Sơn (huyện Kiến Thụy), Xã Thuận Thiên, Xã Hữu Bằng, Xã Kiến Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1204\",\"properties\":{\"matinhxa\":\"4.1215\",\"maxa\":1215},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Kim Thành (xã)",
- "truocsn": "Xã Đồng Cẩm, Xã Tam Kỳ, Xã Đại Đức, Xã Hòa Bình",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.865\",\"properties\":{\"matinhxa\":\"4.876\",\"maxa\":876},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Kinh Môn (phường)",
- "truocsn": "Phường An Lưu, Phường Hiệp An, Phường Long Xuyên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1035\",\"properties\":{\"matinhxa\":\"4.1046\",\"maxa\":1046},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Lạc Phượng (xã)",
- "truocsn": "Xã Quang Trung (huyện Tứ Kỳ), Xã Lạc Phượng, Xã Tiên Động",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1043\",\"properties\":{\"matinhxa\":\"4.1054\",\"maxa\":1054},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Lai Khê (xã)",
- "truocsn": "Xã Lai Khê, Xã Vũ Dũng, Xã Tuấn Việt, Xã Cộng Hoà, Xã Thanh An, Xã Cẩm Việt",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.941\",\"properties\":{\"matinhxa\":\"4.952\",\"maxa\":952},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Lê Chân (phường)",
- "truocsn": "Phường Hàng Kênh, Phường Dư Hàng Kênh, Phường Kênh Dương, Phường An Biên, Phường Trần Nguyên Hãn, Phường Vĩnh Niệm, Phường Cầu Đất, Phường Lạch Tray",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1196\",\"properties\":{\"matinhxa\":\"4.1207\",\"maxa\":1207},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Lê Đại Hành (phường)",
- "truocsn": "Phường Tân Dân (thành phố Chí Linh), Phường An Lạc, Phường Đồng Lạc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1021\",\"properties\":{\"matinhxa\":\"4.1032\",\"maxa\":1032},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Lê Ích Mộc (phường)",
- "truocsn": "Phường Quảng Thanh, Phường Lê Hồng Phong, Xã Quang Trung (thành phố Thủy Nguyên)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1224\",\"properties\":{\"matinhxa\":\"4.1235\",\"maxa\":1235},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Lê Thanh Nghị (phường)",
- "truocsn": "Phường Tân Bình, Phường Thanh Bình, Phường Lê Thanh Nghị, Phường Trần Phú",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.825\",\"properties\":{\"matinhxa\":\"4.836\",\"maxa\":836},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Lưu Kiếm (phường)",
- "truocsn": "Phường Trần Hưng Đạo (thành phố Thủy Nguyên), Phường Lưu Kiếm, Xã Liên Xuân, Xã Quang Trung (thành phố Thủy Nguyên)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1170\",\"properties\":{\"matinhxa\":\"4.1181\",\"maxa\":1181},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Mao Điền (xã)",
- "truocsn": "Xã Tân Trường, Xã Cẩm Đông, Xã Phúc Điền",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1013\",\"properties\":{\"matinhxa\":\"4.1024\",\"maxa\":1024},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Nam An Phụ (xã)",
- "truocsn": "Xã Quang Thành, Xã Lạc Long, Xã Thăng Long, Xã Tuấn Việt, Xã Vũ Dũng, Xã Cộng Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.962\",\"properties\":{\"matinhxa\":\"4.973\",\"maxa\":973},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Nam Đồ Sơn (phường)",
- "truocsn": "Phường Minh Đức (quận Đồ Sơn), Phường Bàng La, Phường Hợp Đức, Phường Vạn Hương, Phường Ngọc Xuyên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.985\",\"properties\":{\"matinhxa\":\"4.996\",\"maxa\":996},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Nam Đồng (phường)",
- "truocsn": "Phường Nam Đồng, Xã Tiền Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1001\",\"properties\":{\"matinhxa\":\"4.1012\",\"maxa\":1012},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nam Sách (xã)",
- "truocsn": "Thị trấn Nam Sách, Xã Hồng Phong (huyện Nam Sách), Xã Đồng Lạc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.982\",\"properties\":{\"matinhxa\":\"4.993\",\"maxa\":993},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nam Thanh Miện (xã)",
- "truocsn": "Xã Hồng Phong (huyện Thanh Miện), Xã Thanh Giang, Xã Chi Lăng Bắc, Xã Chi Lăng Nam",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1037\",\"properties\":{\"matinhxa\":\"4.1048\",\"maxa\":1048},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nam Triệu (phường)",
- "truocsn": "Phường Nam Triệu Giang, Phường Lập Lễ, Phường Tam Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.971\",\"properties\":{\"matinhxa\":\"4.982\",\"maxa\":982},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nghi Dương (xã)",
- "truocsn": "Xã Ngũ Phúc (huyện Kiến Thụy), Xã Kiến Quốc, Xã Du Lễ",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1048\",\"properties\":{\"matinhxa\":\"4.1059\",\"maxa\":1059},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Ngô Quyền (phường)",
- "truocsn": "Phường Máy Chai, Phường Vạn Mỹ, Phường Cầu Tre, Phường Gia Viên, Phường Đông Khê",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.968\",\"properties\":{\"matinhxa\":\"4.979\",\"maxa\":979},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Nguyễn Bỉnh Khiêm (xã)",
- "truocsn": "Xã Trấn Dương, Xã Hòa Bình, Xã Lý Học",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1105\",\"properties\":{\"matinhxa\":\"4.1116\",\"maxa\":1116},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Nguyễn Đại Năng (phường)",
- "truocsn": "Phường Thái Thịnh, Phường Hiến Thành, Xã Minh Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1022\",\"properties\":{\"matinhxa\":\"4.1033\",\"maxa\":1033},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nguyên Giáp (xã)",
- "truocsn": "Xã Hà Kỳ, Xã Nguyên Giáp, Xã Hà Thanh, Xã Tiên Động",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1044\",\"properties\":{\"matinhxa\":\"4.1055\",\"maxa\":1055},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nguyễn Lương Bằng (xã)",
- "truocsn": "Xã Phạm Kha, Xã Nhân Quyền, Xã Thanh Tùng, Xã Đoàn Tùng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.883\",\"properties\":{\"matinhxa\":\"4.894\",\"maxa\":894},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nguyễn Trãi (phường)",
- "truocsn": "Phường Bến Tắm, Xã Bắc An, Xã Hoàng Hoa Thám",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1017\",\"properties\":{\"matinhxa\":\"4.1028\",\"maxa\":1028},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Nhị Chiểu (phường)",
- "truocsn": "Phường Tân Dân (thị xã Kinh Môn), Phường Minh Tân, Phường Duy Tân, Phường Phú Thứ",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.859\",\"properties\":{\"matinhxa\":\"4.870\",\"maxa\":870},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Ninh Giang (xã)",
- "truocsn": "Thị trấn Ninh Giang, Xã Vĩnh Hòa (huyện Ninh Giang), Xã Hồng Dụ, Xã Hiệp Lực",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1042\",\"properties\":{\"matinhxa\":\"4.1053\",\"maxa\":1053},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Phạm Sư Mạnh (phường)",
- "truocsn": "Phường Phạm Thái, Phường An Sinh, Phường Hiệp Sơn",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1019\",\"properties\":{\"matinhxa\":\"4.1030\",\"maxa\":1030},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Phù Liễn (phường)",
- "truocsn": "Phường Bắc Hà, Phường Ngọc Sơn, Thị trấn Trường Sơn, Phường Nam Sơn (quận Kiến An), Phường Đồng Hòa, Phường Bắc Sơn, Phường Trần Thành Ngọ, Phường Văn Đẩu",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1226\",\"properties\":{\"matinhxa\":\"4.1237\",\"maxa\":1237},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Phú Thái (xã)",
- "truocsn": "Thị trấn Phú Thái, Xã Kim Xuyên, Xã Kim Anh, Xã Kim Liên, Xã Thượng Quận",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.857\",\"properties\":{\"matinhxa\":\"4.868\",\"maxa\":868},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quyết Thắng (xã)",
- "truocsn": "Xã Đại Thắng, Xã Tiên Cường, Xã Tự Cường",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1059\",\"properties\":{\"matinhxa\":\"4.1070\",\"maxa\":1070},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Tân Phong (huyện Ninh Giang), Xã An Đức, Xã Đức Phúc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1040\",\"properties\":{\"matinhxa\":\"4.1051\",\"maxa\":1051},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tân Hưng (phường)",
- "truocsn": "Phường Hải Tân, Phường Tân Hưng, Xã Ngọc Sơn, Phường Trần Phú",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.981\",\"properties\":{\"matinhxa\":\"4.992\",\"maxa\":992},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tân Kỳ (xã)",
- "truocsn": "Xã Đại Hợp (huyện Tứ Kỳ), Xã Tân Kỳ, Xã Dân An, Xã Kỳ Sơn, Xã Hưng Đạo (huyện Tứ Kỳ)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.884\",\"properties\":{\"matinhxa\":\"4.895\",\"maxa\":895},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tân Minh (xã)",
- "truocsn": "Xã Cấp Tiến, Xã Kiến Thiết, Xã Đoàn Lập, Xã Tân Minh",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1134\",\"properties\":{\"matinhxa\":\"4.1145\",\"maxa\":1145},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Thạch Khôi (phường)",
- "truocsn": "Phường Thạch Khôi, Xã Gia Xuyên, Xã Liên Hồng, Xã Thống Nhất",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.836\",\"properties\":{\"matinhxa\":\"4.847\",\"maxa\":847},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Thái Tân (xã)",
- "truocsn": "Xã Minh Tân (huyện Nam Sách), Xã An Sơn, Xã Thái Tân",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1009\",\"properties\":{\"matinhxa\":\"4.1020\",\"maxa\":1020},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Thành Đông (phường)",
- "truocsn": "Phường Cẩm Thượng, Phường Bình Hàn, Phường Nguyễn Trãi, Xã An Thượng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.826\",\"properties\":{\"matinhxa\":\"4.837\",\"maxa\":837},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Thanh Hà (xã)",
- "truocsn": "Thị trấn Thanh Hà, Xã Thanh Sơn (huyện Thanh Hà), Xã Thanh Tân",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.964\",\"properties\":{\"matinhxa\":\"4.975\",\"maxa\":975},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Thanh Miện (xã)",
- "truocsn": "Xã Cao Thắng, Xã Ngũ Hùng, Xã Tứ Cường, Thị trấn Thanh Miện",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.881\",\"properties\":{\"matinhxa\":\"4.892\",\"maxa\":892},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Thiên Hương (phường)",
- "truocsn": "Phường Thiên Hương, Phường Hoàng Lâm, Phường Lê Hồng Phong, Phường Hoa Động",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1205\",\"properties\":{\"matinhxa\":\"4.1216\",\"maxa\":1216},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Thượng Hồng (xã)",
- "truocsn": "Xã Bình Xuyên (huyện Bình Giang), Xã Thanh Tùng, Xã Đoàn Tùng, Xã Thúc Kháng, Xã Thái Minh, Xã Tân Hồng, Xã Thái Dương, Xã Thái Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1036\",\"properties\":{\"matinhxa\":\"4.1047\",\"maxa\":1047},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Thủy Nguyên (phường)",
- "truocsn": "Phường Dương Quan, Phường Thủy Đường, Phường Hoa Động, Phường An Lư, Phường Thủy Hà",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.970\",\"properties\":{\"matinhxa\":\"4.981\",\"maxa\":981},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Tiên Lãng (xã)",
- "truocsn": "Thị trấn Tiên Lãng, Xã Quyết Tiến, Xã Tiên Thanh, Xã Khởi Nghĩa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1151\",\"properties\":{\"matinhxa\":\"4.1162\",\"maxa\":1162},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tiên Minh (xã)",
- "truocsn": "Xã Tiên Thắng, Xã Tiên Minh, Xã Tân Minh",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1146\",\"properties\":{\"matinhxa\":\"4.1157\",\"maxa\":1157},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Trần Hưng Đạo (phường)",
- "truocsn": "Xã Lê Lợi, Xã Hưng Đạo (thành phố Chí Linh), Phường Cộng Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1018\",\"properties\":{\"matinhxa\":\"4.1029\",\"maxa\":1029},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Trần Liễu (phường)",
- "truocsn": "Phường An Phụ, Xã Hiệp Hòa, Xã Thượng Quận",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.965\",\"properties\":{\"matinhxa\":\"4.976\",\"maxa\":976},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Trần Nhân Tông (phường)",
- "truocsn": "Phường Hoàng Tân, Phường Hoàng Tiến, Phường Văn Đức",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1016\",\"properties\":{\"matinhxa\":\"4.1027\",\"maxa\":1027},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Trần Phú (xã)",
- "truocsn": "Xã Quốc Tuấn (huyện Nam Sách), Xã Hiệp Cát, Xã Trần Phú",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.863\",\"properties\":{\"matinhxa\":\"4.874\",\"maxa\":874},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Trường Tân (xã)",
- "truocsn": "Xã Phạm Trấn, Xã Nhật Quang, Xã Thống Kênh, Xã Đoàn Thượng, Xã Quang Đức, Thị trấn Thanh Miện",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.882\",\"properties\":{\"matinhxa\":\"4.893\",\"maxa\":893},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tứ Kỳ (xã)",
- "truocsn": "Thị trấn Tứ Kỳ, Xã Minh Đức, Xã Quang Khải, Xã Quang Phục",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.885\",\"properties\":{\"matinhxa\":\"4.896\",\"maxa\":896},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tứ Minh (phường)",
- "truocsn": "Xã Cẩm Đoài, Phường Tứ Minh, Thị trấn Lai Cách",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1008\",\"properties\":{\"matinhxa\":\"4.1019\",\"maxa\":1019},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Tuệ Tĩnh (xã)",
- "truocsn": "Xã Đức Chính, Xã Cẩm Vũ, Xã Cẩm Văn",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.979\",\"properties\":{\"matinhxa\":\"4.990\",\"maxa\":990},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Việt Hòa (xã)",
- "truocsn": "Phường Việt Hòa, Xã Cao An, Phường Tứ Minh, Thị trấn Lai Cách",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.978\",\"properties\":{\"matinhxa\":\"4.989\",\"maxa\":989},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Việt Khê (xã)",
- "truocsn": "Xã Ninh Sơn, Xã Liên Xuân",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1225\",\"properties\":{\"matinhxa\":\"4.1236\",\"maxa\":1236},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Vĩnh Am (xã)",
- "truocsn": "Xã Tam Cường, Xã Cao Minh, Xã Liên Am",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1100\",\"properties\":{\"matinhxa\":\"4.1111\",\"maxa\":1111},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Vĩnh Bảo (xã)",
- "truocsn": "Thị trấn Vĩnh Bảo, Xã Vĩnh Hưng (huyện Vĩnh Bảo), Xã Tân Hưng, Xã Tân Liên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1168\",\"properties\":{\"matinhxa\":\"4.1179\",\"maxa\":1179},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Vĩnh Hải (xã)",
- "truocsn": "Xã Tiền Phong, Xã Vĩnh Hải",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1121\",\"properties\":{\"matinhxa\":\"4.1132\",\"maxa\":1132},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Vĩnh Hòa (phường)",
- "truocsn": "Xã Vĩnh Hòa (huyện Vĩnh Bảo), Xã Hùng Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1166\",\"properties\":{\"matinhxa\":\"4.1177\",\"maxa\":1177},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Vĩnh Lại (xã)",
- "truocsn": "Xã Ứng Hòe, Xã Tân Hương, Xã Nghĩa An",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1041\",\"properties\":{\"matinhxa\":\"4.1052\",\"maxa\":1052},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Vĩnh Thịnh (xã)",
- "truocsn": "Xã Thắng Thủy, Xã Trung Lập, Xã Việt Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1167\",\"properties\":{\"matinhxa\":\"4.1178\",\"maxa\":1178},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Vĩnh Thuận (xã)",
- "truocsn": "Xã Vĩnh An, Xã Giang Biên, Xã Dũng Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1054\",\"properties\":{\"matinhxa\":\"4.1065\",\"maxa\":1065},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Yết Kiêu (xã)",
- "truocsn": "Xã Thống Nhất, Xã Lê Lợi (huyện Gia Lộc), Xã Yết Kiêu",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1047\",\"properties\":{\"matinhxa\":\"4.1058\",\"maxa\":1058},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "A Sào (xã)",
- "truocsn": "Xã An Đồng, Xã An Hiệp, Xã An Thái, Xã An Khê",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.653\",\"properties\":{\"matinhxa\":\"5.655\",\"maxa\":655},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ái Quốc (xã)",
- "truocsn": "Xã Tây Giang, Xã Ái Quốc",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.696\",\"properties\":{\"matinhxa\":\"5.704\",\"maxa\":704},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ân Thi (xã)",
- "truocsn": "Thị trấn Ân Thi, Xã Quang Vinh, Xã Hoàng Hoa Thám",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.689\",\"properties\":{\"matinhxa\":\"5.695\",\"maxa\":695},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bắc Đông Hưng (xã)",
- "truocsn": "Xã Đông Cường, Xã Đông Xá, Xã Đông Phương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.668\",\"properties\":{\"matinhxa\":\"5.670\",\"maxa\":670},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bắc Đông Quan (xã)",
- "truocsn": "Xã Hà Giang, Xã Đông Kinh, Xã Đông Vinh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.658\",\"properties\":{\"matinhxa\":\"5.660\",\"maxa\":660},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bắc Thái Ninh (xã)",
- "truocsn": "Xã Thái Phúc, Xã Dương Hồng Thủy",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.657\",\"properties\":{\"matinhxa\":\"5.659\",\"maxa\":659},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bắc Thụy Anh (xã)",
- "truocsn": "Xã Thụy Quỳnh, Xã Thụy Văn, Xã Thụy Việt",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.643\",\"properties\":{\"matinhxa\":\"5.645\",\"maxa\":645},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bắc Tiên Hưng (xã)",
- "truocsn": "Xã Liên An Đô, Xã Lô Giang, Xã Mê Linh, Xã Phú Lương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.661\",\"properties\":{\"matinhxa\":\"5.663\",\"maxa\":663},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Định (xã)",
- "truocsn": "Xã Hồng Tiến, Xã Nam Bình, Xã Bình Định",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.763\",\"properties\":{\"matinhxa\":\"5.774\",\"maxa\":774},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Nguyên (xã)",
- "truocsn": "Xã Thanh Tân, Xã An Bình, Xã Bình Nguyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.767\",\"properties\":{\"matinhxa\":\"5.778\",\"maxa\":778},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Thanh (xã)",
- "truocsn": "Xã Minh Tân, Xã Minh Quang (huyện Kiến Xương), Xã Bình Thanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.750\",\"properties\":{\"matinhxa\":\"5.761\",\"maxa\":761},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Châu Ninh (xã)",
- "truocsn": "Xã Đại Tập, Xã Tứ Dân, Xã Tân Châu, Xã Đông Ninh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.798\",\"properties\":{\"matinhxa\":\"5.809\",\"maxa\":809},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Chí Minh (xã)",
- "truocsn": "Xã Thuần Hưng, Xã Nguyễn Huệ, Xã Chí Minh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.780\",\"properties\":{\"matinhxa\":\"5.791\",\"maxa\":791},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đại Đồng (xã)",
- "truocsn": "Xã Việt Hưng, Xã Lương Tài, Xã Đại Đồng, Xã Đình Dù, Xã Lạc Đạo",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.727\",\"properties\":{\"matinhxa\":\"5.738\",\"maxa\":738},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Diên Hà (xã)",
- "truocsn": "Xã Quang Trung (huyện Hưng Hà), Xã Văn Cẩm, Xã Duyên Hải",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.664\",\"properties\":{\"matinhxa\":\"5.666\",\"maxa\":666},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đoàn Đào (xã)",
- "truocsn": "Xã Phan Sào Nam, Xã Minh Hoàng, Xã Đoàn Đào",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.795\",\"properties\":{\"matinhxa\":\"5.806\",\"maxa\":806},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đồng Bằng (xã)",
- "truocsn": "Xã An Cầu, Xã An Ấp, Xã An Lễ, Xã An Quý",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.667\",\"properties\":{\"matinhxa\":\"5.669\",\"maxa\":669},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đồng Châu (xã)",
- "truocsn": "Xã Đông Hoàng (huyện Tiền Hải), Xã Đông Cơ, Xã Đông Lâm, Xã Đông Minh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.695\",\"properties\":{\"matinhxa\":\"5.702\",\"maxa\":702},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đông Hưng (xã)",
- "truocsn": "Thị trấn Đông Hưng, Xã Nguyên Xá (huyện Đông Hưng), Xã Đông La, Xã Đông Các, Xã Đông Sơn, Xã Đông Hợp",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.660\",\"properties\":{\"matinhxa\":\"5.662\",\"maxa\":662},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đông Quan (xã)",
- "truocsn": "Xã Đông Á, Xã Đông Tân, Xã Đông Quan",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.670\",\"properties\":{\"matinhxa\":\"5.672\",\"maxa\":672},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đông Thái Ninh (xã)",
- "truocsn": "Xã Mỹ Lộc, Xã Tân Học, Xã Thái Đô, Xã Thái Xuyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3356\",\"properties\":{\"matinhxa\":\"5.673\",\"maxa\":673},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đông Thụy Anh (xã)",
- "truocsn": "Xã Thụy Trường, Xã Thụy Xuân, Xã An Tân, Xã Hồng Dũng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.642\",\"properties\":{\"matinhxa\":\"5.644\",\"maxa\":644},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đông Tiền Hải (xã)",
- "truocsn": "Xã Đông Xuyên, Xã Đông Quang, Xã Đông Long, Xã Đông Trà",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3357\",\"properties\":{\"matinhxa\":\"5.703\",\"maxa\":703},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đông Tiên Hưng (xã)",
- "truocsn": "Xã Phong Dương Tiến, Xã Phú Châu",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.652\",\"properties\":{\"matinhxa\":\"5.654\",\"maxa\":654},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đức Hợp (xã)",
- "truocsn": "Xã Phú Thọ, Xã Mai Động, Xã Đức Hợp",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.794\",\"properties\":{\"matinhxa\":\"5.805\",\"maxa\":805},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đường Hào (phường)",
- "truocsn": "Phường Dị Sử, Phường Phùng Chí Kiên, Xã Xuân Dục, Xã Hưng Long, Xã Ngọc Lâm",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.694\",\"properties\":{\"matinhxa\":\"5.700\",\"maxa\":700},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hiệp Cường (xã)",
- "truocsn": "Xã Song Mai, Xã Hùng An, Xã Hiệp Cường, Xã Ngọc Thanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.779\",\"properties\":{\"matinhxa\":\"5.790\",\"maxa\":790},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hoàn Long (xã)",
- "truocsn": "Xã Đông Tảo, Xã Đồng Than, Xã Hoàn Long",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.812\",\"properties\":{\"matinhxa\":\"5.823\",\"maxa\":823},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hoàng Hoa Thám (xã)",
- "truocsn": "Thị trấn Vương, Xã Hưng Đạo, Xã Nhật Tân, Xã An Viên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.791\",\"properties\":{\"matinhxa\":\"5.802\",\"maxa\":802},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hồng Châu (phường)",
- "truocsn": "Phường Hồng Châu, Xã Quảng Châu, Xã Hoàng Hanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.786\",\"properties\":{\"matinhxa\":\"5.797\",\"maxa\":797},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hồng Minh (xã)",
- "truocsn": "Xã Chí Hòa, Xã Minh Hòa, Xã Hồng Minh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.644\",\"properties\":{\"matinhxa\":\"5.646\",\"maxa\":646},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hồng Quang (xã)",
- "truocsn": "Xã Hồ Tùng Mậu, Xã Tiền Phong, Xã Hạ Lễ, Xã Hồng Quang",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.774\",\"properties\":{\"matinhxa\":\"5.785\",\"maxa\":785},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hồng Vũ (xã)",
- "truocsn": "Xã Vũ Công, Xã Hồng Vũ",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.757\",\"properties\":{\"matinhxa\":\"5.768\",\"maxa\":768},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hưng Hà (xã)",
- "truocsn": "Xã Hòa Bình, Xã Minh Khai, Xã Thống Nhất (huyện Hưng Hà), Xã Kim Trung, Xã Hồng Lĩnh, Xã Văn Lang, Thị trấn Hưng Hà",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.646\",\"properties\":{\"matinhxa\":\"5.648\",\"maxa\":648},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hưng Phú (xã)",
- "truocsn": "Xã Nam Phú, Xã Nam Hưng, Xã Nam Trung",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.683\",\"properties\":{\"matinhxa\":\"5.688\",\"maxa\":688},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Khoái Châu (xã)",
- "truocsn": "Thị trấn Khoái Châu, Xã Liên Khê, Xã Phùng Hưng, Xã Đông Kết",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.782\",\"properties\":{\"matinhxa\":\"5.793\",\"maxa\":793},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Kiến Xương (xã)",
- "truocsn": "Xã Bình Minh, Xã Quang Trung (huyện Kiến Xương), Xã Quang Minh, Xã Quang Bình, Thị trấn Kiến Xương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.765\",\"properties\":{\"matinhxa\":\"5.776\",\"maxa\":776},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lạc Đạo (xã)",
- "truocsn": "Xã Chỉ Đạo, Xã Minh Hải, Xã Lạc Đạo",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.811\",\"properties\":{\"matinhxa\":\"5.822\",\"maxa\":822},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lê Lợi (xã)",
- "truocsn": "Xã Thống Nhất (huyện Kiến Xương), Xã Lê Lợi",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.773\",\"properties\":{\"matinhxa\":\"5.784\",\"maxa\":784},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Lê Quý Đôn (xã)",
- "truocsn": "Xã Minh Tân (huyện Hưng Hà), Xã Độc Lập, Xã Hồng An",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.645\",\"properties\":{\"matinhxa\":\"5.647\",\"maxa\":647},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Long Hưng (xã)",
- "truocsn": "Thị trấn Hưng Nhân, Xã Thái Hưng (huyện Hưng Hà), Xã Tân Lễ, Xã Tiến Đức, Xã Liên Hiệp",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.648\",\"properties\":{\"matinhxa\":\"5.650\",\"maxa\":650},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Lương Bằng (xã)",
- "truocsn": "Thị trấn Lương Bằng, Xã Phạm Ngũ Lão, Xã Chính Nghĩa, Xã Diên Hồng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.778\",\"properties\":{\"matinhxa\":\"5.789\",\"maxa\":789},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mễ Sở (xã)",
- "truocsn": "Xã Bình Minh (huyện Khoái Châu), Xã Thắng Lợi, Xã Mễ Sở",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.807\",\"properties\":{\"matinhxa\":\"5.818\",\"maxa\":818},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Minh Thọ (xã)",
- "truocsn": "Xã Quỳnh Hoa, Xã Quỳnh Minh, Xã Quỳnh Giao, Xã Quỳnh Thọ",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.654\",\"properties\":{\"matinhxa\":\"5.656\",\"maxa\":656},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Mỹ Hào (phường)",
- "truocsn": "Phường Bần Yên Nhân, Phường Nhân Hòa, Phường Phan Đình Phùng, Xã Cẩm Xá",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.728\",\"properties\":{\"matinhxa\":\"5.739\",\"maxa\":739},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nam Cường (xã)",
- "truocsn": "Xã Nam Thịnh, Xã Nam Tiến, Xã Nam Chính, Xã Nam Cường",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.684\",\"properties\":{\"matinhxa\":\"5.689\",\"maxa\":689},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nam Đông Hưng (xã)",
- "truocsn": "Xã Đông Hoàng (huyện Đông Hưng), Xã Xuân Quang Động",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.651\",\"properties\":{\"matinhxa\":\"5.653\",\"maxa\":653},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Nam Thái Ninh (xã)",
- "truocsn": "Xã Thái Thọ, Xã Thái Thịnh, Xã Thuần Thành",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.697\",\"properties\":{\"matinhxa\":\"5.707\",\"maxa\":707},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Nam Thụy Anh (xã)",
- "truocsn": "Xã Thụy Thanh, Xã Thụy Phong, Xã Thụy Duyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.675\",\"properties\":{\"matinhxa\":\"5.678\",\"maxa\":678},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Nam Tiền Hải (xã)",
- "truocsn": "Xã Nam Hồng, Xã Nam Hà, Xã Nam Hải",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.688\",\"properties\":{\"matinhxa\":\"5.693\",\"maxa\":693},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Nam Tiên Hưng (xã)",
- "truocsn": "Xã Liên Hoa, Xã Hồng Giang, Xã Trọng Quan, Xã Minh Phú",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.669\",\"properties\":{\"matinhxa\":\"5.671\",\"maxa\":671},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Nghĩa Dân (xã)",
- "truocsn": "Xã Đồng Thanh (huyện Kim Động), Xã Vĩnh Xá, Xã Toàn Thắng, Xã Nghĩa Dân",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.783\",\"properties\":{\"matinhxa\":\"5.794\",\"maxa\":794},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Nghĩa Trụ (xã)",
- "truocsn": "Xã Long Hưng, Xã Vĩnh Khúc, Xã Nghĩa Trụ",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.810\",\"properties\":{\"matinhxa\":\"5.821\",\"maxa\":821},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Ngọc Lâm (xã)",
- "truocsn": "Xã Quỳnh Hoàng, Xã Quỳnh Lâm, Xã Quỳnh Ngọc",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.650\",\"properties\":{\"matinhxa\":\"5.652\",\"maxa\":652},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Ngự Thiên (xã)",
- "truocsn": "Xã Tân Hòa (huyện Hưng Hà), Xã Canh Tân, Xã Cộng Hòa, Xã Hòa Tiến",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.649\",\"properties\":{\"matinhxa\":\"5.651\",\"maxa\":651},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Nguyễn Du (xã)",
- "truocsn": "Xã Châu Sơn, Xã Quỳnh Khê, Xã Quỳnh Nguyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.665\",\"properties\":{\"matinhxa\":\"5.667\",\"maxa\":667},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Nguyễn Trãi (xã)",
- "truocsn": "Xã Đặng Lễ, Xã Cẩm Ninh, Xã Đa Lộc, Xã Nguyễn Trãi",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.781\",\"properties\":{\"matinhxa\":\"5.792\",\"maxa\":792},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Nguyễn Văn Linh (xã)",
- "truocsn": "Xã Ngọc Long, Xã Liêu Xá, Xã Nguyễn Văn Linh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.729\",\"properties\":{\"matinhxa\":\"5.740\",\"maxa\":740},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Như Quỳnh (xã)",
- "truocsn": "Thị trấn Như Quỳnh, Xã Tân Quang, Xã Lạc Hồng, Xã Trưng Trắc, Xã Đình Dù",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.813\",\"properties\":{\"matinhxa\":\"5.824\",\"maxa\":824},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Phạm Ngũ Lão (xã)",
- "truocsn": "Xã Bắc Sơn (huyện Ân Thi), Xã Phù Ủng, Xã Đào Dương, Xã Bãi Sậy",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.692\",\"properties\":{\"matinhxa\":\"5.698\",\"maxa\":698},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phố Hiến (phường)",
- "truocsn": "Phường An Tảo, Phường Lê Lợi, Phường Hiến Nam, Phường Minh Khai, Xã Trung Nghĩa, Xã Liên Phương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.787\",\"properties\":{\"matinhxa\":\"5.798\",\"maxa\":798},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phụ Dực (xã)",
- "truocsn": "Thị trấn An Bài, Xã An Ninh (huyện Quỳnh Phụ), Xã An Vũ, Xã An Mỹ, Xã An Thanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.682\",\"properties\":{\"matinhxa\":\"5.687\",\"maxa\":687},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phụng Công (xã)",
- "truocsn": "Xã Xuân Quan, Xã Cửu Cao, Xã Phụng Công",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.808\",\"properties\":{\"matinhxa\":\"5.819\",\"maxa\":819},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Quang Hưng (xã)",
- "truocsn": "Thị trấn Trần Cao, Xã Minh Tân (huyện Phù Cừ), Xã Tống Phan, Xã Quang Hưng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.724\",\"properties\":{\"matinhxa\":\"5.735\",\"maxa\":735},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Quang Lịch (xã)",
- "truocsn": "Xã Hòa Bình (huyện Kiến Xương), Xã Vũ Lễ, Xã Quang Lịch",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.766\",\"properties\":{\"matinhxa\":\"5.777\",\"maxa\":777},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Quỳnh An (xã)",
- "truocsn": "Xã Trang Bảo Xá, Xã An Vinh, Xã Đông Hải",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.662\",\"properties\":{\"matinhxa\":\"5.664\",\"maxa\":664},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Quỳnh Phụ (xã)",
- "truocsn": "Thị trấn Quỳnh Côi, Xã Quỳnh Hải, Xã Quỳnh Hội, Xã Quỳnh Hồng, Xã Quỳnh Mỹ, Xã Quỳnh Hưng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.666\",\"properties\":{\"matinhxa\":\"5.668\",\"maxa\":668},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Sơn Nam (phường)",
- "truocsn": "Phường Lam Sơn, Xã Phú Cường, Xã Hùng Cường, Xã Bảo Khê, Xã Ngọc Thanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.790\",\"properties\":{\"matinhxa\":\"5.801\",\"maxa\":801},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Hưng (xã)",
- "truocsn": "Xã Thủ Sỹ, Xã Phương Nam, Xã Tân Hưng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.699\",\"properties\":{\"matinhxa\":\"5.710\",\"maxa\":710},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Thuận (xã)",
- "truocsn": "Xã Tân Lập (huyện Vũ Thư), Xã Tự Tân, Xã Bách Thuận",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.718\",\"properties\":{\"matinhxa\":\"5.729\",\"maxa\":729},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Đồng Tiến (huyện Quỳnh Phụ), Xã An Dục, Xã An Tràng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.676\",\"properties\":{\"matinhxa\":\"5.679\",\"maxa\":679},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tây Thái Ninh (xã)",
- "truocsn": "Xã Sơn Hà, Xã Thái Giang",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.655\",\"properties\":{\"matinhxa\":\"5.657\",\"maxa\":657},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tây Thụy Anh (xã)",
- "truocsn": "Xã Thụy Chính, Xã Thụy Dân, Xã Thụy Ninh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.681\",\"properties\":{\"matinhxa\":\"5.686\",\"maxa\":686},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tây Tiền Hải (xã)",
- "truocsn": "Xã Phương Công, Xã Vân Trường, Xã Bắc Hải",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.764\",\"properties\":{\"matinhxa\":\"5.775\",\"maxa\":775},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thái Bình (phường)",
- "truocsn": "Phường Lê Hồng Phong, Phường Bồ Xuyên, Phường Tiền Phong, Xã Tân Hòa (huyện Vũ Thư), Xã Phúc Thành, Xã Tân Phong, Xã Tân Bình",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.720\",\"properties\":{\"matinhxa\":\"5.731\",\"maxa\":731},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Thái Ninh (xã)",
- "truocsn": "Xã Thái Hưng (huyện Thái Thụy), Xã Thái Thượng, Xã Hòa An, Xã Thái Nguyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.639\",\"properties\":{\"matinhxa\":\"5.641\",\"maxa\":641},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thái Thụy (xã)",
- "truocsn": "Thị trấn Diêm Điền, Xã Thụy Hải, Xã Thụy Trình, Xã Thụy Bình, Xã Thụy Liên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.640\",\"properties\":{\"matinhxa\":\"5.642\",\"maxa\":642},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thần Khê (xã)",
- "truocsn": "Xã Bắc Sơn (huyện Hưng Hà), Xã Đông Đô, Xã Tây Đô, Xã Chi Lăng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.663\",\"properties\":{\"matinhxa\":\"5.665\",\"maxa\":665},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thư Trì (xã)",
- "truocsn": "Xã Song Lãng, Xã Hiệp Hòa, Xã Minh Lãng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.719\",\"properties\":{\"matinhxa\":\"5.730\",\"maxa\":730},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thư Vũ (xã)",
- "truocsn": "Xã Việt Thuận, Xã Vũ Hội, Xã Vũ Vinh, Xã Vũ Vân",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.721\",\"properties\":{\"matinhxa\":\"5.732\",\"maxa\":732},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thượng Hồng (phường)",
- "truocsn": "Phường Bạch Sam, Phường Minh Đức, Xã Dương Quang, Xã Hòa Phong",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.726\",\"properties\":{\"matinhxa\":\"5.737\",\"maxa\":737},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Thụy Anh (xã)",
- "truocsn": "Xã Thụy Sơn, Xã Dương Phúc, Xã Thụy Hưng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.641\",\"properties\":{\"matinhxa\":\"5.643\",\"maxa\":643},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tiền Hải (xã)",
- "truocsn": "Thị trấn Tiền Hải, Xã An Ninh (huyện Tiền Hải), Xã Tây Ninh, Xã Tây Lương, Xã Vũ Lăng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.677\",\"properties\":{\"matinhxa\":\"5.681\",\"maxa\":681},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tiên Hoa (xã)",
- "truocsn": "Xã Lệ Xá, Xã Trung Dũng, Xã Cương Chính",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.722\",\"properties\":{\"matinhxa\":\"5.733\",\"maxa\":733},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tiên Hưng (xã)",
- "truocsn": "Xã Minh Tân (huyện Đông Hưng), Xã Hồng Bạch, Xã Thăng Long, Xã Hồng Việt",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.659\",\"properties\":{\"matinhxa\":\"5.661\",\"maxa\":661},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tiên La (xã)",
- "truocsn": "Xã Tân Tiến (huyện Hưng Hà), Xã Thái Phương, Xã Đoan Hùng, Xã Phúc Khánh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.647\",\"properties\":{\"matinhxa\":\"5.649\",\"maxa\":649},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tiên Lữ (xã)",
- "truocsn": "Xã Thiện Phiến, Xã Hải Thắng, Xã Thụy Lôi",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.788\",\"properties\":{\"matinhxa\":\"5.799\",\"maxa\":799},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tiên Tiến (xã)",
- "truocsn": "Xã Đình Cao, Xã Nhật Quang, Xã Tiên Tiến",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.723\",\"properties\":{\"matinhxa\":\"5.734\",\"maxa\":734},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tống Trân (xã)",
- "truocsn": "Xã Tam Đa, Xã Nguyên Hòa, Xã Tống Trân",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.797\",\"properties\":{\"matinhxa\":\"5.808\",\"maxa\":808},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Trà Giang (xã)",
- "truocsn": "Xã Hồng Thái, Xã Quốc Tuấn, Xã Trà Giang",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.772\",\"properties\":{\"matinhxa\":\"5.783\",\"maxa\":783},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Trà Lý (phường)",
- "truocsn": "Phường Hoàng Diệu, Xã Đông Mỹ, Xã Đông Hoà, Xã Đông Thọ, Xã Đông Dương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.725\",\"properties\":{\"matinhxa\":\"5.736\",\"maxa\":736},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Trần Hưng Đạo (phường)",
- "truocsn": "Phường Trần Hưng Đạo, Phường Đề Thám, Phường Quang Trung, Xã Phú Xuân",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.749\",\"properties\":{\"matinhxa\":\"5.760\",\"maxa\":760},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Trần Lãm (phường)",
- "truocsn": "Phường Trần Lãm, Phường Kỳ Bá, Xã Vũ Đông, Xã Vũ Lạc, Xã Vũ Chính, Xã Tây Sơn",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.746\",\"properties\":{\"matinhxa\":\"5.757\",\"maxa\":757},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Triệu Việt Vương (xã)",
- "truocsn": "Xã Phạm Hồng Thái, Xã Tân Dân, Xã Ông Đình, Xã An Vĩ",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.691\",\"properties\":{\"matinhxa\":\"5.697\",\"maxa\":697},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Văn Giang (xã)",
- "truocsn": "Xã Tân Tiến (huyện Văn Giang), Xã Liên Nghĩa, Thị trấn Văn Giang",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.809\",\"properties\":{\"matinhxa\":\"5.820\",\"maxa\":820},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Vạn Xuân (xã)",
- "truocsn": "Xã Đồng Thanh (huyện Vũ Thư), Xã Hồng Lý, Xã Việt Hùng, Xã Xuân Hòa",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.685\",\"properties\":{\"matinhxa\":\"5.690\",\"maxa\":690},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Việt Tiến (xã)",
- "truocsn": "Xã Đồng Tiến (huyện Khoái Châu), Xã Dân Tiến, Xã Việt Hòa",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.784\",\"properties\":{\"matinhxa\":\"5.795\",\"maxa\":795},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Việt Yên (xã)",
- "truocsn": "Xã Yên Phú, Xã Thanh Long, Xã Việt Yên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.693\",\"properties\":{\"matinhxa\":\"5.699\",\"maxa\":699},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Vũ Phúc (phường)",
- "truocsn": "Phường Phú Khánh, Xã Nguyên Xá (huyện Vũ Thư), Xã Song An, Xã Trung An, Xã Vũ Phúc",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.742\",\"properties\":{\"matinhxa\":\"5.753\",\"maxa\":753},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Vũ Quý (xã)",
- "truocsn": "Xã Vũ An, Xã Vũ Ninh, Xã Vũ Trung, Xã Vũ Quý",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.745\",\"properties\":{\"matinhxa\":\"5.756\",\"maxa\":756},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Vũ Thư (xã)",
- "truocsn": "Xã Hòa Bình, Xã Minh Khai, Xã Minh Quang (huyện Vũ Thư), Xã Tam Quang, Xã Dũng Nghĩa, Thị trấn Vũ Thư",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.743\",\"properties\":{\"matinhxa\":\"5.754\",\"maxa\":754},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Vũ Tiên (xã)",
- "truocsn": "Xã Vũ Đoài, Xã Duy Nhất, Xã Hồng Phong, Xã Vũ Tiến",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.698\",\"properties\":{\"matinhxa\":\"5.709\",\"maxa\":709},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Xuân Trúc (xã)",
- "truocsn": "Xã Vân Du, Xã Quảng Lãng, Xã Xuân Trúc",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.785\",\"properties\":{\"matinhxa\":\"5.796\",\"maxa\":796},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Yên Mỹ (xã)",
- "truocsn": "Thị trấn Yên Mỹ, Xã Tân Lập (huyện Yên Mỹ), Xã Trung Hòa, Xã Tân Minh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.690\",\"properties\":{\"matinhxa\":\"5.696\",\"maxa\":696},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bắc Lý (xã)",
- "truocsn": "Xã Chân Lý, Xã Đạo Lý, Xã Bắc Lý",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2801\",\"properties\":{\"matinhxa\":\"6.2817\",\"maxa\":2817},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Trung Lương, Xã Ngọc Lũ, Xã Bình An",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2837\",\"properties\":{\"matinhxa\":\"6.2853\",\"maxa\":2853},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bình Giang (xã)",
- "truocsn": "Xã Bồ Đề, Xã Vũ Bản, Xã An Ninh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2766\",\"properties\":{\"matinhxa\":\"6.2781\",\"maxa\":2781},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bình Lục (xã)",
- "truocsn": "Xã Bình Nghĩa, Xã Tràng An, Xã Đồng Du",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2800\",\"properties\":{\"matinhxa\":\"6.2816\",\"maxa\":2816},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bình Minh (xã)",
- "truocsn": "Thị trấn Bình Minh, Xã Cồn Thoi, Xã Kim Mỹ",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.852\",\"properties\":{\"matinhxa\":\"6.863\",\"maxa\":863},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bình Mỹ (xã)",
- "truocsn": "Thị trấn Bình Mỹ, Xã Đồn Xá, Xã La Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2818\",\"properties\":{\"matinhxa\":\"6.2834\",\"maxa\":2834},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Sơn (xã)",
- "truocsn": "Xã Tiêu Động, Xã An Lão, Xã An Đổ",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2817\",\"properties\":{\"matinhxa\":\"6.2833\",\"maxa\":2833},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cát Thành (xã)",
- "truocsn": "Thị trấn Cát Thành, Xã Việt Hùng, Xã Trực Đạo",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.820\",\"properties\":{\"matinhxa\":\"6.831\",\"maxa\":831},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Chất Bình (xã)",
- "truocsn": "Xã Xuân Chính, Xã Hồi Ninh, Xã Chất Bình",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.830\",\"properties\":{\"matinhxa\":\"6.841\",\"maxa\":841},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Châu Sơn (phường)",
- "truocsn": "Phường Thanh Tuyền, Phường Châu Sơn, Thị trấn Kiện Khê",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2827\",\"properties\":{\"matinhxa\":\"6.2843\",\"maxa\":2843},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cổ Lễ (xã)",
- "truocsn": "Thị trấn Cổ Lễ, Xã Trung Đông, Xã Trực Tuấn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.818\",\"properties\":{\"matinhxa\":\"6.829\",\"maxa\":829},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cúc Phương (xã)",
- "truocsn": "Xã Văn Phương, Xã Cúc Phương",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.753\",\"properties\":{\"matinhxa\":\"6.764\",\"maxa\":764},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đại Hoàng (xã)",
- "truocsn": "Xã Tiến Thắng (huyện Gia Viễn), Xã Gia Phương, Xã Gia Trung",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.741\",\"properties\":{\"matinhxa\":\"6.752\",\"maxa\":752},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Định Hóa (xã)",
- "truocsn": "Xã Văn Hải, Xã Kim Tân, Xã Định Hóa",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.759\",\"properties\":{\"matinhxa\":\"6.770\",\"maxa\":770},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông A (phường)",
- "truocsn": "Phường Lộc Hòa, Xã Mỹ Thắng, Xã Mỹ Hà",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.771\",\"properties\":{\"matinhxa\":\"6.782\",\"maxa\":782},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đông Hoa Lư (phường)",
- "truocsn": "Phường Ninh Phúc, Xã Khánh Hòa, Xã Khánh Phú, Xã Khánh An",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.740\",\"properties\":{\"matinhxa\":\"6.751\",\"maxa\":751},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đồng Thái (xã)",
- "truocsn": "Xã Yên Đồng (huyện Yên Mô), Xã Yên Thành, Xã Yên Thái",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.870\",\"properties\":{\"matinhxa\":\"6.881\",\"maxa\":881},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đồng Thịnh (xã)",
- "truocsn": "Xã Hoàng Nam, Xã Đồng Thịnh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.875\",\"properties\":{\"matinhxa\":\"6.886\",\"maxa\":886},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đồng Văn (phường)",
- "truocsn": "Phường Bạch Thượng, Phường Yên Bắc, Phường Đồng Văn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2793\",\"properties\":{\"matinhxa\":\"6.2809\",\"maxa\":2809},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Duy Hà (phường)",
- "truocsn": "Phường Duy Minh, Phường Duy Hải, Phường Hoàng Đông",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2794\",\"properties\":{\"matinhxa\":\"6.2810\",\"maxa\":2810},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Duy Tân (phường)",
- "truocsn": "Phường Châu Giang, Xã Mộc Hoàn, Phường Hòa Mạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2788\",\"properties\":{\"matinhxa\":\"6.2804\",\"maxa\":2804},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Duy Tiên (phường)",
- "truocsn": "Xã Chuyên Ngoại, Xã Trác Văn, Xã Yên Nam, Phường Hòa Mạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2787\",\"properties\":{\"matinhxa\":\"6.2803\",\"maxa\":2803},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Gia Hưng (xã)",
- "truocsn": "Xã Liên Sơn (huyện Gia Viễn), Xã Gia Phú, Xã Gia Hưng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.738\",\"properties\":{\"matinhxa\":\"6.749\",\"maxa\":749},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Gia Lâm (xã)",
- "truocsn": "Xã Gia Sơn, Xã Xích Thổ, Xã Gia Lâm",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.747\",\"properties\":{\"matinhxa\":\"6.758\",\"maxa\":758},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Gia Phong (xã)",
- "truocsn": "Xã Gia Lạc, Xã Gia Minh, Xã Gia Phong",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.736\",\"properties\":{\"matinhxa\":\"6.747\",\"maxa\":747},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Gia Trấn (xã)",
- "truocsn": "Xã Gia Thanh, Xã Gia Xuân, Xã Gia Trấn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.734\",\"properties\":{\"matinhxa\":\"6.745\",\"maxa\":745},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Gia Tường (xã)",
- "truocsn": "Xã Gia Thủy, Xã Đức Long, Xã Gia Tường",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.733\",\"properties\":{\"matinhxa\":\"6.744\",\"maxa\":744},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Gia Vân (xã)",
- "truocsn": "Xã Gia Lập, Xã Gia Vân, Xã Gia Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.739\",\"properties\":{\"matinhxa\":\"6.750\",\"maxa\":750},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Gia Viễn (xã)",
- "truocsn": "Thị trấn Thịnh Vượng, Xã Gia Hòa",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.737\",\"properties\":{\"matinhxa\":\"6.748\",\"maxa\":748},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Giao Bình (xã)",
- "truocsn": "Xã Giao Yến, Xã Bạch Long, Xã Giao Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.908\",\"properties\":{\"matinhxa\":\"6.919\",\"maxa\":919},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Giao Hòa (xã)",
- "truocsn": "Xã Hồng Thuận, Xã Giao An, Xã Giao Lạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.769\",\"properties\":{\"matinhxa\":\"6.780\",\"maxa\":780},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Giao Hưng (xã)",
- "truocsn": "Xã Giao Nhân, Xã Giao Long, Xã Giao Châu",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.892\",\"properties\":{\"matinhxa\":\"6.903\",\"maxa\":903},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Giao Minh (xã)",
- "truocsn": "Xã Giao Thiện, Xã Giao Hương, Xã Giao Thanh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.768\",\"properties\":{\"matinhxa\":\"6.779\",\"maxa\":779},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Giao Ninh (xã)",
- "truocsn": "Thị trấn Quất Lâm, Xã Giao Phong, Xã Giao Thịnh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.922\",\"properties\":{\"matinhxa\":\"6.933\",\"maxa\":933},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Giao Phúc (xã)",
- "truocsn": "Xã Giao Xuân, Xã Giao Hà, Xã Giao Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.898\",\"properties\":{\"matinhxa\":\"6.909\",\"maxa\":909},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Giao Thủy (xã)",
- "truocsn": "Thị trấn Giao Thủy, Xã Bình Hòa",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.821\",\"properties\":{\"matinhxa\":\"6.832\",\"maxa\":832},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hà Nam (phường)",
- "truocsn": "Phường Lam Hạ, Phường Tân Hiệp, Phường Quang Trung (thành phố Phủ Lý), Phường Hoàng Đông, Phường Tiên Nội, Xã Tiên Ngoại",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2829\",\"properties\":{\"matinhxa\":\"6.2845\",\"maxa\":2845},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hải An (xã)",
- "truocsn": "Xã Hải Phong, Xã Hải Giang, Xã Hải An",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.927\",\"properties\":{\"matinhxa\":\"6.938\",\"maxa\":938},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hải Anh (xã)",
- "truocsn": "Xã Hải Minh, Xã Hải Đường, Xã Hải Anh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.833\",\"properties\":{\"matinhxa\":\"6.844\",\"maxa\":844},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hải Hậu (xã)",
- "truocsn": "Thị trấn Yên Định, Xã Hải Trung, Xã Hải Long",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.832\",\"properties\":{\"matinhxa\":\"6.843\",\"maxa\":843},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hải Hưng (xã)",
- "truocsn": "Xã Hải Nam, Xã Hải Lộc, Xã Hải Hưng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.919\",\"properties\":{\"matinhxa\":\"6.930\",\"maxa\":930},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hải Quang (xã)",
- "truocsn": "Xã Hải Đông, Xã Hải Tây, Xã Hải Quang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.828\",\"properties\":{\"matinhxa\":\"6.839\",\"maxa\":839},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hải Thịnh (xã)",
- "truocsn": "Thị trấn Thịnh Long, Xã Hải Châu, Xã Hải Ninh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.937\",\"properties\":{\"matinhxa\":\"6.948\",\"maxa\":948},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hải Tiến (xã)",
- "truocsn": "Thị trấn Cồn, Xã Hải Sơn, Xã Hải Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.918\",\"properties\":{\"matinhxa\":\"6.929\",\"maxa\":929},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hải Xuân (xã)",
- "truocsn": "Xã Hải Phú, Xã Hải Hòa, Xã Hải Xuân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.835\",\"properties\":{\"matinhxa\":\"6.846\",\"maxa\":846},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Hiển Khánh (xã)",
- "truocsn": "Xã Hợp Hưng, Xã Trung Thành, Xã Quang Trung, Xã Hiển Khánh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.776\",\"properties\":{\"matinhxa\":\"6.787\",\"maxa\":787},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Hoa Lư (phường)",
- "truocsn": "Phường Ninh Mỹ, Phường Ninh Khánh, Phường Đông Thành, Phường Tân Thành, Phường Vân Giang, Phường Nam Thành, Phường Nam Bình, Phường Bích Đào, Xã Ninh Khang, Xã Ninh Nhất, Xã Ninh Tiến",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.732\",\"properties\":{\"matinhxa\":\"6.743\",\"maxa\":743},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Hồng Phong (xã)",
- "truocsn": "Xã Nghĩa Hồng, Xã Nghĩa Phong, Xã Nghĩa Phú",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.829\",\"properties\":{\"matinhxa\":\"6.840\",\"maxa\":840},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Hồng Quang (phường)",
- "truocsn": "Xã Hồng Quang (huyện Nam Trực), Xã Nghĩa An, Phường Nam Vân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.877\",\"properties\":{\"matinhxa\":\"6.888\",\"maxa\":888},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Khánh Hội (xã)",
- "truocsn": "Xã Khánh Mậu, Xã Khánh Thủy, Xã Khánh Hội",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.850\",\"properties\":{\"matinhxa\":\"6.861\",\"maxa\":861},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Khánh Nhạc (xã)",
- "truocsn": "Xã Khánh Hồng, Xã Khánh Nhạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.869\",\"properties\":{\"matinhxa\":\"6.880\",\"maxa\":880},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Khánh Thiện (xã)",
- "truocsn": "Xã Khánh Cường, Xã Khánh Lợi, Xã Khánh Thiện",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.744\",\"properties\":{\"matinhxa\":\"6.755\",\"maxa\":755},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Khánh Trung (xã)",
- "truocsn": "Xã Khánh Thành, Xã Khánh Công, Xã Khánh Trung",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.823\",\"properties\":{\"matinhxa\":\"6.834\",\"maxa\":834},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Kim Bảng (phường)",
- "truocsn": "Phường Quế, Phường Ngọc Sơn, Xã Văn Xá",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2824\",\"properties\":{\"matinhxa\":\"6.2840\",\"maxa\":2840},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Kim Đông (xã)",
- "truocsn": "Xã Kim Trung, Xã Kim Đông, Khu vực bãi bồi ven biển (do huyện Kim Sơn quản lý)",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.762\",\"properties\":{\"matinhxa\":\"6.773\",\"maxa\":773},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Kim Sơn (xã)",
- "truocsn": "Xã Kim Định, Xã Ân Hòa, Xã Hùng Tiến",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.814\",\"properties\":{\"matinhxa\":\"6.825\",\"maxa\":825},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Kim Thanh (phường)",
- "truocsn": "Phường Tân Tựu, Xã Hoàng Tây",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2795\",\"properties\":{\"matinhxa\":\"6.2811\",\"maxa\":2811},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Lai Thành (xã)",
- "truocsn": "Xã Yên Lộc (huyện Kim Sơn), Xã Tân Thành, Xã Lai Thành",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.853\",\"properties\":{\"matinhxa\":\"6.864\",\"maxa\":864},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Lê Hồ (phường)",
- "truocsn": "Phường Đại Cương, Phường Đồng Hoá, Phường Lê Hồ",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2791\",\"properties\":{\"matinhxa\":\"6.2807\",\"maxa\":2807},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Liêm Hà (xã)",
- "truocsn": "Xã Liêm Phong, Xã Liêm Cần, Xã Thanh Hà",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2823\",\"properties\":{\"matinhxa\":\"6.2839\",\"maxa\":2839},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Liêm Tuyền (phường)",
- "truocsn": "Phường Tân Liêm, Xã Đinh Xá, Xã Trịnh Xá",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2830\",\"properties\":{\"matinhxa\":\"6.2846\",\"maxa\":2846},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Liên Minh (xã)",
- "truocsn": "Xã Vĩnh Hào, Xã Đại Thắng, Xã Liên Minh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.915\",\"properties\":{\"matinhxa\":\"6.926\",\"maxa\":926},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Lý Nhân (xã)",
- "truocsn": "Xã Chính Lý, Xã Hợp Lý, Xã Văn Lý",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2816\",\"properties\":{\"matinhxa\":\"6.2832\",\"maxa\":2832},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Lý Thường Kiệt (phường)",
- "truocsn": "Xã Liên Sơn, Xã Thanh Sơn (thị xã Kim Bảng), Phường Thi Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2826\",\"properties\":{\"matinhxa\":\"6.2842\",\"maxa\":2842},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Minh Tân (xã)",
- "truocsn": "Xã Cộng Hòa, Xã Minh Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.789\",\"properties\":{\"matinhxa\":\"6.800\",\"maxa\":800},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Minh Thái (xã)",
- "truocsn": "Xã Trực Đại, Xã Trực Thái, Xã Trực Thắng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.920\",\"properties\":{\"matinhxa\":\"6.931\",\"maxa\":931},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Mỹ Lộc (phường)",
- "truocsn": "Phường Hưng Lộc, Xã Mỹ Thuận, Xã Mỹ Lộc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.775\",\"properties\":{\"matinhxa\":\"6.786\",\"maxa\":786},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nam Định (phường)",
- "truocsn": "Phường Quang Trung (thành phố Nam Định), Phường Vị Xuyên, Phường Lộc Vượng, Phường Cửa Bắc, Phường Trần Hưng Đạo, Phường Năng Tĩnh, Phường Cửa Nam, Xã Mỹ Phúc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.800\",\"properties\":{\"matinhxa\":\"6.811\",\"maxa\":811},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nam Đồng (xã)",
- "truocsn": "Xã Đồng Sơn, Xã Nam Thái",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.792\",\"properties\":{\"matinhxa\":\"6.803\",\"maxa\":803},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nam Hoa Lư (phường)",
- "truocsn": "Phường Ninh Phong, Phường Ninh Sơn, Xã Ninh Vân, Xã Ninh An, Xã Ninh Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.752\",\"properties\":{\"matinhxa\":\"6.763\",\"maxa\":763},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Nam Hồng (xã)",
- "truocsn": "Xã Tân Thịnh, Xã Nam Thắng, Xã Nam Hồng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.799\",\"properties\":{\"matinhxa\":\"6.810\",\"maxa\":810},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Nam Lý (xã)",
- "truocsn": "Xã Tiến Thắng (huyện Lý Nhân), Xã Phú Phúc, Xã Hòa Hậu",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2789\",\"properties\":{\"matinhxa\":\"6.2805\",\"maxa\":2805},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Nam Minh (xã)",
- "truocsn": "Xã Nam Dương, Xã Bình Minh, Xã Nam Tiến",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.793\",\"properties\":{\"matinhxa\":\"6.804\",\"maxa\":804},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nam Ninh (xã)",
- "truocsn": "Xã Nam Hoa, Xã Nam Lợi, Xã Nam Hải, Xã Nam Thanh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.796\",\"properties\":{\"matinhxa\":\"6.807\",\"maxa\":807},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nam Trực (xã)",
- "truocsn": "Thị trấn Nam Giang, Xã Nam Cường, Xã Nam Hùng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.874\",\"properties\":{\"matinhxa\":\"6.885\",\"maxa\":885},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nam Xang (xã)",
- "truocsn": "Xã Công Lý, Xã Nguyên Lý, Xã Đức Lý",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2797\",\"properties\":{\"matinhxa\":\"6.2813\",\"maxa\":2813},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Nghĩa Hưng (xã)",
- "truocsn": "Thị trấn Liễu Đề, Xã Nghĩa Thái, Xã Nghĩa Châu, Xã Nghĩa Trung",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.873\",\"properties\":{\"matinhxa\":\"6.884\",\"maxa\":884},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Nghĩa Lâm (xã)",
- "truocsn": "Xã Nghĩa Hùng, Xã Nghĩa Hải, Xã Nghĩa Lâm",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.824\",\"properties\":{\"matinhxa\":\"6.835\",\"maxa\":835},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Nghĩa Sơn (xã)",
- "truocsn": "Xã Nghĩa Lạc, Xã Nghĩa Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.936\",\"properties\":{\"matinhxa\":\"6.947\",\"maxa\":947},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Nguyễn Úy (phường)",
- "truocsn": "Phường Tượng Lĩnh, Phường Tân Sơn, Xã Nguyễn Úy",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2792\",\"properties\":{\"matinhxa\":\"6.2808\",\"maxa\":2808},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Nhân Hà (xã)",
- "truocsn": "Xã Nhân Thịnh, Xã Nhân Mỹ, Xã Xuân Khê",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2790\",\"properties\":{\"matinhxa\":\"6.2806\",\"maxa\":2806},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Nho Quan (xã)",
- "truocsn": "Thị trấn Nho Quan, Xã Đồng Phong, Xã Yên Quang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.751\",\"properties\":{\"matinhxa\":\"6.762\",\"maxa\":762},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Ninh Cường (xã)",
- "truocsn": "Thị trấn Ninh Cường, Xã Trực Cường, Xã Trực Hùng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.917\",\"properties\":{\"matinhxa\":\"6.928\",\"maxa\":928},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Ninh Giang (xã)",
- "truocsn": "Xã Trực Chính, Xã Phương Định, Xã Liêm Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.891\",\"properties\":{\"matinhxa\":\"6.902\",\"maxa\":902},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Phát Diệm (xã)",
- "truocsn": "Thị trấn Phát Diệm, Xã Thượng Kiệm, Xã Kim Chính",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.760\",\"properties\":{\"matinhxa\":\"6.771\",\"maxa\":771},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Phong Doanh (xã)",
- "truocsn": "Xã Phú Hưng, Xã Yên Thọ, Xã Yên Chính",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.909\",\"properties\":{\"matinhxa\":\"6.920\",\"maxa\":920},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Phú Long (xã)",
- "truocsn": "Xã Kỳ Phú, Xã Phú Long",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.761\",\"properties\":{\"matinhxa\":\"6.772\",\"maxa\":772},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Phủ Lý (phường)",
- "truocsn": "Phường Châu Cầu, Phường Thanh Châu, Phường Liêm Chính, Phường Quang Trung (thành phố Phủ Lý)",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2828\",\"properties\":{\"matinhxa\":\"6.2844\",\"maxa\":2844},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Phú Sơn (xã)",
- "truocsn": "Xã Thạch Bình, Xã Lạc Vân, Xã Phú Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.748\",\"properties\":{\"matinhxa\":\"6.759\",\"maxa\":759},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Phù Vân (phường)",
- "truocsn": "Phường Lê Hồng Phong, Xã Kim Bình, Xã Phù Vân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2836\",\"properties\":{\"matinhxa\":\"6.2852\",\"maxa\":2852},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Quang Hưng (xã)",
- "truocsn": "Xã Trực Khang, Xã Trực Mỹ, Xã Trực Thuận",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.872\",\"properties\":{\"matinhxa\":\"6.883\",\"maxa\":883},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Quang Thiện (xã)",
- "truocsn": "Xã Như Hòa, Xã Đồng Hướng, Xã Quang Thiện",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.854\",\"properties\":{\"matinhxa\":\"6.865\",\"maxa\":865},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Quỹ Nhất (xã)",
- "truocsn": "Thị trấn Quỹ Nhất, Xã Nghĩa Thành, Xã Nghĩa Lợi",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.921\",\"properties\":{\"matinhxa\":\"6.932\",\"maxa\":932},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Quỳnh Lưu (xã)",
- "truocsn": "Xã Phú Lộc, Xã Quỳnh Lưu",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.735\",\"properties\":{\"matinhxa\":\"6.746\",\"maxa\":746},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Rạng Đông (xã)",
- "truocsn": "Xã Nam Điền (huyện Nghĩa Hưng), Xã Phúc Thắng, Thị trấn Rạng Đông",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.834\",\"properties\":{\"matinhxa\":\"6.845\",\"maxa\":845},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tam Chúc (phường)",
- "truocsn": "Phường Ba Sao, Xã Khả Phong, Xã Thuỵ Lôi",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2825\",\"properties\":{\"matinhxa\":\"6.2841\",\"maxa\":2841},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tam Điệp (phường)",
- "truocsn": "Phường Bắc Sơn, Phường Tây Sơn, Xã Quang Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.856\",\"properties\":{\"matinhxa\":\"6.867\",\"maxa\":867},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Tân Minh (xã)",
- "truocsn": "Xã Trung Nghĩa, Xã Tân Minh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.770\",\"properties\":{\"matinhxa\":\"6.781\",\"maxa\":781},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tân Thanh (xã)",
- "truocsn": "Thị trấn Tân Thanh, Xã Thanh Thủy, Xã Thanh Phong",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2822\",\"properties\":{\"matinhxa\":\"6.2838\",\"maxa\":2838},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Tây Hoa Lư (phường)",
- "truocsn": "Phường Ninh Giang, Xã Trường Yên, Xã Ninh Hòa, Xã Phúc Sơn, Xã Gia Sinh, Xã Gia Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.730\",\"properties\":{\"matinhxa\":\"6.741\",\"maxa\":741},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Thanh Bình (xã)",
- "truocsn": "Xã Liêm Sơn, Xã Liêm Thuận, Xã Liêm Túc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2821\",\"properties\":{\"matinhxa\":\"6.2837\",\"maxa\":2837},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Thanh Lâm (xã)",
- "truocsn": "Xã Thanh Nghị, Xã Thanh Tân, Xã Thanh Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2820\",\"properties\":{\"matinhxa\":\"6.2836\",\"maxa\":2836},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Thanh Liêm (xã)",
- "truocsn": "Xã Thanh Hương, Xã Thanh Tâm, Xã Thanh Nguyên",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2819\",\"properties\":{\"matinhxa\":\"6.2835\",\"maxa\":2835},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Thành Nam (phường)",
- "truocsn": "Phường Mỹ Xá, Xã Đại An",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.777\",\"properties\":{\"matinhxa\":\"6.788\",\"maxa\":788},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Thanh Sơn (xã)",
- "truocsn": "Xã Thanh Sơn (huyện Nho Quan), Xã Thượng Hòa, Xã Văn Phú",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.731\",\"properties\":{\"matinhxa\":\"6.742\",\"maxa\":742},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Thiên Trường (phường)",
- "truocsn": "Phường Lộc Hạ, Xã Mỹ Tân, Xã Mỹ Trung",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.878\",\"properties\":{\"matinhxa\":\"6.889\",\"maxa\":889},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Tiên Sơn (phường)",
- "truocsn": "Phường Tiên Sơn, Phường Tiên Nội, Xã Tiên Ngoại",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2834\",\"properties\":{\"matinhxa\":\"6.2850\",\"maxa\":2850},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Trần Thương (xã)",
- "truocsn": "Xã Trần Hưng Đạo, Xã Nhân Nghĩa, Xã Nhân Bình",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2796\",\"properties\":{\"matinhxa\":\"6.2812\",\"maxa\":2812},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Trực Ninh (xã)",
- "truocsn": "Xã Trực Thanh, Xã Trực Nội, Xã Trực Hưng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.876\",\"properties\":{\"matinhxa\":\"6.887\",\"maxa\":887},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Trung Sơn (phường)",
- "truocsn": "Phường Nam Sơn, Phường Trung Sơn, Xã Đông Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.754\",\"properties\":{\"matinhxa\":\"6.765\",\"maxa\":765},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Trường Thi (phường)",
- "truocsn": "Phường Trường Thi, Xã Thành Lợi",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.879\",\"properties\":{\"matinhxa\":\"6.890\",\"maxa\":890},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Vạn Thắng (xã)",
- "truocsn": "Xã Yên Thắng (huyện Ý Yên), Xã Yên Tiến, Xã Yên Lương",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.913\",\"properties\":{\"matinhxa\":\"6.924\",\"maxa\":924},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Vị Khê (phường)",
- "truocsn": "Xã Nam Điền (huyện Nam Trực), Phường Nam Phong",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.880\",\"properties\":{\"matinhxa\":\"6.891\",\"maxa\":891},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Vĩnh Trụ (xã)",
- "truocsn": "Thị trấn Vĩnh Trụ, Xã Nhân Chính, Xã Nhân Khang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2806\",\"properties\":{\"matinhxa\":\"6.2822\",\"maxa\":2822},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Vụ Bản (xã)",
- "truocsn": "Thị trấn Gôi, Xã Kim Thái, Xã Tam Thanh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.910\",\"properties\":{\"matinhxa\":\"6.921\",\"maxa\":921},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Vũ Dương (xã)",
- "truocsn": "Xã Yên Mỹ (huyện Ý Yên), Xã Yên Bình, Xã Yên Dương, Xã Yên Ninh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.912\",\"properties\":{\"matinhxa\":\"6.923\",\"maxa\":923},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Xuân Giang (xã)",
- "truocsn": "Xã Xuân Tân, Xã Xuân Phú, Xã Xuân Giang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.819\",\"properties\":{\"matinhxa\":\"6.830\",\"maxa\":830},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Xuân Hồng (xã)",
- "truocsn": "Xã Xuân Châu, Xã Xuân Thành, Xã Xuân Thượng, Xã Xuân Hồng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.816\",\"properties\":{\"matinhxa\":\"6.827\",\"maxa\":827},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Xuân Hưng (xã)",
- "truocsn": "Xã Xuân Vinh, Xã Trà Lũ, Xã Thọ Nghiệp",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.817\",\"properties\":{\"matinhxa\":\"6.828\",\"maxa\":828},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Xuân Trường (xã)",
- "truocsn": "Thị trấn Xuân Trường, Xã Xuân Phúc, Xã Xuân Ninh, Xã Xuân Ngọc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.815\",\"properties\":{\"matinhxa\":\"6.826\",\"maxa\":826},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Ý Yên (xã)",
- "truocsn": "Xã Yên Phong, Xã Hồng Quang (huyện Ý Yên), Xã Yên Khánh, Thị trấn Lâm",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.911\",\"properties\":{\"matinhxa\":\"6.922\",\"maxa\":922},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Yên Cường (xã)",
- "truocsn": "Xã Yên Nhân, Xã Yên Lộc (huyện Ý Yên), Xã Yên Phúc, Xã Yên Cường",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.914\",\"properties\":{\"matinhxa\":\"6.925\",\"maxa\":925},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Yên Đồng (xã)",
- "truocsn": "Xã Yên Đồng (huyện Ý Yên), Xã Yên Trị, Xã Yên Khang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.916\",\"properties\":{\"matinhxa\":\"6.927\",\"maxa\":927},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Yên Khánh (xã)",
- "truocsn": "Thị trấn Yên Ninh, Xã Khánh Cư, Xã Khánh Vân, Xã Khánh Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.827\",\"properties\":{\"matinhxa\":\"6.838\",\"maxa\":838},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Yên Mạc (xã)",
- "truocsn": "Xã Yên Mỹ (huyện Yên Mô), Xã Yên Lâm, Xã Yên Mạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.831\",\"properties\":{\"matinhxa\":\"6.842\",\"maxa\":842},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Yên Mô (xã)",
- "truocsn": "Thị trấn Yên Thịnh, Xã Khánh Dương, Xã Yên Hòa",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.871\",\"properties\":{\"matinhxa\":\"6.882\",\"maxa\":882},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Yên Sơn (phường)",
- "truocsn": "Phường Tân Bình, Xã Quảng Lạc, Xã Yên Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.851\",\"properties\":{\"matinhxa\":\"6.862\",\"maxa\":862},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Yên Thắng (phường)",
- "truocsn": "Xã Yên Thắng (huyện Yên Mô), Xã Khánh Thượng, Phường Yên Bình",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.855\",\"properties\":{\"matinhxa\":\"6.866\",\"maxa\":866},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Yên Từ (xã)",
- "truocsn": "Xã Yên Phong, Xã Yên Nhân (huyện Yên Mô), Xã Yên Từ",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.758\",\"properties\":{\"matinhxa\":\"6.769\",\"maxa\":769},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Nông (xã)",
- "truocsn": "Xã Tiến Nông, Xã Khuyến Nông, Xã Nông Trường, Xã An Nông",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2675\",\"properties\":{\"matinhxa\":\"16.2689\",\"maxa\":2689},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Đình (xã)",
- "truocsn": "Xã Nga Vịnh, Xã Nga Trường, Xã Nga Thiện, Xã Ba Đình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2646\",\"properties\":{\"matinhxa\":\"16.2660\",\"maxa\":2660},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bá Thước (xã)",
- "truocsn": "Thị trấn Cành Nàng, Xã Ban Công, Xã Hạ Trung",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2651\",\"properties\":{\"matinhxa\":\"16.2665\",\"maxa\":2665},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bát Mọt (xã)",
- "truocsn": "xã Bát Mọt (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2593\",\"properties\":{\"matinhxa\":\"16.2607\",\"maxa\":2607},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Biện Thượng (xã)",
- "truocsn": "Xã Vĩnh Hùng, Xã Minh Tân, Xã Vĩnh Thịnh, Xã Vĩnh An",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2618\",\"properties\":{\"matinhxa\":\"16.2632\",\"maxa\":2632},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bỉm Sơn (phường)",
- "truocsn": "Phường Đông Sơn, Phường Lam Sơn, Phường Ba Đình (thị xã Bỉm Sơn), Xã Hà Vinh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2642\",\"properties\":{\"matinhxa\":\"16.2656\",\"maxa\":2656},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Các Sơn (xã)",
- "truocsn": "Xã Anh Sơn, Xã Các Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2559\",\"properties\":{\"matinhxa\":\"16.2573\",\"maxa\":2573},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cẩm Tân (xã)",
- "truocsn": "Xã Cẩm Long, Xã Cẩm Phú, Xã Cẩm Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2650\",\"properties\":{\"matinhxa\":\"16.2664\",\"maxa\":2664},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cẩm Thạch (xã)",
- "truocsn": "Xã Cẩm Thành, Xã Cẩm Liên, Xã Cẩm Bình, Xã Cẩm Thạch",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2659\",\"properties\":{\"matinhxa\":\"16.2673\",\"maxa\":2673},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cẩm Thủy (xã)",
- "truocsn": "Thị trấn Phong Sơn, Xã Cẩm Ngọc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2647\",\"properties\":{\"matinhxa\":\"16.2661\",\"maxa\":2661},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cẩm Tú (xã)",
- "truocsn": "Xã Cẩm Quý, Xã Cẩm Giang, Xã Cẩm Lương, Xã Cẩm Tú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2648\",\"properties\":{\"matinhxa\":\"16.2662\",\"maxa\":2662},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cẩm Vân (xã)",
- "truocsn": "Xã Cẩm Tâm, Xã Cẩm Châu, Xã Cẩm Yên, Xã Cẩm Vân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2649\",\"properties\":{\"matinhxa\":\"16.2663\",\"maxa\":2663},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cổ Lũng (xã)",
- "truocsn": "Xã Lũng Cao, Xã Cổ Lũng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2657\",\"properties\":{\"matinhxa\":\"16.2671\",\"maxa\":2671},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Công Chính (xã)",
- "truocsn": "Xã Công Liêm, Xã Yên Mỹ, Xã Công Chính, Xã Thanh Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2560\",\"properties\":{\"matinhxa\":\"16.2574\",\"maxa\":2574},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đào Duy Từ (phường)",
- "truocsn": "Phường Nguyên Bình, Phường Xuân Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2556\",\"properties\":{\"matinhxa\":\"16.2570\",\"maxa\":2570},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Điền Lư (xã)",
- "truocsn": "Xã Ái Thượng, Xã Điền Trung, Xã Điền Lư",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2654\",\"properties\":{\"matinhxa\":\"16.2668\",\"maxa\":2668},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Điền Quang (xã)",
- "truocsn": "Xã Điền Thượng, Xã Điền Hạ, Xã Điền Quang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2652\",\"properties\":{\"matinhxa\":\"16.2666\",\"maxa\":2666},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Định Hòa (xã)",
- "truocsn": "Xã Định Bình, Xã Định Công, Xã Định Thành, Xã Định Hòa, Xã Thiệu Long",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2620\",\"properties\":{\"matinhxa\":\"16.2634\",\"maxa\":2634},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Định Tân (xã)",
- "truocsn": "Xã Định Hải (huyện Yên Định), Xã Định Hưng, Xã Định Tiến, Xã Định Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2621\",\"properties\":{\"matinhxa\":\"16.2635\",\"maxa\":2635},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đồng Lương (xã)",
- "truocsn": "Xã Tân Phúc (huyện Lang Chánh), Xã Đồng Lương",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2725\",\"properties\":{\"matinhxa\":\"16.2740\",\"maxa\":2740},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đông Quang (phường)",
- "truocsn": "Phường Quảng Thắng, Xã Đông Vinh, Xã Đông Quang, Xã Đông Yên, Xã Đông Văn, Xã Đông Phú, Xã Đông Nam, Phường An Hưng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2572\",\"properties\":{\"matinhxa\":\"16.2586\",\"maxa\":2586},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đông Sơn (phường)",
- "truocsn": "Phường Rừng Thông, Phường Đông Thịnh, Phường Đông Tân, Xã Đông Hòa, Xã Đông Minh, Xã Đông Hoàng, Xã Đông Khê, Xã Đông Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2577\",\"properties\":{\"matinhxa\":\"16.2591\",\"maxa\":2591},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đông Thành (xã)",
- "truocsn": "Xã Đồng Lộc, Xã Thành Lộc, Xã Cầu Lộc, Xã Tuy Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2625\",\"properties\":{\"matinhxa\":\"16.2639\",\"maxa\":2639},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đông Tiến (phường)",
- "truocsn": "Phường Đông Lĩnh, Phường Thiệu Khánh, Xã Đông Thanh, Xã Thiệu Vân, Xã Tân Châu, Xã Thiệu Giao, Xã Đông Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2576\",\"properties\":{\"matinhxa\":\"16.2590\",\"maxa\":2590},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đồng Tiến (xã)",
- "truocsn": "Xã Đồng Lợi, Xã Đồng Thắng, Xã Đồng Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2663\",\"properties\":{\"matinhxa\":\"16.2677\",\"maxa\":2677},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Giao An (xã)",
- "truocsn": "Xã Giao Thiện, Xã Giao An",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2724\",\"properties\":{\"matinhxa\":\"16.2739\",\"maxa\":2739},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hà Long (xã)",
- "truocsn": "Thị trấn Hà Long, Xã Hà Bắc, Xã Hà Giang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2644\",\"properties\":{\"matinhxa\":\"16.2658\",\"maxa\":2658},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hà Trung (xã)",
- "truocsn": "Xã Hà Đông, Xã Hà Ngọc, Xã Yến Sơn, Thị trấn Hà Trung, Xã Hà Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2623\",\"properties\":{\"matinhxa\":\"16.2637\",\"maxa\":2637},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hạc Thành (phường)",
- "truocsn": "Phường Phú Sơn, Phường Lam Sơn, Phường Ba Đình, Phường Ngọc Trạo, Phường Đông Sơn (thành phố Thanh Hóa), Phường Trường Thi, Phường Điện Biên, Phường Đông Hương, Phường Đông Hải, Phường Đông Vệ, Phường Đông Thọ, Phường An Hưng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2578\",\"properties\":{\"matinhxa\":\"16.2592\",\"maxa\":2592},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hải Bình (phường)",
- "truocsn": "Phường Mai Lâm, Phường Tĩnh Hải, Phường Hải Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2558\",\"properties\":{\"matinhxa\":\"16.2572\",\"maxa\":2572},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hải Lĩnh (phường)",
- "truocsn": "Xã Định Hải (thị xã Nghi Sơn), Phường Ninh Hải, Phường Hải Lĩnh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2555\",\"properties\":{\"matinhxa\":\"16.2569\",\"maxa\":2569},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hàm Rồng (phường)",
- "truocsn": "Phường Thiệu Dương, Phường Đông Cương, Phường Nam Ngạn, Phường Hàm Rồng, Phường Đông Thọ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2579\",\"properties\":{\"matinhxa\":\"16.2593\",\"maxa\":2593},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hậu Lộc (xã)",
- "truocsn": "Thị trấn Hậu Lộc, Xã Thuần Lộc, Xã Mỹ Lộc, Xã Lộc Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2622\",\"properties\":{\"matinhxa\":\"16.2636\",\"maxa\":2636},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hiền Kiệt (xã)",
- "truocsn": "Xã Hiền Chung, Xã Hiền Kiệt",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2693\",\"properties\":{\"matinhxa\":\"16.2707\",\"maxa\":2707},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hồ Vương (xã)",
- "truocsn": "Xã Nga Hải, Xã Nga Thành, Xã Nga Giáp, Xã Nga Liên",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2632\",\"properties\":{\"matinhxa\":\"16.2646\",\"maxa\":2646},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hoa Lộc (xã)",
- "truocsn": "Xã Xuân Lộc (huyện Hậu Lộc), Xã Liên Lộc, Xã Quang Lộc, Xã Phú Lộc, Xã Hòa Lộc, Xã Hoa Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2627\",\"properties\":{\"matinhxa\":\"16.2641\",\"maxa\":2641},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hóa Quỳ (xã)",
- "truocsn": "Xã Bình Lương, Xã Hóa Quỳ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2689\",\"properties\":{\"matinhxa\":\"16.2703\",\"maxa\":2703},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hoằng Châu (xã)",
- "truocsn": "Xã Hoằng Thắng, Xã Hoằng Phong, Xã Hoằng Lưu, Xã Hoằng Châu",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2604\",\"properties\":{\"matinhxa\":\"16.2618\",\"maxa\":2618},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hoằng Giang (xã)",
- "truocsn": "Xã Hoằng Xuân, Xã Hoằng Quỳ, Xã Hoằng Hợp, Xã Hoằng Giang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2591\",\"properties\":{\"matinhxa\":\"16.2605\",\"maxa\":2605},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hoằng Hóa (xã)",
- "truocsn": "Thị trấn Bút Sơn, Xã Hoằng Đức, Xã Hoằng Đồng, Xã Hoằng Đạo, Xã Hoằng Hà, Xã Hoằng Đạt",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2580\",\"properties\":{\"matinhxa\":\"16.2594\",\"maxa\":2594},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hoằng Lộc (xã)",
- "truocsn": "Xã Hoằng Thịnh, Xã Hoằng Thái, Xã Hoằng Thành, Xã Hoằng Trạch, Xã Hoằng Tân, Xã Hoằng Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2606\",\"properties\":{\"matinhxa\":\"16.2620\",\"maxa\":2620},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hoằng Phú (xã)",
- "truocsn": "Xã Hoằng Quý, Xã Hoằng Kim, Xã Hoằng Trung, Xã Hoằng Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2613\",\"properties\":{\"matinhxa\":\"16.2627\",\"maxa\":2627},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hoằng Sơn (xã)",
- "truocsn": "Xã Hoằng Trinh, Xã Hoằng Xuyên, Xã Hoằng Cát, Xã Hoằng Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2603\",\"properties\":{\"matinhxa\":\"16.2617\",\"maxa\":2617},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hoằng Thanh (xã)",
- "truocsn": "Xã Hoằng Đông, Xã Hoằng Ngọc, Xã Hoằng Phụ, Xã Hoằng Thanh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2608\",\"properties\":{\"matinhxa\":\"16.2622\",\"maxa\":2622},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hoằng Tiến (xã)",
- "truocsn": "Xã Hoằng Yến, Xã Hoằng Hải, Xã Hoằng Trường, Xã Hoằng Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2607\",\"properties\":{\"matinhxa\":\"16.2621\",\"maxa\":2621},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Hoạt Giang (xã)",
- "truocsn": "Xã Yên Dương, Xã Hoạt Giang, Thị trấn Hà Trung, Xã Hà Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2645\",\"properties\":{\"matinhxa\":\"16.2659\",\"maxa\":2659},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Hồi Xuân (xã)",
- "truocsn": "Thị trấn Hồi Xuân, Xã Phú Nghiêm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2705\",\"properties\":{\"matinhxa\":\"16.2719\",\"maxa\":2719},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Hợp Tiến (xã)",
- "truocsn": "Xã Hợp Lý, Xã Hợp Thắng, Xã Hợp Thành, Xã Triệu Thành, Xã Hợp Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2674\",\"properties\":{\"matinhxa\":\"16.2688\",\"maxa\":2688},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Kiên Thọ (xã)",
- "truocsn": "Xã Phúc Thịnh, Xã Phùng Minh, Xã Kiên Thọ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2699\",\"properties\":{\"matinhxa\":\"16.2713\",\"maxa\":2713},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Kim Tân (xã)",
- "truocsn": "Thị trấn Kim Tân, Xã Thành Hưng, Xã Thành Thọ, Xã Thạch Định, Xã Thành Trực, Xã Thành Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2633\",\"properties\":{\"matinhxa\":\"16.2647\",\"maxa\":2647},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Lam Sơn (xã)",
- "truocsn": "Thị trấn Lam Sơn, Xã Xuân Bái, Xã Thọ Xương",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2697\",\"properties\":{\"matinhxa\":\"16.2711\",\"maxa\":2711},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Linh Sơn (xã)",
- "truocsn": "Thị trấn Lang Chánh, Xã Trí Nang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2722\",\"properties\":{\"matinhxa\":\"16.2737\",\"maxa\":2737},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Lĩnh Toại (xã)",
- "truocsn": "Xã Hà Hải, Xã Hà Châu, Xã Thái Lai, Xã Lĩnh Toại",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2624\",\"properties\":{\"matinhxa\":\"16.2638\",\"maxa\":2638},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Luận Thành (xã)",
- "truocsn": "Xã Xuân Cao, Xã Luận Thành, Xã Luận Khê",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2597\",\"properties\":{\"matinhxa\":\"16.2611\",\"maxa\":2611},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Lương Sơn (xã)",
- "truocsn": "xã Lương Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2601\",\"properties\":{\"matinhxa\":\"16.2615\",\"maxa\":2615},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Lưu Vệ (xã)",
- "truocsn": "Thị trấn Tân Phong, Xã Quảng Đức, Xã Quảng Định",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2565\",\"properties\":{\"matinhxa\":\"16.2579\",\"maxa\":2579},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Mậu Lâm (xã)",
- "truocsn": "Xã Phú Nhuận, Xã Mậu Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2664\",\"properties\":{\"matinhxa\":\"16.2678\",\"maxa\":2678},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Minh Sơn (xã)",
- "truocsn": "Xã Minh Sơn (huyện Ngọc Lặc), Xã Lam Sơn, Xã Cao Ngọc, Xã Minh Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2700\",\"properties\":{\"matinhxa\":\"16.2714\",\"maxa\":2714},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Mường Chanh (xã)",
- "truocsn": "xã Mường Chanh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2713\",\"properties\":{\"matinhxa\":\"16.2728\",\"maxa\":2728},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Mường Lát (xã)",
- "truocsn": "Thị trấn Mường Lát",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2711\",\"properties\":{\"matinhxa\":\"16.2726\",\"maxa\":2726},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Mường Lý (xã)",
- "truocsn": "xã Mường Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2709\",\"properties\":{\"matinhxa\":\"16.2724\",\"maxa\":2724},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Mường Mìn (xã)",
- "truocsn": "xã Mường Mìn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2720\",\"properties\":{\"matinhxa\":\"16.2735\",\"maxa\":2735},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Na Mèo (xã)",
- "truocsn": "xã Na Mèo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2727\",\"properties\":{\"matinhxa\":\"16.2742\",\"maxa\":2742},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Nam Sầm Sơn (phường)",
- "truocsn": "Phường Quảng Vinh, Xã Quảng Minh, Xã Đại Hùng, Xã Quảng Giao",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2728\",\"properties\":{\"matinhxa\":\"16.2743\",\"maxa\":2743},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Nam Xuân (xã)",
- "truocsn": "Xã Nam Tiến, Xã Nam Xuân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2694\",\"properties\":{\"matinhxa\":\"16.2708\",\"maxa\":2708},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Nga An (xã)",
- "truocsn": "Xã Nga Điền, Xã Nga Phú, Xã Nga An",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2641\",\"properties\":{\"matinhxa\":\"16.2655\",\"maxa\":2655},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nga Sơn (xã)",
- "truocsn": "Thị trấn Nga Sơn, Xã Nga Yên, Xã Nga Thanh, Xã Nga Hiệp, Xã Nga Thủy",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2630\",\"properties\":{\"matinhxa\":\"16.2644\",\"maxa\":2644},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nga Thắng (xã)",
- "truocsn": "Xã Nga Văn, Xã Nga Phượng, Xã Nga Thạch, Xã Nga Thắng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2629\",\"properties\":{\"matinhxa\":\"16.2643\",\"maxa\":2643},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nghi Sơn (phường)",
- "truocsn": "Phường Hải Thượng, Xã Hải Hà, Xã Nghi Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2575\",\"properties\":{\"matinhxa\":\"16.2589\",\"maxa\":2589},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Ngọc Lặc (xã)",
- "truocsn": "Thị trấn Ngọc Lặc, Xã Mỹ Tân, Xã Thúy Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2682\",\"properties\":{\"matinhxa\":\"16.2696\",\"maxa\":2696},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Ngọc Liên (xã)",
- "truocsn": "Xã Lộc Thịnh, Xã Cao Thịnh, Xã Ngọc Sơn, Xã Ngọc Trung, Xã Ngọc Liên",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2681\",\"properties\":{\"matinhxa\":\"16.2695\",\"maxa\":2695},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Ngọc Sơn (phường)",
- "truocsn": "Xã Thanh Sơn (thị xã Nghi Sơn), Xã Thanh Thủy, Phường Hải Châu, Phường Hải Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2610\",\"properties\":{\"matinhxa\":\"16.2624\",\"maxa\":2624},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Ngọc Trạo (xã)",
- "truocsn": "Xã Thành An, Xã Thành Long, Xã Thành Tâm, Xã Ngọc Trạo",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2637\",\"properties\":{\"matinhxa\":\"16.2651\",\"maxa\":2651},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nguyệt Ấn (xã)",
- "truocsn": "Xã Phùng Giáo, Xã Vân Am, Xã Nguyệt Ấn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2703\",\"properties\":{\"matinhxa\":\"16.2717\",\"maxa\":2717},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nguyệt Viên (phường)",
- "truocsn": "Phường Tào Xuyên, Phường Long Anh, Phường Hoằng Quang, Phường Hoằng Đại",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2605\",\"properties\":{\"matinhxa\":\"16.2619\",\"maxa\":2619},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nhi Sơn (xã)",
- "truocsn": "xã Nhi Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2708\",\"properties\":{\"matinhxa\":\"16.2723\",\"maxa\":2723},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Như Thanh (xã)",
- "truocsn": "Thị trấn Bến Sung, Xã Xuân Khang, Xã Hải Long, Xã Yên Thọ (huyện Như Thanh)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2665\",\"properties\":{\"matinhxa\":\"16.2679\",\"maxa\":2679},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Như Xuân (xã)",
- "truocsn": "Thị trấn Yên Cát, Xã Tân Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2688\",\"properties\":{\"matinhxa\":\"16.2702\",\"maxa\":2702},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Nông Cống (xã)",
- "truocsn": "Thị trấn Nông Cống, Xã Vạn Thắng, Xã Vạn Hòa, Xã Vạn Thiện, Xã Minh Nghĩa, Xã Minh Khôi",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2571\",\"properties\":{\"matinhxa\":\"16.2585\",\"maxa\":2585},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Phú Lệ (xã)",
- "truocsn": "Xã Phú Sơn (huyện Quan Hóa), Xã Phú Thanh, Xã Phú Lệ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2691\",\"properties\":{\"matinhxa\":\"16.2705\",\"maxa\":2705},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Phú Xuân (xã)",
- "truocsn": "xã Phú Xuân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2692\",\"properties\":{\"matinhxa\":\"16.2706\",\"maxa\":2706},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Pù Luông (xã)",
- "truocsn": "Xã Thành Sơn (huyện Bá Thước), Xã Lũng Niêm, Xã Thành Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2655\",\"properties\":{\"matinhxa\":\"16.2669\",\"maxa\":2669},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Pù Nhi (xã)",
- "truocsn": "xã Pù Nhi (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3363\",\"properties\":{\"matinhxa\":\"16.2722\",\"maxa\":2722},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Quan Sơn (xã)",
- "truocsn": "Xã Trung Thượng, Thị trấn Sơn Lư",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2714\",\"properties\":{\"matinhxa\":\"16.2729\",\"maxa\":2729},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Quảng Bình (xã)",
- "truocsn": "Xã Quảng Lưu, Xã Quảng Lộc, Xã Quảng Thái, Xã Quảng Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2569\",\"properties\":{\"matinhxa\":\"16.2583\",\"maxa\":2583},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Quang Chiểu (xã)",
- "truocsn": "xã Quang Chiểu (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2712\",\"properties\":{\"matinhxa\":\"16.2727\",\"maxa\":2727},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Quảng Chính (xã)",
- "truocsn": "Xã Quảng Trường, Xã Quảng Khê, Xã Quảng Trung, Xã Quảng Chính",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2563\",\"properties\":{\"matinhxa\":\"16.2577\",\"maxa\":2577},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Quảng Ngọc (xã)",
- "truocsn": "Xã Quảng Hợp, Xã Quảng Văn, Xã Quảng Phúc, Xã Quảng Ngọc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2568\",\"properties\":{\"matinhxa\":\"16.2582\",\"maxa\":2582},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Quảng Ninh (xã)",
- "truocsn": "Xã Quảng Nhân, Xã Quảng Hải, Xã Quảng Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2570\",\"properties\":{\"matinhxa\":\"16.2584\",\"maxa\":2584},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Quảng Phú (phường)",
- "truocsn": "Phường Quảng Hưng, Phường Quảng Tâm, Phường Quảng Thành, Phường Quảng Đông, Phường Quảng Thịnh, Phường Quảng Cát, Phường Quảng Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2566\",\"properties\":{\"matinhxa\":\"16.2580\",\"maxa\":2580},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Quang Trung (phường)",
- "truocsn": "Phường Bắc Sơn, Phường Ngọc Trạo, Phường Phú Sơn, Xã Quang Trung (thị xã Bỉm Sơn)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2729\",\"properties\":{\"matinhxa\":\"16.2744\",\"maxa\":2744},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Quảng Yên (xã)",
- "truocsn": "Xã Quảng Trạch, Xã Quảng Hòa, Xã Quảng Long, Xã Quảng Yên",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2567\",\"properties\":{\"matinhxa\":\"16.2581\",\"maxa\":2581},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Quý Lộc (xã)",
- "truocsn": "Xã Yên Thọ (huyện Yên Định), Thị trấn Yên Lâm, Thị trấn Quý Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2640\",\"properties\":{\"matinhxa\":\"16.2654\",\"maxa\":2654},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Quý Lương (xã)",
- "truocsn": "Xã Lương Nội, Xã Lương Trung, Xã Lương Ngoại",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2656\",\"properties\":{\"matinhxa\":\"16.2670\",\"maxa\":2670},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Sầm Sơn (phường)",
- "truocsn": "Phường Bắc Sơn (thành phố Sầm Sơn), Phường Quảng Tiến, Phường Quảng Cư, Phường Trung Sơn, Phường Trường Sơn, Phường Quảng Châu, Phường Quảng Thọ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2561\",\"properties\":{\"matinhxa\":\"16.2575\",\"maxa\":2575},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Sao Vàng (xã)",
- "truocsn": "Thị trấn Sao Vàng, Xã Thọ Lâm, Xã Xuân Phú, Xã Xuân Sinh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2668\",\"properties\":{\"matinhxa\":\"16.2682\",\"maxa\":2682},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Sơn Điện (xã)",
- "truocsn": "xã Sơn Điện (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2719\",\"properties\":{\"matinhxa\":\"16.2734\",\"maxa\":2734},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Sơn Thủy (xã)",
- "truocsn": "xã Sơn Thủy (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2718\",\"properties\":{\"matinhxa\":\"16.2733\",\"maxa\":2733},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tam Chung (xã)",
- "truocsn": "xã Tam Chung (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2707\",\"properties\":{\"matinhxa\":\"16.2721\",\"maxa\":2721},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Tam Lư (xã)",
- "truocsn": "Xã Sơn Hà, Xã Tam Lư, Thị trấn Sơn Lư",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2716\",\"properties\":{\"matinhxa\":\"16.2731\",\"maxa\":2731},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Tam Thanh (xã)",
- "truocsn": "xã Tam Thanh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2717\",\"properties\":{\"matinhxa\":\"16.2732\",\"maxa\":2732},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tân Dân (phường)",
- "truocsn": "Phường Hải An, Phường Tân Dân, Xã Ngọc Lĩnh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2609\",\"properties\":{\"matinhxa\":\"16.2623\",\"maxa\":2623},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tân Ninh (xã)",
- "truocsn": "Thị trấn Nưa, Xã Thái Hòa, Xã Vân Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2662\",\"properties\":{\"matinhxa\":\"16.2676\",\"maxa\":2676},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Thành, Xã Luận Khê",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2600\",\"properties\":{\"matinhxa\":\"16.2614\",\"maxa\":2614},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Nga Tiến, Xã Nga Tân, Xã Nga Thái",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2631\",\"properties\":{\"matinhxa\":\"16.2645\",\"maxa\":2645},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Tây Đô (xã)",
- "truocsn": "Xã Vĩnh Quang, Xã Vĩnh Yên, Xã Vĩnh Tiến, Xã Vĩnh Long",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2639\",\"properties\":{\"matinhxa\":\"16.2653\",\"maxa\":2653},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Thạch Bình (xã)",
- "truocsn": "Xã Thạch Sơn, Xã Thạch Long, Xã Thạch Cẩm, Xã Thạch Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2635\",\"properties\":{\"matinhxa\":\"16.2649\",\"maxa\":2649},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Thạch Lập (xã)",
- "truocsn": "Xã Quang Trung (huyện Ngọc Lặc), Xã Đồng Thịnh, Xã Thạch Lập",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2683\",\"properties\":{\"matinhxa\":\"16.2697\",\"maxa\":2697},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Thạch Quảng (xã)",
- "truocsn": "Xã Thạch Lâm, Xã Thạch Tượng, Xã Thạch Quảng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2643\",\"properties\":{\"matinhxa\":\"16.2657\",\"maxa\":2657},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Thăng Bình (xã)",
- "truocsn": "Xã Thăng Long, Xã Thăng Thọ, Xã Thăng Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2612\",\"properties\":{\"matinhxa\":\"16.2626\",\"maxa\":2626},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Thắng Lộc (xã)",
- "truocsn": "Xã Xuân Lộc (huyện Thường Xuân), Xã Xuân Thắng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2599\",\"properties\":{\"matinhxa\":\"16.2613\",\"maxa\":2613},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Thắng Lợi (xã)",
- "truocsn": "Xã Trung Thành (huyện Nông Cống), Xã Tế Nông, Xã Tế Thắng, Xã Tế Lợi",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2574\",\"properties\":{\"matinhxa\":\"16.2588\",\"maxa\":2588},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Thanh Kỳ (xã)",
- "truocsn": "Xã Thanh Kỳ, Xã Thanh Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2661\",\"properties\":{\"matinhxa\":\"16.2675\",\"maxa\":2675},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Thanh Phong (xã)",
- "truocsn": "Xã Thanh Hòa, Xã Thanh Lâm, Xã Thanh Phong",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2685\",\"properties\":{\"matinhxa\":\"16.2699\",\"maxa\":2699},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Thanh Quân (xã)",
- "truocsn": "Xã Thanh Sơn (huyện Như Xuân), Xã Thanh Xuân, Xã Thanh Quân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2686\",\"properties\":{\"matinhxa\":\"16.2700\",\"maxa\":2700},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Thành Vinh (xã)",
- "truocsn": "Xã Thành Minh, Xã Thành Mỹ, Xã Thành Yên, Xã Thành Vinh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2636\",\"properties\":{\"matinhxa\":\"16.2650\",\"maxa\":2650},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Thiên Phủ (xã)",
- "truocsn": "Xã Nam Động, Xã Thiên Phủ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2695\",\"properties\":{\"matinhxa\":\"16.2709\",\"maxa\":2709},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Thiết Ống (xã)",
- "truocsn": "Xã Thiết Kế, Xã Thiết Ống",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2653\",\"properties\":{\"matinhxa\":\"16.2667\",\"maxa\":2667},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Thiệu Hóa (xã)",
- "truocsn": "Xã Thiệu Phúc, Xã Thiệu Công, Xã Thiệu Nguyên, Thị trấn Thiệu Hóa, Xã Thiệu Long",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2678\",\"properties\":{\"matinhxa\":\"16.2692\",\"maxa\":2692},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Thiệu Quang (xã)",
- "truocsn": "Xã Thiệu Duy, Xã Thiệu Hợp, Xã Thiệu Thịnh, Xã Thiệu Giang, Xã Thiệu Quang, Thị trấn Thiệu Hóa",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2680\",\"properties\":{\"matinhxa\":\"16.2694\",\"maxa\":2694},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Thiệu Tiến (xã)",
- "truocsn": "Xã Thiệu Ngọc, Xã Thiệu Vũ, Xã Thiệu Thành, Xã Thiệu Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2667\",\"properties\":{\"matinhxa\":\"16.2681\",\"maxa\":2681},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Thiệu Toán (xã)",
- "truocsn": "Thị trấn Hậu Hiền, Xã Thiệu Chính, Xã Thiệu Hòa, Xã Thiệu Toán",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2696\",\"properties\":{\"matinhxa\":\"16.2710\",\"maxa\":2710},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Thiệu Trung (xã)",
- "truocsn": "Xã Thiệu Vận, Xã Thiệu Lý, Xã Thiệu Viên, Xã Thiệu Trung, Thị trấn Thiệu Hóa",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2677\",\"properties\":{\"matinhxa\":\"16.2691\",\"maxa\":2691},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Thọ Bình (xã)",
- "truocsn": "Xã Thọ Sơn, Xã Bình Sơn, Xã Thọ Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2704\",\"properties\":{\"matinhxa\":\"16.2718\",\"maxa\":2718},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Thọ Lập (xã)",
- "truocsn": "Xã Xuân Thiên, Xã Thuận Minh, Xã Thọ Lập",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2698\",\"properties\":{\"matinhxa\":\"16.2712\",\"maxa\":2712},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Thọ Long (xã)",
- "truocsn": "Xã Thọ Lộc, Xã Xuân Phong, Xã Nam Giang, Xã Bắc Lương, Xã Tây Hồ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2701\",\"properties\":{\"matinhxa\":\"16.2715\",\"maxa\":2715},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Thọ Ngọc (xã)",
- "truocsn": "Xã Thọ Tiến, Xã Xuân Thọ, Xã Thọ Cường, Xã Thọ Ngọc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2669\",\"properties\":{\"matinhxa\":\"16.2683\",\"maxa\":2683},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Thọ Phú (xã)",
- "truocsn": "Xã Xuân Lộc (huyện Triệu Sơn), Xã Thọ Dân, Xã Thọ Thế, Xã Thọ Tân, Xã Thọ Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2670\",\"properties\":{\"matinhxa\":\"16.2684\",\"maxa\":2684},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Thọ Xuân (xã)",
- "truocsn": "Thị trấn Thọ Xuân, Xã Xuân Hồng, Xã Xuân Trường, Xã Xuân Giang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2671\",\"properties\":{\"matinhxa\":\"16.2685\",\"maxa\":2685},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Thượng Ninh (xã)",
- "truocsn": "Xã Cát Tân, Xã Cát Vân, Xã Thượng Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2687\",\"properties\":{\"matinhxa\":\"16.2701\",\"maxa\":2701},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "131",
- "ten": "Thường Xuân (xã)",
- "truocsn": "Thị trấn Thường Xuân, Xã Thọ Thanh, Xã Ngọc Phụng, Xã Xuân Dương",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2598\",\"properties\":{\"matinhxa\":\"16.2612\",\"maxa\":2612},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "132",
- "ten": "Tiên Trang (xã)",
- "truocsn": "Xã Quảng Thạch, Xã Quảng Nham, Xã Tiên Trang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2564\",\"properties\":{\"matinhxa\":\"16.2578\",\"maxa\":2578},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "133",
- "ten": "Tĩnh Gia (phường)",
- "truocsn": "Phường Hải Hòa, Phường Bình Minh, Phường Hải Thanh, Xã Hải Nhân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2557\",\"properties\":{\"matinhxa\":\"16.2571\",\"maxa\":2571},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "134",
- "ten": "Tống Sơn (xã)",
- "truocsn": "Thị trấn Hà Lĩnh, Xã Hà Tiến, Xã Hà Tân, Xã Hà Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2619\",\"properties\":{\"matinhxa\":\"16.2633\",\"maxa\":2633},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "135",
- "ten": "Triệu Lộc (xã)",
- "truocsn": "Xã Đại Lộc, Xã Tiến Lộc, Xã Triệu Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2626\",\"properties\":{\"matinhxa\":\"16.2640\",\"maxa\":2640},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "136",
- "ten": "Triệu Sơn (xã)",
- "truocsn": "Thị trấn Triệu Sơn, Xã Minh Sơn (huyện Triệu Sơn), Xã Dân Lực, Xã Dân Lý, Xã Dân Quyền",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2676\",\"properties\":{\"matinhxa\":\"16.2690\",\"maxa\":2690},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "137",
- "ten": "Trúc Lâm (phường)",
- "truocsn": "Phường Trúc Lâm, Xã Phú Sơn (thị xã Nghi Sơn), Xã Phú Lâm, Xã Tùng Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2554\",\"properties\":{\"matinhxa\":\"16.2568\",\"maxa\":2568},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "138",
- "ten": "Trung Chính (xã)",
- "truocsn": "Xã Tân Phúc (huyện Nông Cống), Xã Tân Thọ, Xã Tân Khang, Xã Hoàng Sơn, Xã Hoàng Giang, Xã Trung Chính",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2573\",\"properties\":{\"matinhxa\":\"16.2587\",\"maxa\":2587},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "139",
- "ten": "Trung Hạ (xã)",
- "truocsn": "Xã Trung Tiến, Xã Trung Xuân, Xã Trung Hạ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2715\",\"properties\":{\"matinhxa\":\"16.2730\",\"maxa\":2730},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "140",
- "ten": "Trung Lý (xã)",
- "truocsn": "xã Trung Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2710\",\"properties\":{\"matinhxa\":\"16.2725\",\"maxa\":2725},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "141",
- "ten": "Trung Sơn (xã)",
- "truocsn": "xã Trung Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2706\",\"properties\":{\"matinhxa\":\"16.2720\",\"maxa\":2720},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "142",
- "ten": "Trung Thành (xã)",
- "truocsn": "Xã Thành Sơn, Xã Trung Thành (huyện Quan Hóa)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2690\",\"properties\":{\"matinhxa\":\"16.2704\",\"maxa\":2704},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "143",
- "ten": "Trường Lâm (xã)",
- "truocsn": "Xã Tân Trường, Xã Trường Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2602\",\"properties\":{\"matinhxa\":\"16.2616\",\"maxa\":2616},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "144",
- "ten": "Trường Văn (xã)",
- "truocsn": "Xã Trường Minh, Xã Trường Trung, Xã Trường Sơn, Xã Trường Giang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2562\",\"properties\":{\"matinhxa\":\"16.2576\",\"maxa\":2576},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "145",
- "ten": "Tượng Lĩnh (xã)",
- "truocsn": "Xã Tượng Sơn, Xã Tượng Văn, Xã Tượng Lĩnh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2611\",\"properties\":{\"matinhxa\":\"16.2625\",\"maxa\":2625},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "146",
- "ten": "Vân Du (xã)",
- "truocsn": "Thị trấn Vân Du, Xã Thành Công, Xã Thành Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2634\",\"properties\":{\"matinhxa\":\"16.2648\",\"maxa\":2648},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "147",
- "ten": "Vạn Lộc (xã)",
- "truocsn": "Xã Minh Lộc, Xã Hải Lộc, Xã Hưng Lộc, Xã Ngư Lộc, Xã Đa Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2628\",\"properties\":{\"matinhxa\":\"16.2642\",\"maxa\":2642},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "148",
- "ten": "Văn Nho (xã)",
- "truocsn": "Xã Kỳ Tân, Xã Văn Nho",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2658\",\"properties\":{\"matinhxa\":\"16.2672\",\"maxa\":2672},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "149",
- "ten": "Văn Phú (xã)",
- "truocsn": "Xã Tam Văn, Xã Lâm Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2726\",\"properties\":{\"matinhxa\":\"16.2741\",\"maxa\":2741},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "150",
- "ten": "Vạn Xuân (xã)",
- "truocsn": "xã Vạn Xuân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2596\",\"properties\":{\"matinhxa\":\"16.2610\",\"maxa\":2610},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "151",
- "ten": "Vĩnh Lộc (xã)",
- "truocsn": "Thị trấn Vĩnh Lộc, Xã Ninh Khang, Xã Vĩnh Phúc, Xã Vĩnh Hưng, Xã Vĩnh Hòa",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2638\",\"properties\":{\"matinhxa\":\"16.2652\",\"maxa\":2652},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "152",
- "ten": "Xuân Bình (xã)",
- "truocsn": "Xã Xuân Hòa (huyện Như Xuân), Xã Bãi Trành, Xã Xuân Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2684\",\"properties\":{\"matinhxa\":\"16.2698\",\"maxa\":2698},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "153",
- "ten": "Xuân Chinh (xã)",
- "truocsn": "Xã Xuân Lẹ, Xã Xuân Chinh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2595\",\"properties\":{\"matinhxa\":\"16.2609\",\"maxa\":2609},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "154",
- "ten": "Xuân Du (xã)",
- "truocsn": "Xã Cán Khê, Xã Phượng Nghi, Xã Xuân Du",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2666\",\"properties\":{\"matinhxa\":\"16.2680\",\"maxa\":2680},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "155",
- "ten": "Xuân Hòa (xã)",
- "truocsn": "Xã Xuân Hòa (huyện Thọ Xuân), Xã Thọ Hải, Xã Thọ Diên, Xã Xuân Hưng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2672\",\"properties\":{\"matinhxa\":\"16.2686\",\"maxa\":2686},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "156",
- "ten": "Xuân Lập (xã)",
- "truocsn": "Xã Xuân Minh, Xã Xuân Lai, Xã Trường Xuân, Xã Xuân Lập",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2702\",\"properties\":{\"matinhxa\":\"16.2716\",\"maxa\":2716},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "157",
- "ten": "Xuân Thái (xã)",
- "truocsn": "xã Xuân Thái (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2660\",\"properties\":{\"matinhxa\":\"16.2674\",\"maxa\":2674},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "158",
- "ten": "Xuân Tín (xã)",
- "truocsn": "Xã Phú Xuân (huyện Thọ Xuân), Xã Quảng Phú, Xã Xuân Tín",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2673\",\"properties\":{\"matinhxa\":\"16.2687\",\"maxa\":2687},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "159",
- "ten": "Yên Định (xã)",
- "truocsn": "Thị trấn Quán Lào, Xã Định Liên, Xã Định Long, Xã Định Tăng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2614\",\"properties\":{\"matinhxa\":\"16.2628\",\"maxa\":2628},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "160",
- "ten": "Yên Khương (xã)",
- "truocsn": "xã Yên Khương (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2721\",\"properties\":{\"matinhxa\":\"16.2736\",\"maxa\":2736},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "161",
- "ten": "Yên Nhân (xã)",
- "truocsn": "xã Yên Nhân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2594\",\"properties\":{\"matinhxa\":\"16.2608\",\"maxa\":2608},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "162",
- "ten": "Yên Ninh (xã)",
- "truocsn": "Xã Yên Hùng, Xã Yên Thịnh, Xã Yên Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2616\",\"properties\":{\"matinhxa\":\"16.2630\",\"maxa\":2630},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "163",
- "ten": "Yên Phú (xã)",
- "truocsn": "Thị trấn Thống Nhất, Xã Yên Tâm, Xã Yên Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2617\",\"properties\":{\"matinhxa\":\"16.2631\",\"maxa\":2631},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "164",
- "ten": "Yên Thắng (xã)",
- "truocsn": "xã Yên Thắng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2723\",\"properties\":{\"matinhxa\":\"16.2738\",\"maxa\":2738},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "165",
- "ten": "Yên Thọ (xã)",
- "truocsn": "Xã Xuân Phúc, Xã Yên Lạc, Xã Yên Thọ (huyện Như Thanh)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2679\",\"properties\":{\"matinhxa\":\"16.2693\",\"maxa\":2693},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "166",
- "ten": "Yên Trường (xã)",
- "truocsn": "Xã Yên Trung, Xã Yên Phong, Xã Yên Thái, Xã Yên Trường",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2615\",\"properties\":{\"matinhxa\":\"16.2629\",\"maxa\":2629},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Châu (xã)",
- "truocsn": "Xã Diễn An, Xã Diễn Tân, Xã Diễn Thịnh, Xã Diễn Trung",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1450\",\"properties\":{\"matinhxa\":\"17.1463\",\"maxa\":1463},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Anh Sơn (xã)",
- "truocsn": "Thị trấn Kim Nhan, Xã Đức Sơn, Xã Phúc Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1412\",\"properties\":{\"matinhxa\":\"17.1425\",\"maxa\":1425},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Anh Sơn Đông (xã)",
- "truocsn": "Xã Lạng Sơn, Xã Tào Sơn, Xã Vĩnh Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1416\",\"properties\":{\"matinhxa\":\"17.1429\",\"maxa\":1429},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bắc Lý (xã)",
- "truocsn": "xã Bắc Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1501\",\"properties\":{\"matinhxa\":\"17.1514\",\"maxa\":1514},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bạch Hà (xã)",
- "truocsn": "Xã Đại Sơn, Xã Hiến Sơn, Xã Mỹ Sơn, Xã Trù Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1466\",\"properties\":{\"matinhxa\":\"17.1479\",\"maxa\":1479},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bạch Ngọc (xã)",
- "truocsn": "Xã Bồi Sơn, Xã Giang Sơn Đông, Xã Giang Sơn Tây, Xã Bạch Ngọc",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1462\",\"properties\":{\"matinhxa\":\"17.1475\",\"maxa\":1475},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bích Hào (xã)",
- "truocsn": "Xã Mai Giang, Xã Thanh Lâm, Xã Thanh Tùng, Xã Thanh Xuân",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1426\",\"properties\":{\"matinhxa\":\"17.1439\",\"maxa\":1439},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Chuẩn (xã)",
- "truocsn": "xã Bình Chuẩn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1444\",\"properties\":{\"matinhxa\":\"17.1457\",\"maxa\":1457},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Minh (xã)",
- "truocsn": "Xã Đức Thành, Xã Mã Thành, Xã Tân Thành, Xã Tiến Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1453\",\"properties\":{\"matinhxa\":\"17.1466\",\"maxa\":1466},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cam Phục (xã)",
- "truocsn": "Xã Cam Lâm, Xã Đôn Phục",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1446\",\"properties\":{\"matinhxa\":\"17.1459\",\"maxa\":1459},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cát Ngạn (xã)",
- "truocsn": "Xã Minh Sơn (huyện Thanh Chương), Xã Cát Văn, Xã Phong Thịnh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1419\",\"properties\":{\"matinhxa\":\"17.1432\",\"maxa\":1432},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Châu Bình (xã)",
- "truocsn": "xã Châu Bình (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1442\",\"properties\":{\"matinhxa\":\"17.1455\",\"maxa\":1455},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Châu Hồng (xã)",
- "truocsn": "Xã Châu Tiến (huyện Quỳ Hợp), Xã Châu Thành, Xã Châu Hồng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1479\",\"properties\":{\"matinhxa\":\"17.1492\",\"maxa\":1492},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Châu Khê (xã)",
- "truocsn": "Xã Lạng Khê, Xã Châu Khê",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1445\",\"properties\":{\"matinhxa\":\"17.1458\",\"maxa\":1458},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Châu Lộc (xã)",
- "truocsn": "Xã Liên Hợp, Xã Châu Lộc",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1480\",\"properties\":{\"matinhxa\":\"17.1493\",\"maxa\":1493},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Châu Tiến (xã)",
- "truocsn": "Xã Châu Tiến (huyện Quỳ Châu), Xã Châu Bính, Xã Châu Thắng, Xã Châu Thuận",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1440\",\"properties\":{\"matinhxa\":\"17.1453\",\"maxa\":1453},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Chiêu Lưu (xã)",
- "truocsn": "Xã Bảo Thắng, Xã Chiêu Lưu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1509\",\"properties\":{\"matinhxa\":\"17.1522\",\"maxa\":1522},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Con Cuông (xã)",
- "truocsn": "Thị trấn Trà Lân, Xã Chi Khê, Xã Yên Khê",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1443\",\"properties\":{\"matinhxa\":\"17.1456\",\"maxa\":1456},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Cửa Lò (phường)",
- "truocsn": "Phường Nghi Hải, Phường Nghi Hòa, Phường Nghi Hương, Phường Nghi Tân, Phường Nghi Thu, Phường Nghi Thủy, Xã Thu Thủy",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1522\",\"properties\":{\"matinhxa\":\"17.1535\",\"maxa\":1535},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đại Đồng (xã)",
- "truocsn": "Thị trấn Dùng, Xã Đồng Văn (huyện Thanh Chương), Xã Thanh Ngọc, Xã Thanh Phong, Xã Đại Đồng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1418\",\"properties\":{\"matinhxa\":\"17.1431\",\"maxa\":1431},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đại Huệ (xã)",
- "truocsn": "Xã Nam Anh, Xã Nam Lĩnh, Xã Nam Xuân",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1533\",\"properties\":{\"matinhxa\":\"17.1546\",\"maxa\":1546},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Diễn Châu (xã)",
- "truocsn": "Thị trấn Diễn Thành, Xã Diễn Hoa, Xã Diễn Phúc, Xã Ngọc Bích",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1434\",\"properties\":{\"matinhxa\":\"17.1447\",\"maxa\":1447},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đô Lương (xã)",
- "truocsn": "Xã Bắc Sơn, Xã Nam Sơn (huyện Đô Lương), Xã Đà Sơn, Xã Đặng Sơn, Xã Lưu Sơn, Xã Thịnh Sơn, Xã Văn Sơn, Xã Yên Sơn, Thị trấn Đô Lương",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1461\",\"properties\":{\"matinhxa\":\"17.1474\",\"maxa\":1474},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đông Hiếu (xã)",
- "truocsn": "Xã Nghĩa Mỹ, Xã Nghĩa Thuận, Xã Đông Hiếu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1474\",\"properties\":{\"matinhxa\":\"17.1487\",\"maxa\":1487},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đông Lộc (xã)",
- "truocsn": "Xã Khánh Hợp, Xã Nghi Thạch, Xã Thịnh Trường",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1529\",\"properties\":{\"matinhxa\":\"17.1542\",\"maxa\":1542},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đông Thành (xã)",
- "truocsn": "Xã Đô Thành, Xã Phú Thành, Xã Thọ Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1456\",\"properties\":{\"matinhxa\":\"17.1469\",\"maxa\":1469},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đức Châu (xã)",
- "truocsn": "Xã Diễn Hồng, Xã Diễn Kỷ, Xã Diễn Phong, Xã Diễn Vạn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1437\",\"properties\":{\"matinhxa\":\"17.1450\",\"maxa\":1450},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Giai Lạc (xã)",
- "truocsn": "Xã Hậu Thành, Xã Lăng Thành, Xã Phúc Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1454\",\"properties\":{\"matinhxa\":\"17.1467\",\"maxa\":1467},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Giai Xuân (xã)",
- "truocsn": "Xã Tân Hợp, Xã Giai Xuân",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1428\",\"properties\":{\"matinhxa\":\"17.1441\",\"maxa\":1441},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hải Châu (xã)",
- "truocsn": "Xã Diễn Hoàng, Xã Diễn Kim, Xã Diễn Mỹ, Xã Hùng Hải",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1436\",\"properties\":{\"matinhxa\":\"17.1449\",\"maxa\":1449},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hải Lộc (xã)",
- "truocsn": "Xã Nghi Thiết, Xã Nghi Tiến, Xã Nghi Yên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1525\",\"properties\":{\"matinhxa\":\"17.1538\",\"maxa\":1538},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hạnh Lâm (xã)",
- "truocsn": "Xã Thanh Đức, Xã Hạnh Lâm",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1420\",\"properties\":{\"matinhxa\":\"17.1433\",\"maxa\":1433},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hoa Quân (xã)",
- "truocsn": "Xã Thanh An, Xã Thanh Hương, Xã Thanh Quả, Xã Thanh Thịnh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1423\",\"properties\":{\"matinhxa\":\"17.1436\",\"maxa\":1436},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hoàng Mai (phường)",
- "truocsn": "Phường Quỳnh Thiện, Xã Quỳnh Trang, Xã Quỳnh Vinh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1486\",\"properties\":{\"matinhxa\":\"17.1499\",\"maxa\":1499},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hợp Minh (xã)",
- "truocsn": "Xã Bảo Thành, Xã Long Thành, Xã Sơn Thành, Xã Viên Thành, Xã Vĩnh Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1459\",\"properties\":{\"matinhxa\":\"17.1472\",\"maxa\":1472},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hùng Chân (xã)",
- "truocsn": "Xã Châu Hoàn, Xã Châu Phong, Xã Diên Lãm",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1441\",\"properties\":{\"matinhxa\":\"17.1454\",\"maxa\":1454},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hùng Châu (xã)",
- "truocsn": "Xã Diễn Đoài, Xã Diễn Lâm, Xã Diễn Trường, Xã Diễn Yên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1435\",\"properties\":{\"matinhxa\":\"17.1448\",\"maxa\":1448},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hưng Nguyên (xã)",
- "truocsn": "Thị trấn Hưng Nguyên, Xã Hưng Đạo, Xã Hưng Tây, Xã Thịnh Mỹ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1537\",\"properties\":{\"matinhxa\":\"17.1550\",\"maxa\":1550},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hưng Nguyên Nam (xã)",
- "truocsn": "Xã Hưng Lĩnh, Xã Long Xá, Xã Thông Tân, Xã Xuân Lam",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1539\",\"properties\":{\"matinhxa\":\"17.1552\",\"maxa\":1552},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Huồi Tụ (xã)",
- "truocsn": "xã Huồi Tụ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1504\",\"properties\":{\"matinhxa\":\"17.1517\",\"maxa\":1517},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hữu Khuông (xã)",
- "truocsn": "xã Hữu Khuông (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1513\",\"properties\":{\"matinhxa\":\"17.1526\",\"maxa\":1526},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hữu Kiệm (xã)",
- "truocsn": "Xã Bảo Nam, Xã Hữu Lập, Xã Hữu Kiệm",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1508\",\"properties\":{\"matinhxa\":\"17.1521\",\"maxa\":1521},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Keng Đu (xã)",
- "truocsn": "xã Keng Đu (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1502\",\"properties\":{\"matinhxa\":\"17.1515\",\"maxa\":1515},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Kim Bảng (xã)",
- "truocsn": "Xã Thanh Hà, Xã Thanh Thủy, Xã Kim Bảng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1425\",\"properties\":{\"matinhxa\":\"17.1438\",\"maxa\":1438},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Kim Liên (xã)",
- "truocsn": "Xã Hùng Tiến, Xã Nam Cát, Xã Nam Giang, Xã Xuân Hồng, Xã Kim Liên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1534\",\"properties\":{\"matinhxa\":\"17.1547\",\"maxa\":1547},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Lam Thành (xã)",
- "truocsn": "Xã Châu Nhân, Xã Hưng Nghĩa, Xã Hưng Thành, Xã Phúc Lợi",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1540\",\"properties\":{\"matinhxa\":\"17.1553\",\"maxa\":1553},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Lượng Minh (xã)",
- "truocsn": "xã Lượng Minh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1516\",\"properties\":{\"matinhxa\":\"17.1529\",\"maxa\":1529},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lương Sơn (xã)",
- "truocsn": "Xã Bài Sơn, Xã Đông Sơn, Xã Hồng Sơn, Xã Tràng Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1463\",\"properties\":{\"matinhxa\":\"17.1476\",\"maxa\":1476},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mậu Thạch (xã)",
- "truocsn": "Xã Mậu Đức, Xã Thạch Ngàn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1447\",\"properties\":{\"matinhxa\":\"17.1460\",\"maxa\":1460},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Minh Châu (xã)",
- "truocsn": "Xã Diễn Cát, Xã Diễn Nguyên, Xã Hạnh Quảng, Xã Minh Châu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1449\",\"properties\":{\"matinhxa\":\"17.1462\",\"maxa\":1462},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Minh Hợp (xã)",
- "truocsn": "Xã Hạ Sơn, Xã Văn Lợi, Xã Minh Hợp",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1482\",\"properties\":{\"matinhxa\":\"17.1495\",\"maxa\":1495},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Môn Sơn (xã)",
- "truocsn": "Xã Lục Dạ, Xã Môn Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1411\",\"properties\":{\"matinhxa\":\"17.1424\",\"maxa\":1424},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Mường Chọng (xã)",
- "truocsn": "Xã Bắc Sơn, Xã Nam Sơn (huyện Quỳ Hợp), Xã Châu Lý",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1483\",\"properties\":{\"matinhxa\":\"17.1496\",\"maxa\":1496},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Mường Ham (xã)",
- "truocsn": "Xã Châu Cường, Xã Châu Thái",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1481\",\"properties\":{\"matinhxa\":\"17.1494\",\"maxa\":1494},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Mường Lống (xã)",
- "truocsn": "xã Mường Lống (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1505\",\"properties\":{\"matinhxa\":\"17.1518\",\"maxa\":1518},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Mường Quàng (xã)",
- "truocsn": "Xã Cắm Muộn, Xã Châu Thôn, Xã Quang Phong",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1498\",\"properties\":{\"matinhxa\":\"17.1511\",\"maxa\":1511},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Mường Típ (xã)",
- "truocsn": "Xã Mường Ải, Xã Mường Típ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1510\",\"properties\":{\"matinhxa\":\"17.1523\",\"maxa\":1523},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Mường Xén (xã)",
- "truocsn": "Thị trấn Mường Xén, Xã Tà Cạ, Xã Tây Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1499\",\"properties\":{\"matinhxa\":\"17.1512\",\"maxa\":1512},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Mỹ Lý (xã)",
- "truocsn": "xã Mỹ Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1500\",\"properties\":{\"matinhxa\":\"17.1513\",\"maxa\":1513},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Na Loi (xã)",
- "truocsn": "Xã Đoọc Mạy, Xã Na Loi",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1503\",\"properties\":{\"matinhxa\":\"17.1516\",\"maxa\":1516},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Na Ngoi (xã)",
- "truocsn": "Xã Nậm Càn, Xã Na Ngoi",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1506\",\"properties\":{\"matinhxa\":\"17.1519\",\"maxa\":1519},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Nậm Cắn (xã)",
- "truocsn": "Xã Phà Đánh, Xã Nậm Cắn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1507\",\"properties\":{\"matinhxa\":\"17.1520\",\"maxa\":1520},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Nam Đàn (xã)",
- "truocsn": "Xã Nghĩa Thái (huyện Nam Đàn), Xã Nam Hưng, Xã Nam Thanh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1531\",\"properties\":{\"matinhxa\":\"17.1544\",\"maxa\":1544},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Nga My (xã)",
- "truocsn": "Xã Xiêng My, Xã Nga My",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1515\",\"properties\":{\"matinhxa\":\"17.1528\",\"maxa\":1528},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Nghi Lộc (xã)",
- "truocsn": "Thị trấn Quán Hành, Xã Diên Hoa, Xã Nghi Trung, Xã Nghi Vạn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1523\",\"properties\":{\"matinhxa\":\"17.1536\",\"maxa\":1536},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Nghĩa Đàn (xã)",
- "truocsn": "Thị trấn Nghĩa Đàn, Xã Nghĩa Bình, Xã Nghĩa Trung",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1468\",\"properties\":{\"matinhxa\":\"17.1481\",\"maxa\":1481},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nghĩa Đồng (xã)",
- "truocsn": "Xã Bình Hợp, Xã Nghĩa Đồng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1430\",\"properties\":{\"matinhxa\":\"17.1443\",\"maxa\":1443},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nghĩa Hành (xã)",
- "truocsn": "Xã Phú Sơn, Xã Tân Hương, Xã Nghĩa Hành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1433\",\"properties\":{\"matinhxa\":\"17.1446\",\"maxa\":1446},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nghĩa Hưng (xã)",
- "truocsn": "Xã Nghĩa Thành, Xã Nghĩa Hưng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1472\",\"properties\":{\"matinhxa\":\"17.1485\",\"maxa\":1485},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nghĩa Khánh (xã)",
- "truocsn": "Xã Nghĩa An, Xã Nghĩa Đức, Xã Nghĩa Khánh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1475\",\"properties\":{\"matinhxa\":\"17.1488\",\"maxa\":1488},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Nghĩa Lâm (xã)",
- "truocsn": "Xã Nghĩa Lạc, Xã Nghĩa Sơn, Xã Nghĩa Yên, Xã Nghĩa Lâm",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1470\",\"properties\":{\"matinhxa\":\"17.1483\",\"maxa\":1483},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Nghĩa Lộc (xã)",
- "truocsn": "Xã Nghĩa Long, Xã Nghĩa Lộc",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1476\",\"properties\":{\"matinhxa\":\"17.1489\",\"maxa\":1489},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Nghĩa Mai (xã)",
- "truocsn": "Xã Nghĩa Hồng, Xã Nghĩa Minh, Xã Nghĩa Mai",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1469\",\"properties\":{\"matinhxa\":\"17.1482\",\"maxa\":1482},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nghĩa Thọ (xã)",
- "truocsn": "Xã Nghĩa Hội, Xã Nghĩa Lợi, Xã Nghĩa Thọ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1471\",\"properties\":{\"matinhxa\":\"17.1484\",\"maxa\":1484},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nhân Hòa (xã)",
- "truocsn": "Xã Cẩm Sơn, Xã Hùng Sơn, Xã Tam Đỉnh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1414\",\"properties\":{\"matinhxa\":\"17.1427\",\"maxa\":1427},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nhôn Mai (xã)",
- "truocsn": "Xã Mai Sơn, Xã Nhôn Mai",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1512\",\"properties\":{\"matinhxa\":\"17.1525\",\"maxa\":1525},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Phúc Lộc (xã)",
- "truocsn": "Xã Nghi Công Bắc, Xã Nghi Công Nam, Xã Nghi Lâm, Xã Nghi Mỹ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1527\",\"properties\":{\"matinhxa\":\"17.1540\",\"maxa\":1540},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Quan Thành (xã)",
- "truocsn": "Xã Bắc Thành, Xã Nam Thành, Xã Trung Thành, Xã Xuân Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1458\",\"properties\":{\"matinhxa\":\"17.1471\",\"maxa\":1471},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Quảng Châu (xã)",
- "truocsn": "Xã Diễn Đồng, Xã Diễn Liên, Xã Diễn Thái, Xã Xuân Tháp",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1448\",\"properties\":{\"matinhxa\":\"17.1461\",\"maxa\":1461},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Quang Đồng (xã)",
- "truocsn": "Xã Đồng Thành, Xã Kim Thành, Xã Quang Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1455\",\"properties\":{\"matinhxa\":\"17.1468\",\"maxa\":1468},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Quế Phong (xã)",
- "truocsn": "Thị trấn Kim Sơn, Xã Châu Kim, Xã Mường Nọc, Xã Nậm Giải",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1494\",\"properties\":{\"matinhxa\":\"17.1507\",\"maxa\":1507},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quỳ Châu (xã)",
- "truocsn": "Thị trấn Tân Lạc, Xã Châu Hạnh, Xã Châu Hội, Xã Châu Nga",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1439\",\"properties\":{\"matinhxa\":\"17.1452\",\"maxa\":1452},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Quỳ Hợp (xã)",
- "truocsn": "Thị trấn Quỳ Hợp, Xã Châu Đình, Xã Châu Quang, Xã Thọ Hợp",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1477\",\"properties\":{\"matinhxa\":\"17.1490\",\"maxa\":1490},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Quỳnh Anh (xã)",
- "truocsn": "Xã Minh Lương, Xã Quỳnh Bảng, Xã Quỳnh Đôi, Xã Quỳnh Thanh, Xã Quỳnh Yên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1492\",\"properties\":{\"matinhxa\":\"17.1505\",\"maxa\":1505},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Quỳnh Lưu (xã)",
- "truocsn": "Thị trấn Cầu Giát, Xã Bình Sơn (huyện Quỳnh Lưu), Xã Quỳnh Diễn, Xã Quỳnh Giang, Xã Quỳnh Hậu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1484\",\"properties\":{\"matinhxa\":\"17.1497\",\"maxa\":1497},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Quỳnh Mai (phường)",
- "truocsn": "Phường Mai Hùng, Phường Quỳnh Phương, Phường Quỳnh Xuân, Xã Quỳnh Liên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1490\",\"properties\":{\"matinhxa\":\"17.1503\",\"maxa\":1503},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Quỳnh Phú (xã)",
- "truocsn": "Xã An Hòa, Xã Phú Nghĩa, Xã Thuận Long, Xã Văn Hải",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1493\",\"properties\":{\"matinhxa\":\"17.1506\",\"maxa\":1506},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Quỳnh Sơn (xã)",
- "truocsn": "Xã Ngọc Sơn (huyện Quỳnh Lưu), Xã Quỳnh Lâm, Xã Quỳnh Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1491\",\"properties\":{\"matinhxa\":\"17.1504\",\"maxa\":1504},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Quỳnh Tam (xã)",
- "truocsn": "Xã Tân Sơn (huyện Quỳnh Lưu), Xã Quỳnh Châu, Xã Quỳnh Tam",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1489\",\"properties\":{\"matinhxa\":\"17.1502\",\"maxa\":1502},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Quỳnh Thắng (xã)",
- "truocsn": "Xã Tân Thắng, Xã Quỳnh Thắng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1485\",\"properties\":{\"matinhxa\":\"17.1498\",\"maxa\":1498},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Quỳnh Văn (xã)",
- "truocsn": "Xã Quỳnh Tân, Xã Quỳnh Thạch, Xã Quỳnh Văn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1488\",\"properties\":{\"matinhxa\":\"17.1501\",\"maxa\":1501},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Sơn Lâm (xã)",
- "truocsn": "Xã Ngọc Lâm, Xã Thanh Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1421\",\"properties\":{\"matinhxa\":\"17.1434\",\"maxa\":1434},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tam Đồng (xã)",
- "truocsn": "Xã Thanh Liên, Xã Thanh Mỹ, Xã Thanh Tiên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1422\",\"properties\":{\"matinhxa\":\"17.1435\",\"maxa\":1435},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Tam Hợp (xã)",
- "truocsn": "Xã Tam Hợp (huyện Quỳ Hợp), Xã Đồng Hợp, Xã Nghĩa Xuân, Xã Yên Hợp",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1478\",\"properties\":{\"matinhxa\":\"17.1491\",\"maxa\":1491},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Tam Quang (xã)",
- "truocsn": "Xã Tam Đình, Xã Tam Quang",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1519\",\"properties\":{\"matinhxa\":\"17.1532\",\"maxa\":1532},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tam Thái (xã)",
- "truocsn": "Xã Tam Hợp (huyện Tương Dương), Xã Tam Thái",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1518\",\"properties\":{\"matinhxa\":\"17.1531\",\"maxa\":1531},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Hương Sơn, Xã Nghĩa Phúc, Xã Tân An",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1431\",\"properties\":{\"matinhxa\":\"17.1444\",\"maxa\":1444},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Tân Châu (xã)",
- "truocsn": "Xã Diễn Lộc, Xã Diễn Lợi, Xã Diễn Phú, Xã Diễn Thọ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1451\",\"properties\":{\"matinhxa\":\"17.1464\",\"maxa\":1464},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tân Kỳ (xã)",
- "truocsn": "Thị trấn Tân Kỳ, Xã Nghĩa Dũng, Xã Kỳ Tân, Xã Kỳ Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1427\",\"properties\":{\"matinhxa\":\"17.1440\",\"maxa\":1440},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Tân Mai (phường)",
- "truocsn": "Phường Quỳnh Dị, Xã Quỳnh Lập, Xã Quỳnh Lộc",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1487\",\"properties\":{\"matinhxa\":\"17.1500\",\"maxa\":1500},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Tân Phú (xã)",
- "truocsn": "Xã Nghĩa Thái (huyện Tân Kỳ), Xã Hoàn Long, Xã Tân Xuân, Xã Tân Phú",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1429\",\"properties\":{\"matinhxa\":\"17.1442\",\"maxa\":1442},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tây Hiếu (phường)",
- "truocsn": "Phường Quang Tiến, Xã Nghĩa Tiến, Xã Tây Hiếu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1473\",\"properties\":{\"matinhxa\":\"17.1486\",\"maxa\":1486},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Thái Hòa (phường)",
- "truocsn": "Phường Hòa Hiếu, Phường Long Sơn, Phường Quang Phong",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1467\",\"properties\":{\"matinhxa\":\"17.1480\",\"maxa\":1480},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Thần Lĩnh (xã)",
- "truocsn": "Xã Nghi Đồng, Xã Nghi Hưng, Xã Nghi Phương",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1526\",\"properties\":{\"matinhxa\":\"17.1539\",\"maxa\":1539},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Thành Bình Thọ (xã)",
- "truocsn": "Xã Bình Sơn (huyện Anh Sơn), Xã Thành Sơn, Xã Thọ Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1413\",\"properties\":{\"matinhxa\":\"17.1426\",\"maxa\":1426},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Thành Vinh (phường)",
- "truocsn": "Phường Cửa Nam, Phường Đông Vĩnh, Phường Hưng Bình, Phường Lê Lợi, Phường Quang Trung, Xã Hưng Chính",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1532\",\"properties\":{\"matinhxa\":\"17.1545\",\"maxa\":1545},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Thiên Nhẫn (xã)",
- "truocsn": "Xã Khánh Sơn, Xã Nam Kim, Xã Trung Phúc Cường",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1535\",\"properties\":{\"matinhxa\":\"17.1548\",\"maxa\":1548},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Thông Thụ (xã)",
- "truocsn": "Xã Đồng Văn (huyện Quế Phong), Xã Thông Thụ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1495\",\"properties\":{\"matinhxa\":\"17.1508\",\"maxa\":1508},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Thuần Trung (xã)",
- "truocsn": "Xã Minh Sơn (huyện Đô Lương), Xã Lạc Sơn, Xã Nhân Sơn, Xã Thuận Sơn, Xã Trung Sơn, Xã Xuân Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1465\",\"properties\":{\"matinhxa\":\"17.1478\",\"maxa\":1478},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Tiên Đồng (xã)",
- "truocsn": "Xã Đồng Văn (huyện Tân Kỳ), Xã Tiên Kỳ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1432\",\"properties\":{\"matinhxa\":\"17.1445\",\"maxa\":1445},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Tiền Phong (xã)",
- "truocsn": "Xã Hạnh Dịch, Xã Tiền Phong",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1496\",\"properties\":{\"matinhxa\":\"17.1509\",\"maxa\":1509},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Tri Lễ (xã)",
- "truocsn": "Xã Nậm Nhoóng, Xã Tri Lễ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1497\",\"properties\":{\"matinhxa\":\"17.1510\",\"maxa\":1510},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Trung Lộc (xã)",
- "truocsn": "Xã Nghi Long, Xã Nghi Quang, Xã Nghi Thuận, Xã Nghi Xá",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1528\",\"properties\":{\"matinhxa\":\"17.1541\",\"maxa\":1541},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Trường Vinh (phường)",
- "truocsn": "Phường Bến Thủy, Phường Hưng Dũng, Phường Hưng Phúc, Phường Trung Đô, Phường Trường Thi, Phường Vinh Tân, Xã Hưng Hòa",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1520\",\"properties\":{\"matinhxa\":\"17.1533\",\"maxa\":1533},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Tương Dương (xã)",
- "truocsn": "Thị trấn Thạch Giám, Xã Lưu Kiền, Xã Xá Lượng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1511\",\"properties\":{\"matinhxa\":\"17.1524\",\"maxa\":1524},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Vạn An (xã)",
- "truocsn": "Thị trấn Nam Đàn, Xã Thượng Tân Lộc, Xã Xuân Hòa",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1530\",\"properties\":{\"matinhxa\":\"17.1543\",\"maxa\":1543},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Vân Du (xã)",
- "truocsn": "Xã Minh Thành, Xã Tây Thành, Xã Thịnh Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1457\",\"properties\":{\"matinhxa\":\"17.1470\",\"maxa\":1470},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Văn Hiến (xã)",
- "truocsn": "Xã Tân Sơn (huyện Đô Lương), Xã Hòa Sơn, Xã Quang Sơn, Xã Thái Sơn, Xã Thượng Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1464\",\"properties\":{\"matinhxa\":\"17.1477\",\"maxa\":1477},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Văn Kiều (xã)",
- "truocsn": "Xã Nghi Kiều, Xã Nghi Văn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1524\",\"properties\":{\"matinhxa\":\"17.1537\",\"maxa\":1537},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Vân Tụ (xã)",
- "truocsn": "Xã Liên Thành, Xã Mỹ Thành, Xã Vân Tụ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1460\",\"properties\":{\"matinhxa\":\"17.1473\",\"maxa\":1473},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Vinh Hưng (phường)",
- "truocsn": "Phường Hưng Đông, Phường Quán Bàu, Xã Nghi Kim, Xã Nghi Liên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1541\",\"properties\":{\"matinhxa\":\"17.1554\",\"maxa\":1554},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Vinh Lộc (phường)",
- "truocsn": "Phường Hưng Lộc, Xã Nghi Phong, Xã Nghi Thái, Xã Nghi Xuân, Xã Phúc Thọ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1521\",\"properties\":{\"matinhxa\":\"17.1534\",\"maxa\":1534},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Vinh Phú (phường)",
- "truocsn": "Phường Hà Huy Tập, Phường Nghi Đức, Phường Nghi Phú, Xã Nghi Ân",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1536\",\"properties\":{\"matinhxa\":\"17.1549\",\"maxa\":1549},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Vĩnh Tường (xã)",
- "truocsn": "Xã Hoa Sơn, Xã Hội Sơn, Xã Tường Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1415\",\"properties\":{\"matinhxa\":\"17.1428\",\"maxa\":1428},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Xuân Lâm (xã)",
- "truocsn": "Xã Ngọc Sơn (huyện Thanh Chương), Xã Minh Tiến, Xã Xuân Dương",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1424\",\"properties\":{\"matinhxa\":\"17.1437\",\"maxa\":1437},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Yên Hòa (xã)",
- "truocsn": "Xã Yên Thắng, Xã Yên Hòa",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1517\",\"properties\":{\"matinhxa\":\"17.1530\",\"maxa\":1530},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Yên Na (xã)",
- "truocsn": "Xã Yên Tĩnh, Xã Yên Na",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1514\",\"properties\":{\"matinhxa\":\"17.1527\",\"maxa\":1527},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Yên Thành (xã)",
- "truocsn": "Thị trấn Hoa Thành, Xã Đông Thành, Xã Tăng Thành, Xã Văn Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1452\",\"properties\":{\"matinhxa\":\"17.1465\",\"maxa\":1465},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Yên Trung (xã)",
- "truocsn": "Xã Hưng Yên Bắc, Xã Hưng Yên Nam, Xã Hưng Trung",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1538\",\"properties\":{\"matinhxa\":\"17.1551\",\"maxa\":1551},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Yên Xuân (xã)",
- "truocsn": "Xã Cao Sơn, Xã Khai Sơn, Xã Lĩnh Sơn, Xã Long Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1417\",\"properties\":{\"matinhxa\":\"17.1430\",\"maxa\":1430},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bắc Hồng Lĩnh (phường)",
- "truocsn": "Phường Bắc Hồng, Phường Đức Thuận, Phường Trung Lương, Xã Xuân Lam",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2016\",\"properties\":{\"matinhxa\":\"18.2030\",\"maxa\":2030},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Cẩm Bình (xã)",
- "truocsn": "Xã Cẩm Vịnh, Xã Thạch Bình, Xã Cẩm Thành, Xã Cẩm Bình",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2039\",\"properties\":{\"matinhxa\":\"18.2053\",\"maxa\":2053},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Cẩm Duệ (xã)",
- "truocsn": "Xã Cẩm Mỹ, Xã Cẩm Thạch, Xã Cẩm Duệ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2024\",\"properties\":{\"matinhxa\":\"18.2038\",\"maxa\":2038},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Cẩm Hưng (xã)",
- "truocsn": "Xã Cẩm Thịnh, Xã Cẩm Hà, Xã Cẩm Hưng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2025\",\"properties\":{\"matinhxa\":\"18.2039\",\"maxa\":2039},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Cẩm Lạc (xã)",
- "truocsn": "Xã Cẩm Minh, Xã Cẩm Sơn, Xã Cẩm Lạc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2026\",\"properties\":{\"matinhxa\":\"18.2040\",\"maxa\":2040},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cẩm Trung (xã)",
- "truocsn": "Xã Cẩm Lĩnh, Xã Cẩm Lộc, Xã Cẩm Trung",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2035\",\"properties\":{\"matinhxa\":\"18.2049\",\"maxa\":2049},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Cẩm Xuyên (xã)",
- "truocsn": "Thị trấn Cẩm Xuyên, Xã Cẩm Quang, Xã Cẩm Quan",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2034\",\"properties\":{\"matinhxa\":\"18.2048\",\"maxa\":2048},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Can Lộc (xã)",
- "truocsn": "Thị trấn Nghèn, Xã Thiên Lộc, Xã Vượng Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2007\",\"properties\":{\"matinhxa\":\"18.2021\",\"maxa\":2021},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cổ Đạm (xã)",
- "truocsn": "Xã Cương Gián, Xã Xuân Liên, Xã Cổ Đạm",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2014\",\"properties\":{\"matinhxa\":\"18.2028\",\"maxa\":2028},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Đan Hải (xã)",
- "truocsn": "Xã Đan Trường, Xã Xuân Hải, Xã Xuân Hội, Xã Xuân Phổ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1997\",\"properties\":{\"matinhxa\":\"18.2011\",\"maxa\":2011},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đông Kinh (xã)",
- "truocsn": "Xã Thạch Kênh, Xã Thạch Liên, Xã Ích Hậu",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2005\",\"properties\":{\"matinhxa\":\"18.2019\",\"maxa\":2019},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đồng Lộc (xã)",
- "truocsn": "Thị trấn Đồng Lộc, Xã Thượng Lộc, Xã Mỹ Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2003\",\"properties\":{\"matinhxa\":\"18.2017\",\"maxa\":2017},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đồng Tiến (xã)",
- "truocsn": "Xã Thạch Trị, Xã Thạch Hội, Xã Thạch Văn",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2027\",\"properties\":{\"matinhxa\":\"18.2041\",\"maxa\":2041},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đức Đồng (xã)",
- "truocsn": "Xã Đức Lạng, Xã Tân Hương, Xã Đức Đồng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2052\",\"properties\":{\"matinhxa\":\"18.2066\",\"maxa\":2066},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đức Minh (xã)",
- "truocsn": "Xã Trường Sơn, Xã Tùng Châu, Xã Liên Minh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2061\",\"properties\":{\"matinhxa\":\"18.2075\",\"maxa\":2075},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đức Quang (xã)",
- "truocsn": "Xã Quang Vĩnh, Xã Bùi La Nhân, Xã Yên Hồ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2060\",\"properties\":{\"matinhxa\":\"18.2074\",\"maxa\":2074},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đức Thịnh (xã)",
- "truocsn": "Xã Thanh Bình Thịnh, Xã Lâm Trung Thủy, Xã An Dũng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2051\",\"properties\":{\"matinhxa\":\"18.2065\",\"maxa\":2065},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đức Thọ (xã)",
- "truocsn": "Thị trấn Đức Thọ, Xã Tùng Ảnh, Xã Hòa Lạc, Xã Tân Dân",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2054\",\"properties\":{\"matinhxa\":\"18.2068\",\"maxa\":2068},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Gia Hanh (xã)",
- "truocsn": "Xã Khánh Vĩnh Yên, Xã Thanh Lộc, Xã Gia Hanh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2011\",\"properties\":{\"matinhxa\":\"18.2025\",\"maxa\":2025},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hà Huy Tập (phường)",
- "truocsn": "Xã Tân Lâm Hương, Xã Thạch Đài, Phường Đại Nài",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1999\",\"properties\":{\"matinhxa\":\"18.2013\",\"maxa\":2013},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hà Linh (xã)",
- "truocsn": "Xã Điền Mỹ, Xã Hà Linh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2049\",\"properties\":{\"matinhxa\":\"18.2063\",\"maxa\":2063},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hải Ninh (phường)",
- "truocsn": "Phường Kỳ Ninh, Xã Kỳ Hà, Xã Kỳ Hải",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2032\",\"properties\":{\"matinhxa\":\"18.2046\",\"maxa\":2046},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hoành Sơn (phường)",
- "truocsn": "Phường Kỳ Nam, Phường Kỳ Phương, Phường Kỳ Liên, Xã Kỳ Lợi",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2023\",\"properties\":{\"matinhxa\":\"18.2037\",\"maxa\":2037},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Hồng Lộc (xã)",
- "truocsn": "Xã Tân Lộc, Xã Hồng Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2010\",\"properties\":{\"matinhxa\":\"18.2024\",\"maxa\":2024},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hương Bình (xã)",
- "truocsn": "Xã Hòa Hải, Xã Phúc Đồng, Xã Hương Bình",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2057\",\"properties\":{\"matinhxa\":\"18.2071\",\"maxa\":2071},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hương Đô (xã)",
- "truocsn": "Xã Lộc Yên, Xã Hương Trà, Xã Hương Đô",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2041\",\"properties\":{\"matinhxa\":\"18.2055\",\"maxa\":2055},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hương Khê (xã)",
- "truocsn": "Thị trấn Hương Khê, Xã Hương Long, Xã Phú Gia",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2055\",\"properties\":{\"matinhxa\":\"18.2069\",\"maxa\":2069},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hương Phố (xã)",
- "truocsn": "Xã Hương Giang, Xã Hương Thủy, Xã Gia Phố",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2056\",\"properties\":{\"matinhxa\":\"18.2070\",\"maxa\":2070},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hương Sơn (xã)",
- "truocsn": "Thị trấn Phố Châu, Xã Sơn Phú, Xã Sơn Bằng, Xã Sơn Ninh, Xã Sơn Trung",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2048\",\"properties\":{\"matinhxa\":\"18.2062\",\"maxa\":2062},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hương Xuân (xã)",
- "truocsn": "Xã Hương Lâm, Xã Hương Vĩnh, Xã Hương Xuân",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2042\",\"properties\":{\"matinhxa\":\"18.2056\",\"maxa\":2056},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Kim Hoa (xã)",
- "truocsn": "Xã Hàm Trường, Xã Kim Hoa",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2046\",\"properties\":{\"matinhxa\":\"18.2060\",\"maxa\":2060},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Kỳ Anh (xã)",
- "truocsn": "Thị trấn Kỳ Đồng, Xã Kỳ Giang, Xã Kỳ Tiến, Xã Kỳ Phú",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2031\",\"properties\":{\"matinhxa\":\"18.2045\",\"maxa\":2045},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Kỳ Hoa (xã)",
- "truocsn": "Xã Kỳ Tân, Xã Kỳ Hoa",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2020\",\"properties\":{\"matinhxa\":\"18.2034\",\"maxa\":2034},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Kỳ Khang (xã)",
- "truocsn": "Xã Kỳ Thọ, Xã Kỳ Thư, Xã Kỳ Khang",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2030\",\"properties\":{\"matinhxa\":\"18.2044\",\"maxa\":2044},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Kỳ Lạc (xã)",
- "truocsn": "Xã Lâm Hợp, Xã Kỳ Lạc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2018\",\"properties\":{\"matinhxa\":\"18.2032\",\"maxa\":2032},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Kỳ Thượng (xã)",
- "truocsn": "Xã Kỳ Sơn, Xã Kỳ Thượng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2019\",\"properties\":{\"matinhxa\":\"18.2033\",\"maxa\":2033},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Kỳ Văn (xã)",
- "truocsn": "Xã Kỳ Tây, Xã Kỳ Trung, Xã Kỳ Văn",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2033\",\"properties\":{\"matinhxa\":\"18.2047\",\"maxa\":2047},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Kỳ Xuân (xã)",
- "truocsn": "Xã Kỳ Phong, Xã Kỳ Bắc, Xã Kỳ Xuân",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2036\",\"properties\":{\"matinhxa\":\"18.2050\",\"maxa\":2050},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lộc Hà (xã)",
- "truocsn": "Thị trấn Lộc Hà, Xã Bình An, Xã Thịnh Lộc, Xã Thạch Kim",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2008\",\"properties\":{\"matinhxa\":\"18.2022\",\"maxa\":2022},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Mai Hoa (xã)",
- "truocsn": "Xã Ân Phú, Xã Đức Giang, Xã Đức Lĩnh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2044\",\"properties\":{\"matinhxa\":\"18.2058\",\"maxa\":2058},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Mai Phụ (xã)",
- "truocsn": "Xã Thạch Mỹ, Xã Thạch Châu, Xã Phù Lưu, Xã Mai Phụ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2006\",\"properties\":{\"matinhxa\":\"18.2020\",\"maxa\":2020},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Nam Hồng Lĩnh (phường)",
- "truocsn": "Phường Nam Hồng, Phường Đậu Liêu, Xã Thuận Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2013\",\"properties\":{\"matinhxa\":\"18.2027\",\"maxa\":2027},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Nghi Xuân (xã)",
- "truocsn": "Thị trấn Xuân An, Xã Xuân Giang, Xã Xuân Hồng, Xã Xuân Viên, Xã Xuân Lĩnh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1998\",\"properties\":{\"matinhxa\":\"18.2012\",\"maxa\":2012},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Phúc Trạch (xã)",
- "truocsn": "Xã Hương Trạch, Xã Hương Liên, Xã Phúc Trạch",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2040\",\"properties\":{\"matinhxa\":\"18.2054\",\"maxa\":2054},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Sơn Giang (xã)",
- "truocsn": "Xã Sơn Lâm, Xã Quang Diệm, Xã Sơn Giang",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2047\",\"properties\":{\"matinhxa\":\"18.2061\",\"maxa\":2061},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Sơn Hồng (xã)",
- "truocsn": "Xã Sơn Lĩnh, Xã Sơn Hồng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2063\",\"properties\":{\"matinhxa\":\"18.2077\",\"maxa\":2077},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Sơn Kim 1 (xã)",
- "truocsn": "xã Sơn Kim 1 (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2059\",\"properties\":{\"matinhxa\":\"18.2073\",\"maxa\":2073},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Sơn Kim 2 (xã)",
- "truocsn": "xã Sơn Kim 2 (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2058\",\"properties\":{\"matinhxa\":\"18.2072\",\"maxa\":2072},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Sơn Tây (xã)",
- "truocsn": "Thị trấn Tây Sơn, Xã Sơn Tây",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2045\",\"properties\":{\"matinhxa\":\"18.2059\",\"maxa\":2059},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Sơn Tiến (xã)",
- "truocsn": "Xã Sơn Lễ, Xã An Hòa Thịnh, Xã Sơn Tiến",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2062\",\"properties\":{\"matinhxa\":\"18.2076\",\"maxa\":2076},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Sông Trí (phường)",
- "truocsn": "Phường Hưng Trí, Phường Kỳ Trinh, Xã Kỳ Châu, Xã Kỳ Lợi",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2021\",\"properties\":{\"matinhxa\":\"18.2035\",\"maxa\":2035},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Thạch Hà (xã)",
- "truocsn": "Thị trấn Thạch Hà, Xã Thạch Long, Xã Thạch Sơn",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2001\",\"properties\":{\"matinhxa\":\"18.2015\",\"maxa\":2015},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Thạch Khê (xã)",
- "truocsn": "Xã Đỉnh Bàn, Xã Thạch Hải, Xã Thạch Khê",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2029\",\"properties\":{\"matinhxa\":\"18.2043\",\"maxa\":2043},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Thạch Lạc (xã)",
- "truocsn": "Xã Tượng Sơn, Xã Thạch Thắng, Xã Thạch Lạc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2028\",\"properties\":{\"matinhxa\":\"18.2042\",\"maxa\":2042},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Thạch Xuân (xã)",
- "truocsn": "Xã Nam Điền, Xã Thạch Xuân",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2015\",\"properties\":{\"matinhxa\":\"18.2029\",\"maxa\":2029},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Thành Sen (phường)",
- "truocsn": "Phường Bắc Hà, Phường Thạch Quý, Phường Tân Giang, Phường Thạch Hưng, Phường Nam Hà, Phường Trần Phú, Phường Hà Huy Tập, Phường Văn Yên, Phường Đại Nài",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2065\",\"properties\":{\"matinhxa\":\"18.2079\",\"maxa\":2079},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Thiên Cầm (xã)",
- "truocsn": "Thị trấn Thiên Cầm, Xã Nam Phúc Thăng, Xã Cẩm Nhượng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2037\",\"properties\":{\"matinhxa\":\"18.2051\",\"maxa\":2051},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Thượng Đức (xã)",
- "truocsn": "Xã Đức Bồng, Xã Đức Hương, Xã Đức Liên",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2050\",\"properties\":{\"matinhxa\":\"18.2064\",\"maxa\":2064},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Tiên Điền (xã)",
- "truocsn": "Thị trấn Tiên Điền, Xã Xuân Yên, Xã Xuân Mỹ, Xã Xuân Thành",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2000\",\"properties\":{\"matinhxa\":\"18.2014\",\"maxa\":2014},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Toàn Lưu (xã)",
- "truocsn": "Xã Ngọc Sơn, Xã Lưu Vĩnh Sơn",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2017\",\"properties\":{\"matinhxa\":\"18.2031\",\"maxa\":2031},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Trần Phú (phường)",
- "truocsn": "Phường Thạch Trung, Phường Đồng Môn, Phường Thạch Hạ, Xã Hộ Độ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2064\",\"properties\":{\"matinhxa\":\"18.2078\",\"maxa\":2078},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Trường Lưu (xã)",
- "truocsn": "Xã Kim Song Trường, Xã Thường Nga, Xã Phú Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2012\",\"properties\":{\"matinhxa\":\"18.2026\",\"maxa\":2026},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Tứ Mỹ (xã)",
- "truocsn": "Xã Châu Bình, Xã Tân Mỹ Hà, Xã Mỹ Long",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2053\",\"properties\":{\"matinhxa\":\"18.2067\",\"maxa\":2067},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tùng Lộc (xã)",
- "truocsn": "Xã Thuần Thiện, Xã Tùng Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2009\",\"properties\":{\"matinhxa\":\"18.2023\",\"maxa\":2023},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Việt Xuyên (xã)",
- "truocsn": "Xã Việt Tiến, Xã Thạch Ngọc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2004\",\"properties\":{\"matinhxa\":\"18.2018\",\"maxa\":2018},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Vũ Quang (xã)",
- "truocsn": "Thị trấn Vũ Quang, Xã Hương Minh, Xã Quang Thọ, Xã Thọ Điền",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2043\",\"properties\":{\"matinhxa\":\"18.2057\",\"maxa\":2057},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Vũng Áng (phường)",
- "truocsn": "Phường Kỳ Long, Phường Kỳ Thịnh, Xã Kỳ Lợi",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2022\",\"properties\":{\"matinhxa\":\"18.2036\",\"maxa\":2036},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Xuân Lộc (xã)",
- "truocsn": "Xã Sơn Lộc, Xã Quang Lộc, Xã Xuân Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2002\",\"properties\":{\"matinhxa\":\"18.2016\",\"maxa\":2016},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Yên Hòa (xã)",
- "truocsn": "Xã Cẩm Dương, Xã Yên Hòa",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2038\",\"properties\":{\"matinhxa\":\"18.2052\",\"maxa\":2052},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "A Dơi (xã)",
- "truocsn": "Xã Ba Tầng, Xã Xy, Xã A Dơi",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.594\",\"properties\":{\"matinhxa\":\"19.596\",\"maxa\":596},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ái Tử (xã)",
- "truocsn": "Xã Triệu Ái, Xã Triệu Giang, Xã Triệu Long",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.567\",\"properties\":{\"matinhxa\":\"19.569\",\"maxa\":569},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ba Đồn (phường)",
- "truocsn": "Phường Quảng Phong, Phường Quảng Long, Phường Ba Đồn, Xã Quảng Hải",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.613\",\"properties\":{\"matinhxa\":\"19.615\",\"maxa\":615},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Ba Lòng (xã)",
- "truocsn": "Xã Triệu Nguyên, Xã Ba Lòng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.577\",\"properties\":{\"matinhxa\":\"19.579\",\"maxa\":579},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bắc Gianh (phường)",
- "truocsn": "Phường Quảng Phúc, Phường Quảng Thọ, Phường Quảng Thuận",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.618\",\"properties\":{\"matinhxa\":\"19.620\",\"maxa\":620},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bắc Trạch (xã)",
- "truocsn": "Xã Thanh Trạch, Xã Hạ Mỹ, Xã Liên Trạch, Xã Bắc Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.623\",\"properties\":{\"matinhxa\":\"19.625\",\"maxa\":625},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bến Hải (xã)",
- "truocsn": "Xã Trung Hải, Xã Trung Giang, Xã Trung Sơn",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.583\",\"properties\":{\"matinhxa\":\"19.585\",\"maxa\":585},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bến Quan (xã)",
- "truocsn": "Thị trấn Bến Quan, Xã Vĩnh Ô, Xã Vĩnh Hà, Xã Vĩnh Khê",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.564\",\"properties\":{\"matinhxa\":\"19.566\",\"maxa\":566},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bố Trạch (xã)",
- "truocsn": "Xã Hưng Trạch, Xã Cự Nẫm, Xã Vạn Trạch, Xã Phú Định",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.624\",\"properties\":{\"matinhxa\":\"19.626\",\"maxa\":626},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cam Hồng (xã)",
- "truocsn": "Xã Cam Thủy (huyện Lệ Thủy), Xã Thanh Thủy, Xã Hồng Thủy, Xã Ngư Thủy Bắc",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.634\",\"properties\":{\"matinhxa\":\"19.636\",\"maxa\":636},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cam Lộ (xã)",
- "truocsn": "Thị trấn Cam Lộ, Xã Cam Thành, Xã Cam Chính, Xã Cam Nghĩa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.569\",\"properties\":{\"matinhxa\":\"19.571\",\"maxa\":571},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cồn Cỏ (đặc khu)",
- "truocsn": "Huyện Cồn Cỏ",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3308\",\"properties\":{\"matinhxa\":\"19.3324\",\"maxa\":3324},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cồn Tiên (xã)",
- "truocsn": "Xã Hải Thái, Xã Linh Trường, Xã Gio An, Xã Gio Sơn",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.574\",\"properties\":{\"matinhxa\":\"19.576\",\"maxa\":576},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cửa Tùng (xã)",
- "truocsn": "Thị trấn Cửa Tùng, Xã Vĩnh Giang, Xã Hiền Thành, Xã Kim Thạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.584\",\"properties\":{\"matinhxa\":\"19.586\",\"maxa\":586},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cửa Việt (xã)",
- "truocsn": "Thị trấn Cửa Việt, Xã Gio Mai, Xã Gio Hải",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.596\",\"properties\":{\"matinhxa\":\"19.598\",\"maxa\":598},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đakrông (xã)",
- "truocsn": "Xã Ba Nang, Xã Tà Long, Xã Đakrông",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.576\",\"properties\":{\"matinhxa\":\"19.578\",\"maxa\":578},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Dân Hóa (xã)",
- "truocsn": "Xã Trọng Hóa, Xã Dân Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.602\",\"properties\":{\"matinhxa\":\"19.604\",\"maxa\":604},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Diên Sanh (xã)",
- "truocsn": "Thị trấn Diên Sanh, Xã Hải Trường, Xã Hải Định",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.580\",\"properties\":{\"matinhxa\":\"19.582\",\"maxa\":582},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đông Hà (phường)",
- "truocsn": "Phường 1 (thành phố Đông Hà), Phường 3 (thành phố Đông Hà), Phường 4, Phường Đông Giang, Phường Đông Thanh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.570\",\"properties\":{\"matinhxa\":\"19.572\",\"maxa\":572},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đồng Hới (phường)",
- "truocsn": "Phường Đức Ninh Đông, Phường Đồng Hải, Phường Đồng Phú, Phường Phú Hải, Phường Hải Thành, Phường Nam Lý, Xã Bảo Ninh, Xã Đức Ninh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.598\",\"properties\":{\"matinhxa\":\"19.600\",\"maxa\":600},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đồng Lê (xã)",
- "truocsn": "Thị trấn Đồng Lê, Xã Kim Hóa, Xã Lê Hóa, Xã Thuận Hóa, Xã Sơn Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.606\",\"properties\":{\"matinhxa\":\"19.608\",\"maxa\":608},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đồng Sơn (phường)",
- "truocsn": "Phường Bắc Nghĩa, Phường Đồng Sơn, Xã Nghĩa Ninh, Xã Thuận Đức",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.600\",\"properties\":{\"matinhxa\":\"19.602\",\"maxa\":602},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đồng Thuận (phường)",
- "truocsn": "Phường Bắc Lý, Xã Lộc Ninh, Xã Quang Phú",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.599\",\"properties\":{\"matinhxa\":\"19.601\",\"maxa\":601},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đông Trạch (xã)",
- "truocsn": "Xã Hải Phú (huyện Bố Trạch), Xã Sơn Lộc, Xã Đức Trạch, Xã Đồng Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.626\",\"properties\":{\"matinhxa\":\"19.628\",\"maxa\":628},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Gio Linh (xã)",
- "truocsn": "Thị trấn Gio Linh, Xã Gio Quang, Xã Gio Mỹ, Xã Phong Bình",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.568\",\"properties\":{\"matinhxa\":\"19.570\",\"maxa\":570},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hải Lăng (xã)",
- "truocsn": "Xã Hải Phú (huyện Hải Lăng), Xã Hải Lâm, Xã Hải Thượng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.578\",\"properties\":{\"matinhxa\":\"19.580\",\"maxa\":580},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hiếu Giang (xã)",
- "truocsn": "Xã Cam Thủy (huyện Cam Lộ), Xã Cam Hiếu, Xã Cam Tuyền, Xã Thanh An",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.597\",\"properties\":{\"matinhxa\":\"19.599\",\"maxa\":599},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hòa Trạch (xã)",
- "truocsn": "Xã Quảng Châu, Xã Quảng Tùng, Xã Cảnh Dương",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.615\",\"properties\":{\"matinhxa\":\"19.617\",\"maxa\":617},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hoàn Lão (xã)",
- "truocsn": "Thị trấn Hoàn Lão, Xã Trung Trạch, Xã Đại Trạch, Xã Tây Trạch, Xã Hòa Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.621\",\"properties\":{\"matinhxa\":\"19.623\",\"maxa\":623},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hướng Hiệp (xã)",
- "truocsn": "Thị trấn Krông Klang, Xã Mò Ó, Xã Hướng Hiệp",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.573\",\"properties\":{\"matinhxa\":\"19.575\",\"maxa\":575},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hướng Lập (xã)",
- "truocsn": "Xã Hướng Việt, Xã Hướng Lập",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.575\",\"properties\":{\"matinhxa\":\"19.577\",\"maxa\":577},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hướng Phùng (xã)",
- "truocsn": "Xã Hướng Sơn, Xã Hướng Linh, Xã Hướng Phùng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.592\",\"properties\":{\"matinhxa\":\"19.594\",\"maxa\":594},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Khe Sanh (xã)",
- "truocsn": "Thị trấn Khe Sanh, Xã Tân Hợp, Xã Húc, Xã Hướng Tân",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.585\",\"properties\":{\"matinhxa\":\"19.587\",\"maxa\":587},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Kim Điền (xã)",
- "truocsn": "Xã Hóa Sơn, Xã Hóa Hợp",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.604\",\"properties\":{\"matinhxa\":\"19.606\",\"maxa\":606},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Kim Ngân (xã)",
- "truocsn": "Xã Kim Thủy, Xã Ngân Thủy, Xã Lâm Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.635\",\"properties\":{\"matinhxa\":\"19.637\",\"maxa\":637},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Kim Phú (xã)",
- "truocsn": "Xã Thượng Hóa, Xã Trung Hóa, Xã Minh Hóa, Xã Tân Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.605\",\"properties\":{\"matinhxa\":\"19.607\",\"maxa\":607},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "La Lay (xã)",
- "truocsn": "Xã A Bung, Xã A Ngo",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.566\",\"properties\":{\"matinhxa\":\"19.568\",\"maxa\":568},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lao Bảo (xã)",
- "truocsn": "Xã Tân Thành (huyện Hướng Hóa), Xã Tân Long, Thị trấn Lao Bảo",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.593\",\"properties\":{\"matinhxa\":\"19.595\",\"maxa\":595},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lệ Ninh (xã)",
- "truocsn": "Thị trấn Nông trường Lệ Ninh, Xã Sơn Thủy, Xã Hoa Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.632\",\"properties\":{\"matinhxa\":\"19.634\",\"maxa\":634},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Lệ Thủy (xã)",
- "truocsn": "Thị trấn Kiến Giang, Xã Liên Thủy, Xã Xuân Thủy, Xã An Thủy, Xã Phong Thủy, Xã Lộc Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.633\",\"properties\":{\"matinhxa\":\"19.635\",\"maxa\":635},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lìa (xã)",
- "truocsn": "Xã Thanh, Xã Thuận, Xã Lìa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.595\",\"properties\":{\"matinhxa\":\"19.597\",\"maxa\":597},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Minh Hóa (xã)",
- "truocsn": "Thị trấn Quy Đạt, Xã Xuân Hóa, Xã Yên Hóa, Xã Hồng Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.601\",\"properties\":{\"matinhxa\":\"19.603\",\"maxa\":603},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mỹ Thủy (xã)",
- "truocsn": "Xã Hải Dương, Xã Hải An, Xã Hải Khê",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.582\",\"properties\":{\"matinhxa\":\"19.584\",\"maxa\":584},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Nam Ba Đồn (xã)",
- "truocsn": "Xã Quảng Tân, Xã Quảng Trung, Xã Quảng Tiên, Xã Quảng Sơn, Xã Quảng Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.619\",\"properties\":{\"matinhxa\":\"19.621\",\"maxa\":621},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Nam Cửa Việt (xã)",
- "truocsn": "Xã Triệu Trạch, Xã Triệu Phước, Xã Triệu Tân",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.586\",\"properties\":{\"matinhxa\":\"19.588\",\"maxa\":588},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nam Đông Hà (phường)",
- "truocsn": "Phường 2 (thành phố Đông Hà), Phường 5, Phường Đông Lễ, Phường Đông Lương",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.571\",\"properties\":{\"matinhxa\":\"19.573\",\"maxa\":573},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nam Gianh (xã)",
- "truocsn": "Xã Quảng Hòa, Xã Quảng Lộc, Xã Quảng Văn, Xã Quảng Minh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.620\",\"properties\":{\"matinhxa\":\"19.622\",\"maxa\":622},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Nam Hải Lăng (xã)",
- "truocsn": "Xã Hải Sơn, Xã Hải Phong, Xã Hải Chánh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.579\",\"properties\":{\"matinhxa\":\"19.581\",\"maxa\":581},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Nam Trạch (xã)",
- "truocsn": "Thị trấn Nông trường Việt Trung, Xã Nhân Trạch, Xã Lý Nam",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.622\",\"properties\":{\"matinhxa\":\"19.624\",\"maxa\":624},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Ninh Châu (xã)",
- "truocsn": "Xã Tân Ninh, Xã Gia Ninh, Xã Duy Ninh, Xã Hải Ninh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.630\",\"properties\":{\"matinhxa\":\"19.632\",\"maxa\":632},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phong Nha (xã)",
- "truocsn": "Thị trấn Phong Nha, Xã Lâm Trạch, Xã Xuân Trạch, Xã Phúc Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.627\",\"properties\":{\"matinhxa\":\"19.629\",\"maxa\":629},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phú Trạch (xã)",
- "truocsn": "Xã Quảng Đông, Xã Quảng Phú, Xã Quảng Kim, Xã Quảng Hợp",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.614\",\"properties\":{\"matinhxa\":\"19.616\",\"maxa\":616},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Quảng Ninh (xã)",
- "truocsn": "Thị trấn Quán Hàu, Xã Vĩnh Ninh, Xã Võ Ninh, Xã Hàm Ninh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.628\",\"properties\":{\"matinhxa\":\"19.630\",\"maxa\":630},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Quảng Trạch (xã)",
- "truocsn": "Xã Quảng Phương, Xã Quảng Xuân, Xã Quảng Hưng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.617\",\"properties\":{\"matinhxa\":\"19.619\",\"maxa\":619},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Quảng Trị (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3 (thị xã Quảng Trị), Phường An Đôn, Xã Hải Lệ",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.588\",\"properties\":{\"matinhxa\":\"19.590\",\"maxa\":590},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Sen Ngư (xã)",
- "truocsn": "Xã Hưng Thủy, Xã Sen Thủy, Xã Ngư Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.638\",\"properties\":{\"matinhxa\":\"19.640\",\"maxa\":640},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Tà Rụt (xã)",
- "truocsn": "Xã A Vao, Xã Húc Nghì, Xã Tà Rụt",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.590\",\"properties\":{\"matinhxa\":\"19.592\",\"maxa\":592},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Tân Gianh (xã)",
- "truocsn": "Xã Phù Cảnh, Xã Liên Trường, Xã Quảng Thanh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.611\",\"properties\":{\"matinhxa\":\"19.613\",\"maxa\":613},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Tân Lập (xã)",
- "truocsn": "Xã Tân Liên, Xã Hướng Lộc, Xã Tân Lập",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.591\",\"properties\":{\"matinhxa\":\"19.593\",\"maxa\":593},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Tân Mỹ (xã)",
- "truocsn": "Xã Tân Thủy, Xã Dương Thủy, Xã Mỹ Thủy, Xã Thái Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.636\",\"properties\":{\"matinhxa\":\"19.638\",\"maxa\":638},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Tân Thành (xã)",
- "truocsn": "xã Tân Thành (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.603\",\"properties\":{\"matinhxa\":\"19.605\",\"maxa\":605},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Thượng Trạch (xã)",
- "truocsn": "Xã Tân Trạch, Xã Thượng Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.625\",\"properties\":{\"matinhxa\":\"19.627\",\"maxa\":627},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Triệu Bình (xã)",
- "truocsn": "Xã Triệu Độ, Xã Triệu Thuận, Xã Triệu Hòa, Xã Triệu Đại",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.572\",\"properties\":{\"matinhxa\":\"19.574\",\"maxa\":574},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Triệu Cơ (xã)",
- "truocsn": "Xã Triệu Trung, Xã Triệu Tài, Xã Triệu Cơ",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.587\",\"properties\":{\"matinhxa\":\"19.589\",\"maxa\":589},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Triệu Phong (xã)",
- "truocsn": "Thị trấn Ái Tử, Xã Triệu Thành, Xã Triệu Thượng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.589\",\"properties\":{\"matinhxa\":\"19.591\",\"maxa\":591},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Trung Thuần (xã)",
- "truocsn": "Xã Quảng Lưu, Xã Quảng Thạch, Xã Quảng Tiến",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.616\",\"properties\":{\"matinhxa\":\"19.618\",\"maxa\":618},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Trường Ninh (xã)",
- "truocsn": "Xã Vạn Ninh, Xã An Ninh, Xã Xuân Ninh, Xã Hiền Ninh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.631\",\"properties\":{\"matinhxa\":\"19.633\",\"maxa\":633},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Trường Phú (xã)",
- "truocsn": "Xã Trường Thủy, Xã Mai Thủy, Xã Phú Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.637\",\"properties\":{\"matinhxa\":\"19.639\",\"maxa\":639},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Trường Sơn (xã)",
- "truocsn": "Xã Trường Xuân, Xã Trường Sơn",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.629\",\"properties\":{\"matinhxa\":\"19.631\",\"maxa\":631},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tuyên Bình (xã)",
- "truocsn": "Xã Phong Hóa, Xã Ngư Hóa, Xã Mai Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.610\",\"properties\":{\"matinhxa\":\"19.612\",\"maxa\":612},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tuyên Hóa (xã)",
- "truocsn": "Xã Tiến Hóa, Xã Châu Hóa, Xã Cao Quảng, Xã Văn Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.612\",\"properties\":{\"matinhxa\":\"19.614\",\"maxa\":614},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tuyên Lâm (xã)",
- "truocsn": "Xã Lâm Hóa, Xã Thanh Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.608\",\"properties\":{\"matinhxa\":\"19.610\",\"maxa\":610},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tuyên Phú (xã)",
- "truocsn": "Xã Đồng Hóa, Xã Thạch Hóa, Xã Đức Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.609\",\"properties\":{\"matinhxa\":\"19.611\",\"maxa\":611},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tuyên Sơn (xã)",
- "truocsn": "Xã Thanh Thạch, Xã Hương Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.607\",\"properties\":{\"matinhxa\":\"19.609\",\"maxa\":609},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Vĩnh Định (xã)",
- "truocsn": "Xã Hải Quy, Xã Hải Hưng, Xã Hải Bình",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.581\",\"properties\":{\"matinhxa\":\"19.583\",\"maxa\":583},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Vĩnh Hoàng (xã)",
- "truocsn": "Xã Vĩnh Thái, Xã Trung Nam, Xã Vĩnh Hòa, Xã Vĩnh Tú",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.563\",\"properties\":{\"matinhxa\":\"19.565\",\"maxa\":565},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Vĩnh Linh (xã)",
- "truocsn": "Thị trấn Hồ Xá, Xã Vĩnh Long, Xã Vĩnh Chấp",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.562\",\"properties\":{\"matinhxa\":\"19.564\",\"maxa\":564},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Vĩnh Thủy (xã)",
- "truocsn": "Xã Vĩnh Lâm, Xã Vĩnh Sơn, Xã Vĩnh Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.565\",\"properties\":{\"matinhxa\":\"19.567\",\"maxa\":567},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "A Lưới 1 (xã)",
- "truocsn": "Xã Hồng Thủy, Xã Hồng Vân, Xã Trung Sơn, Xã Hồng Kim",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1715\",\"properties\":{\"matinhxa\":\"20.1729\",\"maxa\":1729},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "A Lưới 2 (xã)",
- "truocsn": "Thị trấn A Lưới, Xã Hồng Bắc, Xã Quảng Nhâm, Xã A Ngo",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1714\",\"properties\":{\"matinhxa\":\"20.1728\",\"maxa\":1728},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "A Lưới 3 (xã)",
- "truocsn": "Xã Sơn Thủy, Xã Hồng Thượng, Xã Phú Vinh, Xã Hồng Thái",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1717\",\"properties\":{\"matinhxa\":\"20.1731\",\"maxa\":1731},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "A Lưới 4 (xã)",
- "truocsn": "Xã Hương Phong, Xã A Roàng, Xã Đông Sơn, Xã Lâm Đớt",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1718\",\"properties\":{\"matinhxa\":\"20.1732\",\"maxa\":1732},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "A Lưới 5 (xã)",
- "truocsn": "Xã Hương Nguyên, Xã Hồng Hạ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1716\",\"properties\":{\"matinhxa\":\"20.1730\",\"maxa\":1730},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Cựu (phường)",
- "truocsn": "Phường An Đông, Phường An Tây, Phường An Cựu",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1692\",\"properties\":{\"matinhxa\":\"20.1706\",\"maxa\":1706},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Điền (xã)",
- "truocsn": "Xã Hương Bình, Xã Bình Thành, Xã Bình Tiến",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1712\",\"properties\":{\"matinhxa\":\"20.1726\",\"maxa\":1726},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Chân Mây - Lăng Cô (xã)",
- "truocsn": "Thị trấn Lăng Cô, Xã Lộc Tiến, Xã Lộc Vĩnh, Xã Lộc Thủy",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1720\",\"properties\":{\"matinhxa\":\"20.1734\",\"maxa\":1734},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Đan Điền (xã)",
- "truocsn": "Xã Quảng Thái, Xã Quảng Lợi, Xã Quảng Vinh, Xã Quảng Phú",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1699\",\"properties\":{\"matinhxa\":\"20.1713\",\"maxa\":1713},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Dương Nỗ (phường)",
- "truocsn": "phường Dương Nỗ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1703\",\"properties\":{\"matinhxa\":\"20.1717\",\"maxa\":1717},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Hóa Châu (phường)",
- "truocsn": "Phường Hương Phong, Phường Hương Vinh, Xã Quảng Thành",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1700\",\"properties\":{\"matinhxa\":\"20.1714\",\"maxa\":1714},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Hưng Lộc (xã)",
- "truocsn": "Thị trấn Lộc Sơn, Xã Lộc Bổn, Xã Xuân Lộc",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1723\",\"properties\":{\"matinhxa\":\"20.1737\",\"maxa\":1737},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Hương An (phường)",
- "truocsn": "Phường An Hòa, Phường Hương Sơ, Phường Hương An",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1693\",\"properties\":{\"matinhxa\":\"20.1707\",\"maxa\":1707},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Hương Thủy (phường)",
- "truocsn": "Phường Thủy Lương, Phường Thủy Châu, Xã Thủy Tân",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1709\",\"properties\":{\"matinhxa\":\"20.1723\",\"maxa\":1723},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Hương Trà (phường)",
- "truocsn": "Phường Tứ Hạ, Phường Hương Văn, Phường Hương Vân",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1711\",\"properties\":{\"matinhxa\":\"20.1725\",\"maxa\":1725},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Khe Tre (xã)",
- "truocsn": "Thị trấn Khe Tre, Xã Hương Phú, Xã Hương Lộc, Xã Thượng Lộ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1724\",\"properties\":{\"matinhxa\":\"20.1738\",\"maxa\":1738},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Kim Long (phường)",
- "truocsn": "Phường Long Hồ, Phường Hương Long, Phường Kim Long",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1713\",\"properties\":{\"matinhxa\":\"20.1727\",\"maxa\":1727},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Kim Trà (phường)",
- "truocsn": "Phường Hương Xuân, Phường Hương Chữ, Xã Hương Toàn",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1710\",\"properties\":{\"matinhxa\":\"20.1724\",\"maxa\":1724},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Lộc An (xã)",
- "truocsn": "Xã Lộc Hòa, Xã Lộc Điền, Xã Lộc An",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1722\",\"properties\":{\"matinhxa\":\"20.1736\",\"maxa\":1736},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Long Quảng (xã)",
- "truocsn": "Xã Thượng Quảng, Xã Thượng Long, Xã Hương Hữu",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1726\",\"properties\":{\"matinhxa\":\"20.1740\",\"maxa\":1740},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Mỹ Thượng (phường)",
- "truocsn": "Phường Phú Thượng, Xã Phú An, Xã Phú Mỹ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1704\",\"properties\":{\"matinhxa\":\"20.1718\",\"maxa\":1718},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Nam Đông (xã)",
- "truocsn": "Xã Hương Xuân, Xã Thượng Nhật, Xã Hương Sơn",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1725\",\"properties\":{\"matinhxa\":\"20.1739\",\"maxa\":1739},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Phong Điền (phường)",
- "truocsn": "Phường Phong Thu, Xã Phong Mỹ, Xã Phong Xuân",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1698\",\"properties\":{\"matinhxa\":\"20.1712\",\"maxa\":1712},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Phong Dinh (phường)",
- "truocsn": "Phường Phong Hòa, Xã Phong Bình, Xã Phong Chương",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1697\",\"properties\":{\"matinhxa\":\"20.1711\",\"maxa\":1711},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Phong Phú (phường)",
- "truocsn": "Phường Phong Phú, Xã Phong Thạnh",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1696\",\"properties\":{\"matinhxa\":\"20.1710\",\"maxa\":1710},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Phong Quảng (phường)",
- "truocsn": "Phường Phong Hải, Xã Quảng Công, Xã Quảng Ngạn",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1737\",\"properties\":{\"matinhxa\":\"20.1751\",\"maxa\":1751},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Phong Thái (phường)",
- "truocsn": "Phường Phong An, Phường Phong Hiền, Xã Phong Sơn",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1727\",\"properties\":{\"matinhxa\":\"20.1741\",\"maxa\":1741},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Phú Bài (phường)",
- "truocsn": "Phường Phú Bài, Xã Thủy Phù, Xã Phú Sơn, Xã Dương Hòa",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1708\",\"properties\":{\"matinhxa\":\"20.1722\",\"maxa\":1722},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Phú Hồ (xã)",
- "truocsn": "Xã Phú Xuân, Xã Phú Lương, Xã Phú Hồ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1706\",\"properties\":{\"matinhxa\":\"20.1720\",\"maxa\":1720},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Phú Lộc (xã)",
- "truocsn": "Thị trấn Phú Lộc, Xã Lộc Trì, Xã Lộc Bình",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1719\",\"properties\":{\"matinhxa\":\"20.1733\",\"maxa\":1733},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Phú Vang (xã)",
- "truocsn": "Thị trấn Phú Đa, Xã Phú Gia, Xã Vinh Hà",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1707\",\"properties\":{\"matinhxa\":\"20.1721\",\"maxa\":1721},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Phú Vinh (xã)",
- "truocsn": "Xã Phú Diên, Xã Vinh Xuân, Xã Vinh An, Xã Vinh Thanh",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1705\",\"properties\":{\"matinhxa\":\"20.1719\",\"maxa\":1719},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Phú Xuân (phường)",
- "truocsn": "Phường Gia Hội, Phường Phú Hậu, Phường Tây Lộc, Phường Thuận Lộc, Phường Thuận Hòa, Phường Đông Ba",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1689\",\"properties\":{\"matinhxa\":\"20.1703\",\"maxa\":1703},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Quảng Điền (xã)",
- "truocsn": "Thị trấn Sịa, Xã Quảng Phước, Xã Quảng An, Xã Quảng Thọ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1701\",\"properties\":{\"matinhxa\":\"20.1715\",\"maxa\":1715},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Thanh Thủy (phường)",
- "truocsn": "Phường Thủy Dương, Phường Thủy Phương, Xã Thủy Thanh",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1695\",\"properties\":{\"matinhxa\":\"20.1709\",\"maxa\":1709},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Thuận An (phường)",
- "truocsn": "Phường Thuận An, Xã Phú Hải, Xã Phú Thuận",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1702\",\"properties\":{\"matinhxa\":\"20.1716\",\"maxa\":1716},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Thuận Hóa (phường)",
- "truocsn": "Phường Phú Hội, Phường Phú Nhuận, Phường Đúc, Phường Vĩnh Ninh, Phường Phước Vĩnh, Phường Trường An",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1691\",\"properties\":{\"matinhxa\":\"20.1705\",\"maxa\":1705},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Thủy Xuân (phường)",
- "truocsn": "Phường Thủy Biều, Phường Thủy Bằng, Phường Thủy Xuân",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1694\",\"properties\":{\"matinhxa\":\"20.1708\",\"maxa\":1708},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Vinh Lộc (xã)",
- "truocsn": "Xã Vinh Hưng, Xã Vinh Mỹ, Xã Giang Hải, Xã Vinh Hiền",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1721\",\"properties\":{\"matinhxa\":\"20.1735\",\"maxa\":1735},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Vỹ Dạ (phường)",
- "truocsn": "Phường Thủy Vân, Phường Xuân Phú, Phường Vỹ Dạ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1690\",\"properties\":{\"matinhxa\":\"20.1704\",\"maxa\":1704},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Hải (phường)",
- "truocsn": "Phường Phước Mỹ, Phường An Hải Bắc, Phường An Hải Nam",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1949\",\"properties\":{\"matinhxa\":\"21.1963\",\"maxa\":1963},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Khê (phường)",
- "truocsn": "Phường Hòa An, Phường Hòa Phát, Phường An Khê",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1931\",\"properties\":{\"matinhxa\":\"21.1945\",\"maxa\":1945},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Thắng (phường)",
- "truocsn": "Phường Điện An, Phường Điện Thắng Nam, Phường Điện Thắng Trung",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1968\",\"properties\":{\"matinhxa\":\"21.1982\",\"maxa\":1982},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Avương (xã)",
- "truocsn": "Xã Bhalêê, Xã Avương",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1962\",\"properties\":{\"matinhxa\":\"21.1976\",\"maxa\":1976},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bà Nà (xã)",
- "truocsn": "Xã Hòa Ninh, Xã Hòa Nhơn",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1953\",\"properties\":{\"matinhxa\":\"21.1967\",\"maxa\":1967},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bàn Thạch (phường)",
- "truocsn": "Phường Tân Thạnh, Phường Hòa Thuận, Xã Tam Thăng",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1921\",\"properties\":{\"matinhxa\":\"21.1935\",\"maxa\":1935},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bến Giằng (xã)",
- "truocsn": "Xã Cà Dy, Xã Tà Bhing, Xã Tà Pơơ",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1979\",\"properties\":{\"matinhxa\":\"21.1993\",\"maxa\":1993},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bến Hiên (xã)",
- "truocsn": "Xã Kà Dăng, Xã Mà Cooih",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1912\",\"properties\":{\"matinhxa\":\"21.1926\",\"maxa\":1926},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cẩm Lệ (phường)",
- "truocsn": "Phường Hòa Thọ Tây, Phường Hòa Thọ Đông, Phường Khuê Trung",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1907\",\"properties\":{\"matinhxa\":\"21.1921\",\"maxa\":1921},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Chiên Đàn (xã)",
- "truocsn": "Thị trấn Phú Thịnh, Xã Tam Đàn, Xã Tam Thái",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1923\",\"properties\":{\"matinhxa\":\"21.1937\",\"maxa\":1937},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đắc Pring (xã)",
- "truocsn": "Xã Đắc Pre, Xã Đắc Pring",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1960\",\"properties\":{\"matinhxa\":\"21.1974\",\"maxa\":1974},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đại Lộc (xã)",
- "truocsn": "Thị trấn Ái Nghĩa, Xã Đại Hiệp, Xã Đại Hòa, Xã Đại An, Xã Đại Nghĩa",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1970\",\"properties\":{\"matinhxa\":\"21.1984\",\"maxa\":1984},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Điện Bàn (phường)",
- "truocsn": "Phường Điện Phương, Phường Điện Minh, Phường Vĩnh Điện",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1977\",\"properties\":{\"matinhxa\":\"21.1991\",\"maxa\":1991},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Điện Bàn Bắc (phường)",
- "truocsn": "Phường Điện Thắng Bắc, Xã Điện Hòa, Xã Điện Tiến",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1975\",\"properties\":{\"matinhxa\":\"21.1989\",\"maxa\":1989},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Điện Bàn Đông (phường)",
- "truocsn": "Phường Điện Nam Đông, Phường Điện Nam Trung, Phường Điện Dương, Phường Điện Ngọc, Phường Điện Nam Bắc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1978\",\"properties\":{\"matinhxa\":\"21.1992\",\"maxa\":1992},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Điện Bàn Tây (xã)",
- "truocsn": "Xã Điện Hồng, Xã Điện Thọ, Xã Điện Phước",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1969\",\"properties\":{\"matinhxa\":\"21.1983\",\"maxa\":1983},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đồng Dương (xã)",
- "truocsn": "Xã Bình Lãnh, Xã Bình Trị, Xã Bình Định",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1937\",\"properties\":{\"matinhxa\":\"21.1951\",\"maxa\":1951},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đông Giang (xã)",
- "truocsn": "Thị trấn Prao, Xã Tà Lu, Xã A Rooi, Xã Zà Hung",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1963\",\"properties\":{\"matinhxa\":\"21.1977\",\"maxa\":1977},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đức Phú (xã)",
- "truocsn": "Xã Tam Sơn, Xã Tam Thạnh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1945\",\"properties\":{\"matinhxa\":\"21.1959\",\"maxa\":1959},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Duy Nghĩa (xã)",
- "truocsn": "Xã Duy Thành, Xã Duy Hải, Xã Duy Nghĩa",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1916\",\"properties\":{\"matinhxa\":\"21.1930\",\"maxa\":1930},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Duy Xuyên (xã)",
- "truocsn": "Xã Duy Trung, Xã Duy Sơn, Xã Duy Trinh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1966\",\"properties\":{\"matinhxa\":\"21.1980\",\"maxa\":1980},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Gò Nổi (xã)",
- "truocsn": "Xã Điện Phong, Xã Điện Trung, Xã Điện Quang",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1967\",\"properties\":{\"matinhxa\":\"21.1981\",\"maxa\":1981},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hà Nha (xã)",
- "truocsn": "Xã Đại Đồng, Xã Đại Hồng, Xã Đại Quang",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1911\",\"properties\":{\"matinhxa\":\"21.1925\",\"maxa\":1925},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Hải Châu (phường)",
- "truocsn": "Phường Thanh Bình, Phường Thuận Phước, Phường Thạch Thang, Phường Phước Ninh, Phường Hải Châu",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1935\",\"properties\":{\"matinhxa\":\"21.1949\",\"maxa\":1949},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hải Vân (phường)",
- "truocsn": "Phường Hòa Hiệp Bắc, Phường Hòa Hiệp Nam, Xã Hòa Bắc, Xã Hòa Liên",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1952\",\"properties\":{\"matinhxa\":\"21.1966\",\"maxa\":1966},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hiệp Đức (xã)",
- "truocsn": "Thị trấn Tân Bình, Xã Quế Tân, Xã Quế Lưu",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1934\",\"properties\":{\"matinhxa\":\"21.1948\",\"maxa\":1948},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hòa Cường (phường)",
- "truocsn": "Phường Bình Thuận, Phường Hòa Thuận Tây, Phường Hòa Cường Bắc, Phường Hòa Cường Nam",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1928\",\"properties\":{\"matinhxa\":\"21.1942\",\"maxa\":1942},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hòa Khánh (phường)",
- "truocsn": "Phường Hòa Khánh Nam, Phường Hòa Minh, Xã Hòa Sơn",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1932\",\"properties\":{\"matinhxa\":\"21.1946\",\"maxa\":1946},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hòa Tiến (xã)",
- "truocsn": "Xã Hòa Khương, Xã Hòa Tiến",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1954\",\"properties\":{\"matinhxa\":\"21.1968\",\"maxa\":1968},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hòa Vang (xã)",
- "truocsn": "Xã Hòa Phong, Xã Hòa Phú",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1905\",\"properties\":{\"matinhxa\":\"21.1919\",\"maxa\":1919},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hòa Xuân (phường)",
- "truocsn": "Phường Hòa Xuân, Xã Hòa Châu, Xã Hòa Phước",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1908\",\"properties\":{\"matinhxa\":\"21.1922\",\"maxa\":1922},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hoàng Sa (đặc khu)",
- "truocsn": "Huyện Hoàng Sa",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3306\",\"properties\":{\"matinhxa\":\"21.3322\",\"maxa\":3322},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hội An (phường)",
- "truocsn": "Phường Minh An, Phường Cẩm Phô, Phường Sơn Phong, Phường Cẩm Nam, Xã Cẩm Kim",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1964\",\"properties\":{\"matinhxa\":\"21.1978\",\"maxa\":1978},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hội An Đông (phường)",
- "truocsn": "Phường Cẩm Châu, Phường Cửa Đại, Xã Cẩm Thanh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1976\",\"properties\":{\"matinhxa\":\"21.1990\",\"maxa\":1990},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hội An Tây (phường)",
- "truocsn": "Phường Thanh Hà, Phường Tân An, Phường Cẩm An, Xã Cẩm Hà",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1974\",\"properties\":{\"matinhxa\":\"21.1988\",\"maxa\":1988},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hùng Sơn (xã)",
- "truocsn": "Xã Ch’ơm, Xã Gari, Xã Tr’hy, Xã Axan",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1957\",\"properties\":{\"matinhxa\":\"21.1971\",\"maxa\":1971},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hương Trà (phường)",
- "truocsn": "Phường An Sơn, Phường Hòa Hương, Xã Tam Ngọc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1988\",\"properties\":{\"matinhxa\":\"21.2002\",\"maxa\":2002},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Khâm Đức (xã)",
- "truocsn": "Thị trấn Khâm Đức, Xã Phước Xuân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1981\",\"properties\":{\"matinhxa\":\"21.1995\",\"maxa\":1995},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "La Dêê (xã)",
- "truocsn": "Xã Đắc Tôi, Xã La Dêê",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1958\",\"properties\":{\"matinhxa\":\"21.1972\",\"maxa\":1972},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "La Êê (xã)",
- "truocsn": "Xã Chơ Chun, Xã La Êê",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1956\",\"properties\":{\"matinhxa\":\"21.1970\",\"maxa\":1970},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lãnh Ngọc (xã)",
- "truocsn": "Xã Tiên Lãnh, Xã Tiên Ngọc, Xã Tiên Hiệp",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1947\",\"properties\":{\"matinhxa\":\"21.1961\",\"maxa\":1961},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Liên Chiểu (phường)",
- "truocsn": "Phường Hòa Khánh Bắc, Xã Hòa Liên (phần còn lại sau khi sáp nhập vào phường Hải Vân)",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1951\",\"properties\":{\"matinhxa\":\"21.1965\",\"maxa\":1965},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Nam Giang (xã)",
- "truocsn": "Xã Zuôih, Xã Chà Vàl",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1959\",\"properties\":{\"matinhxa\":\"21.1973\",\"maxa\":1973},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Nam Phước (xã)",
- "truocsn": "Thị trấn Nam Phước, Xã Duy Phước, Xã Duy Vinh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1919\",\"properties\":{\"matinhxa\":\"21.1933\",\"maxa\":1933},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Nam Trà My (xã)",
- "truocsn": "Xã Trà Mai, Xã Trà Don",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1925\",\"properties\":{\"matinhxa\":\"21.1939\",\"maxa\":1939},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Ngũ Hành Sơn (phường)",
- "truocsn": "Phường Mỹ An, Phường Khuê Mỹ, Phường Hòa Hải, Phường Hòa Quý",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1906\",\"properties\":{\"matinhxa\":\"21.1920\",\"maxa\":1920},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nông Sơn (xã)",
- "truocsn": "Thị trấn Trung Phước, Xã Quế Lộc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1972\",\"properties\":{\"matinhxa\":\"21.1986\",\"maxa\":1986},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Núi Thành (xã)",
- "truocsn": "Thị trấn Núi Thành, Xã Tam Quang, Xã Tam Nghĩa, Xã Tam Hiệp, Xã Tam Giang",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1984\",\"properties\":{\"matinhxa\":\"21.1998\",\"maxa\":1998},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Phú Ninh (xã)",
- "truocsn": "Xã Tam Dân, Xã Tam Đại, Xã Tam Lãnh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1942\",\"properties\":{\"matinhxa\":\"21.1956\",\"maxa\":1956},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Phú Thuận (xã)",
- "truocsn": "Xã Đại Tân, Xã Đại Thắng, Xã Đại Chánh, Xã Đại Thạnh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1973\",\"properties\":{\"matinhxa\":\"21.1987\",\"maxa\":1987},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phước Chánh (xã)",
- "truocsn": "Xã Phước Công, Xã Phước Chánh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1995\",\"properties\":{\"matinhxa\":\"21.2009\",\"maxa\":2009},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phước Hiệp (xã)",
- "truocsn": "Xã Phước Hòa, Xã Phước Hiệp",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1929\",\"properties\":{\"matinhxa\":\"21.1943\",\"maxa\":1943},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phước Năng (xã)",
- "truocsn": "Xã Phước Đức, Xã Phước Mỹ, Xã Phước Năng",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1994\",\"properties\":{\"matinhxa\":\"21.2008\",\"maxa\":2008},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phước Thành (xã)",
- "truocsn": "Xã Phước Lộc, Xã Phước Kim, Xã Phước Thành",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1993\",\"properties\":{\"matinhxa\":\"21.2007\",\"maxa\":2007},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phước Trà (xã)",
- "truocsn": "Xã Sông Trà, Xã Phước Gia, Xã Phước Trà",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1930\",\"properties\":{\"matinhxa\":\"21.1944\",\"maxa\":1944},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Quảng Phú (phường)",
- "truocsn": "Phường An Phú, Xã Tam Thanh, Xã Tam Phú",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1922\",\"properties\":{\"matinhxa\":\"21.1936\",\"maxa\":1936},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Quế Phước (xã)",
- "truocsn": "Xã Quế Lâm, Xã Phước Ninh, Xã Ninh Phước",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1980\",\"properties\":{\"matinhxa\":\"21.1994\",\"maxa\":1994},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Quế Sơn (xã)",
- "truocsn": "Thị trấn Đông Phú, Xã Quế Minh, Xã Quế An, Xã Quế Long, Xã Quế Phong",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1936\",\"properties\":{\"matinhxa\":\"21.1950\",\"maxa\":1950},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Quế Sơn Trung (xã)",
- "truocsn": "Xã Quế Mỹ, Xã Quế Hiệp, Xã Quế Thuận, Xã Quế Châu",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1917\",\"properties\":{\"matinhxa\":\"21.1931\",\"maxa\":1931},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Sơn Cẩm Hà (xã)",
- "truocsn": "Xã Tiên Sơn, Xã Tiên Hà, Xã Tiên Châu",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1938\",\"properties\":{\"matinhxa\":\"21.1952\",\"maxa\":1952},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Sơn Trà (phường)",
- "truocsn": "Phường Thọ Quang, Phường Nại Hiên Đông, Phường Mân Thái",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1950\",\"properties\":{\"matinhxa\":\"21.1964\",\"maxa\":1964},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Sông Kôn (xã)",
- "truocsn": "Xã A Ting, Xã Jơ Ngây, Xã Sông Kôn",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1961\",\"properties\":{\"matinhxa\":\"21.1975\",\"maxa\":1975},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Sông Vàng (xã)",
- "truocsn": "Xã Tư, Xã Ba",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1909\",\"properties\":{\"matinhxa\":\"21.1923\",\"maxa\":1923},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tam Anh (xã)",
- "truocsn": "Xã Tam Hòa, Xã Tam Anh Bắc, Xã Tam Anh Nam",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1986\",\"properties\":{\"matinhxa\":\"21.2000\",\"maxa\":2000},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tam Hải (xã)",
- "truocsn": "xã Tam Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1985\",\"properties\":{\"matinhxa\":\"21.1999\",\"maxa\":1999},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tam Kỳ (phường)",
- "truocsn": "Phường An Mỹ, Phường An Xuân, Phường Trường Xuân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1983\",\"properties\":{\"matinhxa\":\"21.1997\",\"maxa\":1997},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tam Mỹ (xã)",
- "truocsn": "Xã Tam Mỹ Đông, Xã Tam Mỹ Tây, Xã Tam Trà",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1944\",\"properties\":{\"matinhxa\":\"21.1958\",\"maxa\":1958},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tam Xuân (xã)",
- "truocsn": "Xã Tam Xuân I, Xã Tam Xuân II, Xã Tam Tiến",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1987\",\"properties\":{\"matinhxa\":\"21.2001\",\"maxa\":2001},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Hiệp (xã)",
- "truocsn": "xã Tân Hiệp (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3307\",\"properties\":{\"matinhxa\":\"21.3323\",\"maxa\":3323},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tây Giang (xã)",
- "truocsn": "Xã Atiêng, Xã Dang, Xã Anông, Xã Lăng",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1955\",\"properties\":{\"matinhxa\":\"21.1969\",\"maxa\":1969},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tây Hồ (xã)",
- "truocsn": "Xã Tam An, Xã Tam Thành, Xã Tam Phước, Xã Tam Lộc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1940\",\"properties\":{\"matinhxa\":\"21.1954\",\"maxa\":1954},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Thăng An (xã)",
- "truocsn": "Xã Bình Triều, Xã Bình Giang, Xã Bình Đào, Xã Bình Minh, Xã Bình Dương",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1915\",\"properties\":{\"matinhxa\":\"21.1929\",\"maxa\":1929},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Thăng Bình (xã)",
- "truocsn": "Thị trấn Hà Lam, Xã Bình Nguyên, Xã Bình Quý, Xã Bình Phục",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1914\",\"properties\":{\"matinhxa\":\"21.1928\",\"maxa\":1928},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Thăng Điền (xã)",
- "truocsn": "Xã Bình An, Xã Bình Trung, Xã Bình Tú",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1920\",\"properties\":{\"matinhxa\":\"21.1934\",\"maxa\":1934},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thăng Phú (xã)",
- "truocsn": "Xã Bình Phú, Xã Bình Quế",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1941\",\"properties\":{\"matinhxa\":\"21.1955\",\"maxa\":1955},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Thăng Trường (xã)",
- "truocsn": "Xã Bình Nam, Xã Bình Hải, Xã Bình Sa",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1989\",\"properties\":{\"matinhxa\":\"21.2003\",\"maxa\":2003},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thạnh Bình (xã)",
- "truocsn": "Xã Tiên Lập, Xã Tiên Lộc, Xã Tiên An, Xã Tiên Cảnh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1948\",\"properties\":{\"matinhxa\":\"21.1962\",\"maxa\":1962},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thanh Khê (phường)",
- "truocsn": "Phường Xuân Hà, Phường Chính Gián, Phường Thạc Gián, Phường Thanh Khê Tây, Phường Thanh Khê Đông",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1933\",\"properties\":{\"matinhxa\":\"21.1947\",\"maxa\":1947},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thạnh Mỹ (xã)",
- "truocsn": "Thị trấn Thạnh Mỹ",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1913\",\"properties\":{\"matinhxa\":\"21.1927\",\"maxa\":1927},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thu Bồn (xã)",
- "truocsn": "Xã Duy Châu, Xã Duy Hoà, Xã Duy Phú, Xã Duy Tân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1965\",\"properties\":{\"matinhxa\":\"21.1979\",\"maxa\":1979},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thượng Đức (xã)",
- "truocsn": "Xã Đại Lãnh, Xã Đại Hưng, Xã Đại Sơn",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1910\",\"properties\":{\"matinhxa\":\"21.1924\",\"maxa\":1924},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tiên Phước (xã)",
- "truocsn": "Thị trấn Tiên Kỳ, Xã Tiên Mỹ, Xã Tiên Phong, Xã Tiên Thọ",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1939\",\"properties\":{\"matinhxa\":\"21.1953\",\"maxa\":1953},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trà Đốc (xã)",
- "truocsn": "Xã Trà Bui, Xã Trà Đốc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1982\",\"properties\":{\"matinhxa\":\"21.1996\",\"maxa\":1996},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Trà Giáp (xã)",
- "truocsn": "Xã Trà Ka, Xã Trà Giáp",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1990\",\"properties\":{\"matinhxa\":\"21.2004\",\"maxa\":2004},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Trà Leng (xã)",
- "truocsn": "Xã Trà Dơn, Xã Trà Leng",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1992\",\"properties\":{\"matinhxa\":\"21.2006\",\"maxa\":2006},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Trà Liên (xã)",
- "truocsn": "Xã Trà Đông, Xã Trà Nú, Xã Trà Kót",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1943\",\"properties\":{\"matinhxa\":\"21.1957\",\"maxa\":1957},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Trà Linh (xã)",
- "truocsn": "Xã Trà Nam, Xã Trà Linh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1927\",\"properties\":{\"matinhxa\":\"21.1941\",\"maxa\":1941},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Trà My (xã)",
- "truocsn": "Thị trấn Trà My, Xã Trà Sơn, Xã Trà Giang, Xã Trà Dương",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1946\",\"properties\":{\"matinhxa\":\"21.1960\",\"maxa\":1960},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Trà Tân (xã)",
- "truocsn": "Xã Trà Giác, Xã Trà Tân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1991\",\"properties\":{\"matinhxa\":\"21.2005\",\"maxa\":2005},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Trà Tập (xã)",
- "truocsn": "Xã Trà Cang, Xã Trà Tập",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1926\",\"properties\":{\"matinhxa\":\"21.1940\",\"maxa\":1940},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Trà Vân (xã)",
- "truocsn": "Xã Trà Vinh, Xã Trà Vân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1924\",\"properties\":{\"matinhxa\":\"21.1938\",\"maxa\":1938},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Việt An (xã)",
- "truocsn": "Xã Thăng Phước, Xã Bình Sơn, Xã Quế Thọ, Xã Bình Lâm",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1996\",\"properties\":{\"matinhxa\":\"21.2010\",\"maxa\":2010},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vu Gia (xã)",
- "truocsn": "Xã Đại Phong, Xã Đại Minh, Xã Đại Cường",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1971\",\"properties\":{\"matinhxa\":\"21.1985\",\"maxa\":1985},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Xuân Phú (xã)",
- "truocsn": "Thị trấn Hương An, Xã Quế Xuân 1, Xã Quế Xuân 2, Xã Quế Phú",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1918\",\"properties\":{\"matinhxa\":\"21.1932\",\"maxa\":1932},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Phú (xã)",
- "truocsn": "Xã Nghĩa Hà, Xã Nghĩa Dõng, Xã Nghĩa Dũng, Xã An Phú",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1795\",\"properties\":{\"matinhxa\":\"22.1809\",\"maxa\":1809},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Dinh (xã)",
- "truocsn": "Xã Ba Giang, Xã Ba Dinh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1780\",\"properties\":{\"matinhxa\":\"22.1794\",\"maxa\":1794},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ba Động (xã)",
- "truocsn": "Xã Ba Liên, Xã Ba Thành, Xã Ba Động",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1779\",\"properties\":{\"matinhxa\":\"22.1793\",\"maxa\":1793},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Ba Gia (xã)",
- "truocsn": "Xã Tịnh Bắc, Xã Tịnh Hiệp, Xã Tịnh Trà",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1749\",\"properties\":{\"matinhxa\":\"22.1763\",\"maxa\":1763},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Ba Tô (xã)",
- "truocsn": "Xã Ba Lế, Xã Ba Nam, Xã Ba Tô",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1784\",\"properties\":{\"matinhxa\":\"22.1798\",\"maxa\":1798},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Ba Tơ (xã)",
- "truocsn": "Thị trấn Ba Tơ, Xã Ba Cung, Xã Ba Bích",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1777\",\"properties\":{\"matinhxa\":\"22.1791\",\"maxa\":1791},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Ba Vì (xã)",
- "truocsn": "Xã Ba Tiêu, Xã Ba Ngạc, Xã Ba Vì",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1782\",\"properties\":{\"matinhxa\":\"22.1796\",\"maxa\":1796},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Ba Vinh (xã)",
- "truocsn": "Xã Ba Điền, Xã Ba Vinh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1778\",\"properties\":{\"matinhxa\":\"22.1792\",\"maxa\":1792},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Ba Xa (xã)",
- "truocsn": "xã Ba Xa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1786\",\"properties\":{\"matinhxa\":\"22.1800\",\"maxa\":1800},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Chương (xã)",
- "truocsn": "Xã Bình Mỹ, Xã Bình Chương",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1755\",\"properties\":{\"matinhxa\":\"22.1769\",\"maxa\":1769},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Minh (xã)",
- "truocsn": "Xã Bình Khương, Xã Bình An, Xã Bình Minh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1754\",\"properties\":{\"matinhxa\":\"22.1768\",\"maxa\":1768},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Sơn (xã)",
- "truocsn": "Thị trấn Châu Ổ, Xã Bình Thạnh, Xã Bình Chánh, Xã Bình Dương, Xã Bình Nguyên, Xã Bình Trung, Xã Bình Long",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1739\",\"properties\":{\"matinhxa\":\"22.1753\",\"maxa\":1753},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bờ Y (xã)",
- "truocsn": "Thị trấn Plei Kần, Xã Đăk Xú, Xã Pờ Y",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.453\",\"properties\":{\"matinhxa\":\"22.453\",\"maxa\":453},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cà Đam (xã)",
- "truocsn": "Xã Trà Tân, Xã Trà Bùi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1760\",\"properties\":{\"matinhxa\":\"22.1774\",\"maxa\":1774},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cẩm Thành (phường)",
- "truocsn": "Phường Nguyễn Nghiêm, Phường Trần Hưng Đạo (thành phố Quảng Ngãi), Phường Nghĩa Chánh, Phường Chánh Lộ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1781\",\"properties\":{\"matinhxa\":\"22.1795\",\"maxa\":1795},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đăk Bla (phường)",
- "truocsn": "Phường Trần Hưng Đạo (thành phố Kon Tum), Lê Lợi, Nguyễn Trãi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.552\",\"properties\":{\"matinhxa\":\"22.554\",\"maxa\":554},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đăk Cấm (phường)",
- "truocsn": "Phường Ngô Mây, Phường Duy Tân, Xã Đăk Cấm",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1733\",\"properties\":{\"matinhxa\":\"22.1747\",\"maxa\":1747},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đăk Hà (xã)",
- "truocsn": "Thị trấn Đăk Hà, Xã Hà Mòn, Xã Đăk La",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.557\",\"properties\":{\"matinhxa\":\"22.559\",\"maxa\":559},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đăk Kôi (xã)",
- "truocsn": "Xã Đăk Tơ Lung, Xã Đăk Kôi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1731\",\"properties\":{\"matinhxa\":\"22.1745\",\"maxa\":1745},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đăk Long (xã)",
- "truocsn": "xã Đăk Long (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.444\",\"properties\":{\"matinhxa\":\"22.444\",\"maxa\":444},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đăk Mar (xã)",
- "truocsn": "Xã Đăk Hring, Xã Đăk Mar",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.556\",\"properties\":{\"matinhxa\":\"22.558\",\"maxa\":558},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đăk Môn (xã)",
- "truocsn": "Xã Đăk Kroong, Xã Đăk Môn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.445\",\"properties\":{\"matinhxa\":\"22.445\",\"maxa\":445},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đăk Pék (xã)",
- "truocsn": "Thị trấn Đăk Glei, Xã Đăk Pék",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.560\",\"properties\":{\"matinhxa\":\"22.562\",\"maxa\":562},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đăk Plô (xã)",
- "truocsn": "Xã Đăk Nhoong, Xã Đăk Man, Xã Đăk Plô",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.559\",\"properties\":{\"matinhxa\":\"22.561\",\"maxa\":561},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đăk Pxi (xã)",
- "truocsn": "Xã Đăk Long (thuộc huyện Đăk Hà), Xã Đăk Pxi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.451\",\"properties\":{\"matinhxa\":\"22.451\",\"maxa\":451},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đăk Rơ Wa (xã)",
- "truocsn": "Xã Hòa Bình, Xã Chư Hreng, Xã Đăk Blà, Xã Đăk Rơ Wa",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.555\",\"properties\":{\"matinhxa\":\"22.557\",\"maxa\":557},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đăk Rve (xã)",
- "truocsn": "Thị trấn Đăk Rve, Xã Đăk Pne",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1734\",\"properties\":{\"matinhxa\":\"22.1748\",\"maxa\":1748},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đăk Sao (xã)",
- "truocsn": "Xã Đăk Na, Xã Đăk Sao",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.447\",\"properties\":{\"matinhxa\":\"22.447\",\"maxa\":447},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Đăk Tô (xã)",
- "truocsn": "Thị trấn Đăk Tô, Xã Tân Cảnh, Xã Pô Kô, Xã Diên Bình",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.455\",\"properties\":{\"matinhxa\":\"22.455\",\"maxa\":455},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Đăk Tờ Kan (xã)",
- "truocsn": "Xã Đăk Rơ Ông, Xã Đăk Tờ Kan",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.448\",\"properties\":{\"matinhxa\":\"22.448\",\"maxa\":448},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Đăk Ui (xã)",
- "truocsn": "Xã Đăk Ngọk, Xã Đăk Ui",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.452\",\"properties\":{\"matinhxa\":\"22.452\",\"maxa\":452},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Đặng Thùy Trâm (xã)",
- "truocsn": "Xã Ba Trang, Xã Ba Khâm",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1783\",\"properties\":{\"matinhxa\":\"22.1797\",\"maxa\":1797},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Đình Cương (xã)",
- "truocsn": "Xã Hành Đức, Xã Hành Phước, Xã Hành Thịnh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1765\",\"properties\":{\"matinhxa\":\"22.1779\",\"maxa\":1779},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Đông Sơn (xã)",
- "truocsn": "Xã Bình Hiệp, Xã Bình Thanh, Xã Bình Tân Phú, Xã Bình Châu, Xã Tịnh Hòa",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1796\",\"properties\":{\"matinhxa\":\"22.1810\",\"maxa\":1810},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Đông Trà Bồng (xã)",
- "truocsn": "Xã Trà Bình, Xã Trà Phú, Xã Trà Giang",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1753\",\"properties\":{\"matinhxa\":\"22.1767\",\"maxa\":1767},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Dục Nông (xã)",
- "truocsn": "Xã Đăk Ang, Xã Đăk Dục, Xã Đăk Nông",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.446\",\"properties\":{\"matinhxa\":\"22.446\",\"maxa\":446},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Đức Phổ (phường)",
- "truocsn": "Phường Nguyễn Nghiêm (thị xã Đức Phổ), Phổ Hòa, Phổ Minh, Phổ Vinh, Phổ Ninh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1799\",\"properties\":{\"matinhxa\":\"22.1813\",\"maxa\":1813},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Ia Chim (xã)",
- "truocsn": "Xã Đoàn Kết, Xã Đăk Năng, Xã Ia Chim",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.554\",\"properties\":{\"matinhxa\":\"22.556\",\"maxa\":556},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Ia Đal (xã)",
- "truocsn": "xã Ia Đal (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.474\",\"properties\":{\"matinhxa\":\"22.474\",\"maxa\":474},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Ia Tơi (xã)",
- "truocsn": "Xã Ia Dom, Xã Ia Tơi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.488\",\"properties\":{\"matinhxa\":\"22.488\",\"maxa\":488},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Khánh Cường (xã)",
- "truocsn": "Xã Phổ Khánh, Xã Phổ Cường",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1776\",\"properties\":{\"matinhxa\":\"22.1790\",\"maxa\":1790},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Kon Braih (xã)",
- "truocsn": "Xã Đăk Tờ Re, Xã Đăk Ruồng, Xã Tân Lập",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1735\",\"properties\":{\"matinhxa\":\"22.1749\",\"maxa\":1749},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Kon Đào (xã)",
- "truocsn": "Xã Văn Lem, Xã Đăk Trăm, Xã Kon Đào",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.450\",\"properties\":{\"matinhxa\":\"22.450\",\"maxa\":450},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Kon Plông (xã)",
- "truocsn": "Xã Ngọk Tem, Xã Hiếu, Xã Pờ Ê",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1729\",\"properties\":{\"matinhxa\":\"22.1743\",\"maxa\":1743},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Kon Tum (phường)",
- "truocsn": "Phường Quang Trung, Phường Quyết Thắng, Phường Thắng Lợi, Phường Trường Chinh, Phường Thống Nhất",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1732\",\"properties\":{\"matinhxa\":\"22.1746\",\"maxa\":1746},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Lân Phong (xã)",
- "truocsn": "Xã Đức Phong, Xã Đức Lân",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1773\",\"properties\":{\"matinhxa\":\"22.1787\",\"maxa\":1787},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Long Phụng (xã)",
- "truocsn": "Xã Thắng Lợi, Xã Đức Nhuận, Xã Đức Hiệp",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1763\",\"properties\":{\"matinhxa\":\"22.1777\",\"maxa\":1777},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lý Sơn (đặc khu)",
- "truocsn": "Huyện Lý Sơn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3294\",\"properties\":{\"matinhxa\":\"22.3310\",\"maxa\":3310},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Măng Bút (xã)",
- "truocsn": "Xã Đăk Nên, Xã Đăk Ring, Xã Măng Bút",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1728\",\"properties\":{\"matinhxa\":\"22.1742\",\"maxa\":1742},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Măng Đen (xã)",
- "truocsn": "Thị trấn Măng Đen, Xã Măng Cành, Xã Đăk Tăng",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1730\",\"properties\":{\"matinhxa\":\"22.1744\",\"maxa\":1744},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Măng Ri (xã)",
- "truocsn": "Xã Ngọk Yêu, Xã Văn Xuôi, Xã Tê Xăng, Xã Ngọk Lây, Xã Măng Ri",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3160\",\"properties\":{\"matinhxa\":\"22.3176\",\"maxa\":3176},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Minh Long (xã)",
- "truocsn": "Xã Long Hiệp, Xã Thanh An, Xã Long Môn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1771\",\"properties\":{\"matinhxa\":\"22.1785\",\"maxa\":1785},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Mỏ Cày (xã)",
- "truocsn": "Xã Đức Chánh, Xã Đức Thạnh, Xã Đức Minh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1764\",\"properties\":{\"matinhxa\":\"22.1778\",\"maxa\":1778},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Mộ Đức (xã)",
- "truocsn": "Thị trấn Mộ Đức, Xã Đức Hòa, Xã Đức Phú, Xã Đức Tân",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1772\",\"properties\":{\"matinhxa\":\"22.1786\",\"maxa\":1786},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Mô Rai (xã)",
- "truocsn": "xã Mô Rai (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.487\",\"properties\":{\"matinhxa\":\"22.487\",\"maxa\":487},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Nghĩa Giang (xã)",
- "truocsn": "Xã Nghĩa Thuận, Xã Nghĩa Kỳ, Xã Nghĩa Điền",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1745\",\"properties\":{\"matinhxa\":\"22.1759\",\"maxa\":1759},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Nghĩa Hành (xã)",
- "truocsn": "Thị trấn Chợ Chùa, Xã Hành Thuận, Xã Hành Trung",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1767\",\"properties\":{\"matinhxa\":\"22.1781\",\"maxa\":1781},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Nghĩa Lộ (phường)",
- "truocsn": "Phường Lê Hồng Phong, Phường Trần Phú, Phường Quảng Phú, Phường Nghĩa Lộ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1794\",\"properties\":{\"matinhxa\":\"22.1808\",\"maxa\":1808},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Ngọc Linh (xã)",
- "truocsn": "Xã Mường Hoong, Xã Ngọc Linh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.558\",\"properties\":{\"matinhxa\":\"22.560\",\"maxa\":560},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Ngọk Bay (xã)",
- "truocsn": "Xã Kroong, Xã Vinh Quang, Xã Ngọk Bay",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.553\",\"properties\":{\"matinhxa\":\"22.555\",\"maxa\":555},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Ngọk Réo (xã)",
- "truocsn": "Xã Ngọk Wang, Xã Ngọk Réo",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1736\",\"properties\":{\"matinhxa\":\"22.1750\",\"maxa\":1750},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Ngọk Tụ (xã)",
- "truocsn": "Xã Đăk Rơ Nga, Xã Ngọk Tụ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.449\",\"properties\":{\"matinhxa\":\"22.449\",\"maxa\":449},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Nguyễn Nghiêm (xã)",
- "truocsn": "Xã Phổ Nhơn, Xã Phổ Phong",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1775\",\"properties\":{\"matinhxa\":\"22.1789\",\"maxa\":1789},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Phước Giang (xã)",
- "truocsn": "Xã Hành Dũng, Xã Hành Nhân, Xã Hành Minh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1747\",\"properties\":{\"matinhxa\":\"22.1761\",\"maxa\":1761},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Rờ Kơi (xã)",
- "truocsn": "xã Rờ Kơi (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.473\",\"properties\":{\"matinhxa\":\"22.473\",\"maxa\":473},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Sa Bình (xã)",
- "truocsn": "Xã Sa Nghĩa, Xã Hơ Moong, Xã Sa Bình",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.489\",\"properties\":{\"matinhxa\":\"22.489\",\"maxa\":489},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Sa Huỳnh (phường)",
- "truocsn": "Phường Phổ Thạnh, Xã Phổ Châu",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1785\",\"properties\":{\"matinhxa\":\"22.1799\",\"maxa\":1799},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Sa Loong (xã)",
- "truocsn": "Xã Đăk Kan, Xã Sa Loong",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.454\",\"properties\":{\"matinhxa\":\"22.454\",\"maxa\":454},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Sa Thầy (xã)",
- "truocsn": "Thị trấn Sa Thầy, Xã Sa Sơn, Xã Sa Nhơn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.472\",\"properties\":{\"matinhxa\":\"22.472\",\"maxa\":472},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Sơn Hà (xã)",
- "truocsn": "Thị trấn Di Lăng, Xã Sơn Bao, Xã Sơn Thượng",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1741\",\"properties\":{\"matinhxa\":\"22.1755\",\"maxa\":1755},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Sơn Hạ (xã)",
- "truocsn": "Xã Sơn Thành, Xã Sơn Nham, Xã Sơn Hạ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1759\",\"properties\":{\"matinhxa\":\"22.1773\",\"maxa\":1773},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Sơn Kỳ (xã)",
- "truocsn": "Xã Sơn Ba, Xã Sơn Kỳ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1769\",\"properties\":{\"matinhxa\":\"22.1783\",\"maxa\":1783},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Sơn Linh (xã)",
- "truocsn": "Xã Sơn Giang, Xã Sơn Cao, Xã Sơn Linh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1742\",\"properties\":{\"matinhxa\":\"22.1756\",\"maxa\":1756},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Sơn Mai (xã)",
- "truocsn": "Xã Long Mai, Xã Long Sơn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1746\",\"properties\":{\"matinhxa\":\"22.1760\",\"maxa\":1760},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Sơn Tây (xã)",
- "truocsn": "Xã Sơn Long, Xã Sơn Tân, Xã Sơn Dung",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1744\",\"properties\":{\"matinhxa\":\"22.1758\",\"maxa\":1758},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Sơn Tây Hạ (xã)",
- "truocsn": "Xã Sơn Tinh, Xã Sơn Lập, Xã Sơn Màu",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1770\",\"properties\":{\"matinhxa\":\"22.1784\",\"maxa\":1784},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Sơn Tây Thượng (xã)",
- "truocsn": "Xã Sơn Mùa, Xã Sơn Liên, Xã Sơn Bua",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1756\",\"properties\":{\"matinhxa\":\"22.1770\",\"maxa\":1770},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Sơn Thủy (xã)",
- "truocsn": "Xã Sơn Trung, Xã Sơn Hải, Xã Sơn Thủy",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1740\",\"properties\":{\"matinhxa\":\"22.1754\",\"maxa\":1754},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Sơn Tịnh (xã)",
- "truocsn": "Thị trấn Tịnh Hà, Xã Tịnh Bình, Xã Tịnh Sơn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1750\",\"properties\":{\"matinhxa\":\"22.1764\",\"maxa\":1764},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Tây Trà (xã)",
- "truocsn": "Xã Sơn Trà, Xã Trà Phong, Xã Trà Xinh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1758\",\"properties\":{\"matinhxa\":\"22.1772\",\"maxa\":1772},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Tây Trà Bồng (xã)",
- "truocsn": "Xã Hương Trà, Xã Trà Tây, Xã Trà Bùi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1761\",\"properties\":{\"matinhxa\":\"22.1775\",\"maxa\":1775},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Thanh Bồng (xã)",
- "truocsn": "Xã Trà Lâm, Xã Trà Hiệp, Xã Trà Thanh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1757\",\"properties\":{\"matinhxa\":\"22.1771\",\"maxa\":1771},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Thiện Tín (xã)",
- "truocsn": "Xã Hành Thiện, Xã Hành Tín Tây, Xã Hành Tín Đông",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1762\",\"properties\":{\"matinhxa\":\"22.1776\",\"maxa\":1776},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Thọ Phong (xã)",
- "truocsn": "Xã Tịnh Phong, Xã Tịnh Thọ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1751\",\"properties\":{\"matinhxa\":\"22.1765\",\"maxa\":1765},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tịnh Khê (xã)",
- "truocsn": "Xã Tịnh Kỳ, Xã Tịnh Châu, Xã Tịnh Long, Xã Tịnh Thiện, Xã Tịnh Khê",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1797\",\"properties\":{\"matinhxa\":\"22.1811\",\"maxa\":1811},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Trà Bồng (xã)",
- "truocsn": "Thị trấn Trà Xuân, Xã Trà Sơn, Xã Trà Thủy",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1752\",\"properties\":{\"matinhxa\":\"22.1766\",\"maxa\":1766},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Trà Câu (phường)",
- "truocsn": "Phường Phổ Văn, Phường Phổ Quang, Xã Phổ An, Xã Phổ Thuận",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1774\",\"properties\":{\"matinhxa\":\"22.1788\",\"maxa\":1788},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Trà Giang (xã)",
- "truocsn": "Xã Nghĩa Sơn, Xã Nghĩa Lâm, Xã Nghĩa Thắng",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1743\",\"properties\":{\"matinhxa\":\"22.1757\",\"maxa\":1757},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Trường Giang (xã)",
- "truocsn": "Xã Tịnh Giang, Xã Tịnh Đông, Xã Tịnh Minh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1748\",\"properties\":{\"matinhxa\":\"22.1762\",\"maxa\":1762},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Trương Quang Trọng (phường)",
- "truocsn": "Phường Trương Quang Trọng, Xã Tịnh Ấn Tây, Xã Tịnh Ấn Đông, Xã Tịnh An",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1798\",\"properties\":{\"matinhxa\":\"22.1812\",\"maxa\":1812},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tu Mơ Rông (xã)",
- "truocsn": "Xã Đăk Hà, Xã Tu Mơ Rông",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3161\",\"properties\":{\"matinhxa\":\"22.3177\",\"maxa\":3177},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Tư Nghĩa (xã)",
- "truocsn": "Thị trấn La Hà, Xã Nghĩa Trung, Xã Nghĩa Thương, Xã Nghĩa Hòa",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1768\",\"properties\":{\"matinhxa\":\"22.1782\",\"maxa\":1782},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vạn Tường (xã)",
- "truocsn": "Xã Bình Thuận, Xã Bình Đông, Xã Bình Trị, Xã Bình Hải, Xã Bình Hòa, Xã Bình Phước",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1738\",\"properties\":{\"matinhxa\":\"22.1752\",\"maxa\":1752},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vệ Giang (xã)",
- "truocsn": "Thị trấn Sông Vệ, Xã Nghĩa Hiệp, Xã Nghĩa Phương",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1766\",\"properties\":{\"matinhxa\":\"22.1780\",\"maxa\":1780},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Xốp (xã)",
- "truocsn": "Xã Đăk Choong, Xã Xốp",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.561\",\"properties\":{\"matinhxa\":\"22.563\",\"maxa\":563},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Ya Ly (xã)",
- "truocsn": "Xã Ya Xiêr, Xã Ya Tăng, Xã Ya Ly",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.490\",\"properties\":{\"matinhxa\":\"22.490\",\"maxa\":490},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Anh Dũng (xã)",
- "truocsn": "Xã Ma Nới, Xã Hòa Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1264\",\"properties\":{\"matinhxa\":\"23.1275\",\"maxa\":1275},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Ngòi (phường)",
- "truocsn": "Phường Ba Ngòi, Xã Cam Phước Đông",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1249\",\"properties\":{\"matinhxa\":\"23.1260\",\"maxa\":1260},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bác Ái (xã)",
- "truocsn": "Xã Phước Tiến, Xã Phước Thắng, Xã Phước Chính",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1260\",\"properties\":{\"matinhxa\":\"23.1271\",\"maxa\":1271},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bác Ái Đông (xã)",
- "truocsn": "Xã Phước Đại, Xã Phước Thành",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1261\",\"properties\":{\"matinhxa\":\"23.1272\",\"maxa\":1272},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bác Ái Tây (xã)",
- "truocsn": "Xã Phước Hòa, Xã Phước Tân, Xã Phước Bình",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1259\",\"properties\":{\"matinhxa\":\"23.1270\",\"maxa\":1270},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bắc Cam Ranh (phường)",
- "truocsn": "Phường Cam Nghĩa, Phường Cam Phúc Bắc, Xã Cam Thành Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1034\",\"properties\":{\"matinhxa\":\"23.1045\",\"maxa\":1045},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bắc Khánh Vĩnh (xã)",
- "truocsn": "Xã Khánh Bình, Xã Khánh Đông",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1029\",\"properties\":{\"matinhxa\":\"23.1040\",\"maxa\":1040},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bắc Nha Trang (phường)",
- "truocsn": "Phường Vĩnh Hòa, Phường Vĩnh Hải, Phường Vĩnh Phước, Phường Vĩnh Thọ, Xã Vĩnh Lương, Xã Vĩnh Phương",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1031\",\"properties\":{\"matinhxa\":\"23.1042\",\"maxa\":1042},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bắc Ninh Hòa (xã)",
- "truocsn": "Xã Ninh An, Xã Ninh Sơn, Xã Ninh Thọ",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1023\",\"properties\":{\"matinhxa\":\"23.1034\",\"maxa\":1034},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bảo An (phường)",
- "truocsn": "Phường Phước Mỹ, Phường Bảo An, Xã Thành Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1068\",\"properties\":{\"matinhxa\":\"23.1079\",\"maxa\":1079},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cà Ná (xã)",
- "truocsn": "Xã Phước Diêm, Xã Cà Ná",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1086\",\"properties\":{\"matinhxa\":\"23.1097\",\"maxa\":1097},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cam An (xã)",
- "truocsn": "Xã Cam Phước Tây, Xã Cam An Bắc, Xã Cam An Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1254\",\"properties\":{\"matinhxa\":\"23.1265\",\"maxa\":1265},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cam Hiệp (xã)",
- "truocsn": "Xã Sơn Tân, Xã Cam Hiệp Bắc, Xã Cam Hiệp Nam, Xã Cam Hòa, Xã Cam Tân, Xã Suối Tân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1253\",\"properties\":{\"matinhxa\":\"23.1264\",\"maxa\":1264},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cam Lâm (xã)",
- "truocsn": "Thị trấn Cam Đức, Xã Cam Hải Đông, Xã Cam Hải Tây, Xã Cam Thành Bắc, Xã Cam Hiệp Bắc, Xã Cam Hiệp Nam, Xã Cam Hòa, Xã Cam Tân, Xã Cam An Bắc, Xã Cam An Nam, Xã Suối Tân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1252\",\"properties\":{\"matinhxa\":\"23.1263\",\"maxa\":1263},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cam Linh (phường)",
- "truocsn": "Phường Cam Thuận, Phường Cam Lợi, Phường Cam Linh",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1250\",\"properties\":{\"matinhxa\":\"23.1261\",\"maxa\":1261},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cam Ranh (phường)",
- "truocsn": "Phường Cam Phú, Phường Cam Lộc, Phường Cam Phúc Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1248\",\"properties\":{\"matinhxa\":\"23.1259\",\"maxa\":1259},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Công Hải (xã)",
- "truocsn": "Xã Phước Chiến, Xã Công Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1267\",\"properties\":{\"matinhxa\":\"23.1278\",\"maxa\":1278},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đại Lãnh (xã)",
- "truocsn": "Xã Vạn Thạnh, Xã Vạn Thọ, Xã Đại Lãnh",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1005\",\"properties\":{\"matinhxa\":\"23.1016\",\"maxa\":1016},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Diên Điền (xã)",
- "truocsn": "Xã Diên Sơn, Xã Diên Phú, Xã Diên Điền",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1060\",\"properties\":{\"matinhxa\":\"23.1071\",\"maxa\":1071},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Diên Khánh (xã)",
- "truocsn": "Thị trấn Diên Khánh, Xã Diên An, Xã Diên Toàn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1057\",\"properties\":{\"matinhxa\":\"23.1068\",\"maxa\":1068},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Diên Lạc (xã)",
- "truocsn": "Xã Diên Thạnh, Xã Diên Lạc, Xã Diên Hòa",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1062\",\"properties\":{\"matinhxa\":\"23.1073\",\"maxa\":1073},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Diên Lâm (xã)",
- "truocsn": "Xã Xuân Đồng, Xã Diên Lâm",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1058\",\"properties\":{\"matinhxa\":\"23.1069\",\"maxa\":1069},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Diên Thọ (xã)",
- "truocsn": "Xã Diên Tân, Xã Diên Phước, Xã Diên Thọ",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1061\",\"properties\":{\"matinhxa\":\"23.1072\",\"maxa\":1072},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đô Vinh (phường)",
- "truocsn": "Phường Đô Vinh, Xã Nhơn Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1067\",\"properties\":{\"matinhxa\":\"23.1078\",\"maxa\":1078},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đông Hải (phường)",
- "truocsn": "Phường Mỹ Bình, Phường Mỹ Đông, Phường Mỹ Hải, Phường Đông Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1258\",\"properties\":{\"matinhxa\":\"23.1269\",\"maxa\":1269},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đông Khánh Sơn (xã)",
- "truocsn": "Xã Sơn Trung, Xã Ba Cụm Bắc, Xã Ba Cụm Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1066\",\"properties\":{\"matinhxa\":\"23.1077\",\"maxa\":1077},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đông Ninh Hòa (phường)",
- "truocsn": "Phường Ninh Diêm, Phường Ninh Hải, Phường Ninh Thủy, Xã Ninh Phước",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1026\",\"properties\":{\"matinhxa\":\"23.1037\",\"maxa\":1037},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hòa Thắng (phường)",
- "truocsn": "Phường Ninh Giang, Phường Ninh Hà, Xã Ninh Phú",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1255\",\"properties\":{\"matinhxa\":\"23.1266\",\"maxa\":1266},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hòa Trí (xã)",
- "truocsn": "Xã Ninh Thượng, Xã Ninh Trung, Xã Ninh Thân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1025\",\"properties\":{\"matinhxa\":\"23.1036\",\"maxa\":1036},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Khánh Sơn (xã)",
- "truocsn": "Thị trấn Tô Hạp, Xã Sơn Hiệp, Xã Sơn Bình",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1064\",\"properties\":{\"matinhxa\":\"23.1075\",\"maxa\":1075},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Khánh Vĩnh (xã)",
- "truocsn": "Thị trấn Khánh Vĩnh, Xã Sông Cầu, Xã Khánh Phú",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1055\",\"properties\":{\"matinhxa\":\"23.1066\",\"maxa\":1066},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Lâm Sơn (xã)",
- "truocsn": "Xã Lương Sơn, Xã Lâm Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1084\",\"properties\":{\"matinhxa\":\"23.1095\",\"maxa\":1095},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Mỹ Sơn (xã)",
- "truocsn": "Xã Phước Trung, Xã Mỹ Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1263\",\"properties\":{\"matinhxa\":\"23.1274\",\"maxa\":1274},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Nam Cam Ranh (xã)",
- "truocsn": "Xã Cam Lập, Xã Cam Bình, Xã Cam Thịnh Đông, Xã Cam Thịnh Tây",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1049\",\"properties\":{\"matinhxa\":\"23.1060\",\"maxa\":1060},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Nam Khánh Vĩnh (xã)",
- "truocsn": "Xã Cầu Bà, Xã Khánh Thành, Xã Liên Sang, Xã Sơn Thái",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1056\",\"properties\":{\"matinhxa\":\"23.1067\",\"maxa\":1067},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Nam Nha Trang (phường)",
- "truocsn": "Phường Phước Hải, Phường Phước Long, Phường Vĩnh Trường, Xã Vĩnh Thái, Xã Phước Đồng",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1033\",\"properties\":{\"matinhxa\":\"23.1044\",\"maxa\":1044},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Nam Ninh Hòa (xã)",
- "truocsn": "Xã Ninh Lộc, Xã Ninh Ích, Xã Ninh Hưng, Xã Ninh Tân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1256\",\"properties\":{\"matinhxa\":\"23.1267\",\"maxa\":1267},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Nha Trang (phường)",
- "truocsn": "Phường Vạn Thạnh, Phường Lộc Thọ, Phường Vĩnh Nguyên, Phường Tân Tiến, Phường Phước Hòa",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3290\",\"properties\":{\"matinhxa\":\"23.3306\",\"maxa\":3306},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Ninh Chử (phường)",
- "truocsn": "Phường Văn Hải, Thị trấn Khánh Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1266\",\"properties\":{\"matinhxa\":\"23.1277\",\"maxa\":1277},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Ninh Hải (xã)",
- "truocsn": "Xã Phương Hải, Xã Tri Hải, Xã Bắc Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1077\",\"properties\":{\"matinhxa\":\"23.1088\",\"maxa\":1088},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Ninh Hòa (phường)",
- "truocsn": "Phường Ninh Hiệp, Phường Ninh Đa, Xã Ninh Đông, Xã Ninh Phụng",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1020\",\"properties\":{\"matinhxa\":\"23.1031\",\"maxa\":1031},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Ninh Phước (xã)",
- "truocsn": "Thị trấn Phước Dân, Xã Phước Thuận, Xã Phước Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1079\",\"properties\":{\"matinhxa\":\"23.1090\",\"maxa\":1090},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Ninh Sơn (xã)",
- "truocsn": "Thị trấn Tân Sơn, Xã Quảng Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1262\",\"properties\":{\"matinhxa\":\"23.1273\",\"maxa\":1273},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Phan Rang (phường)",
- "truocsn": "Phường Kinh Dinh, Phường Phủ Hà, Phường Đài Sơn, Phường Đạo Long",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1257\",\"properties\":{\"matinhxa\":\"23.1268\",\"maxa\":1268},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Phước Dinh (xã)",
- "truocsn": "Xã An Hải, Xã Phước Dinh, Phường Đông Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1087\",\"properties\":{\"matinhxa\":\"23.1098\",\"maxa\":1098},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Phước Hà (xã)",
- "truocsn": "Xã Nhị Hà, Xã Phước Hà",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1081\",\"properties\":{\"matinhxa\":\"23.1092\",\"maxa\":1092},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Phước Hậu (xã)",
- "truocsn": "Xã Phước Vinh, Xã Phước Sơn, Xã Phước Hậu",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1080\",\"properties\":{\"matinhxa\":\"23.1091\",\"maxa\":1091},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Phước Hữu (xã)",
- "truocsn": "Xã Phước Thái, Xã Phước Hữu",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1083\",\"properties\":{\"matinhxa\":\"23.1094\",\"maxa\":1094},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Suối Dầu (xã)",
- "truocsn": "Xã Suối Cát, Xã Cam Hòa, Xã Cam Tân, Xã Suối Tân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1251\",\"properties\":{\"matinhxa\":\"23.1262\",\"maxa\":1262},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Suối Hiệp (xã)",
- "truocsn": "Xã Suối Tiên, Xã Bình Lộc, Xã Suối Hiệp",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1063\",\"properties\":{\"matinhxa\":\"23.1074\",\"maxa\":1074},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Tân Định (xã)",
- "truocsn": "Xã Ninh Xuân, Xã Ninh Quang, Xã Ninh Bình",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1027\",\"properties\":{\"matinhxa\":\"23.1038\",\"maxa\":1038},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Tây Khánh Sơn (xã)",
- "truocsn": "Xã Sơn Lâm, Xã Thành Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1065\",\"properties\":{\"matinhxa\":\"23.1076\",\"maxa\":1076},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Tây Khánh Vĩnh (xã)",
- "truocsn": "Xã Giang Ly, Xã Khánh Thượng, Xã Khánh Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1030\",\"properties\":{\"matinhxa\":\"23.1041\",\"maxa\":1041},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Tây Nha Trang (phường)",
- "truocsn": "Phường Ngọc Hiệp, Phường Phương Sài, Xã Vĩnh Ngọc, Xã Vĩnh Thạnh, Xã Vĩnh Hiệp, Xã Vĩnh Trung",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1032\",\"properties\":{\"matinhxa\":\"23.1043\",\"maxa\":1043},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Tây Ninh Hòa (xã)",
- "truocsn": "Xã Ninh Tây, Xã Ninh Sim",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1024\",\"properties\":{\"matinhxa\":\"23.1035\",\"maxa\":1035},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Thuận Bắc (xã)",
- "truocsn": "Xã Bắc Phong, Xã Phước Kháng, Xã Lợi Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1268\",\"properties\":{\"matinhxa\":\"23.1279\",\"maxa\":1279},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Thuận Nam (xã)",
- "truocsn": "Xã Phước Nam, Xã Phước Ninh, Xã Phước Minh",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1085\",\"properties\":{\"matinhxa\":\"23.1096\",\"maxa\":1096},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Trung Khánh Vĩnh (xã)",
- "truocsn": "Xã Khánh Trung, Xã Khánh Hiệp",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1028\",\"properties\":{\"matinhxa\":\"23.1039\",\"maxa\":1039},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Trường Sa (đặc khu)",
- "truocsn": "Thị trấn Trường Sa, Xã Song Tử Tây, Xã Sinh Tồn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3305\",\"properties\":{\"matinhxa\":\"23.3321\",\"maxa\":3321},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Tu Bông (xã)",
- "truocsn": "Xã Vạn Khánh, Xã Vạn Long, Xã Vạn Phước",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1003\",\"properties\":{\"matinhxa\":\"23.1014\",\"maxa\":1014},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Vạn Hưng (xã)",
- "truocsn": "Xã Xuân Sơn, Xã Vạn Hưng",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1007\",\"properties\":{\"matinhxa\":\"23.1018\",\"maxa\":1018},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Vạn Ninh (xã)",
- "truocsn": "Thị trấn Vạn Giã, Xã Vạn Phú, Xã Vạn Lương",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1004\",\"properties\":{\"matinhxa\":\"23.1015\",\"maxa\":1015},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Vạn Thắng (xã)",
- "truocsn": "Xã Vạn Bình, Xã Vạn Thắng",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1006\",\"properties\":{\"matinhxa\":\"23.1017\",\"maxa\":1017},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Vĩnh Hải (xã)",
- "truocsn": "Xã Nhơn Hải, Xã Thanh Hải, Xã Vĩnh Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1076\",\"properties\":{\"matinhxa\":\"23.1087\",\"maxa\":1087},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Xuân Hải (xã)",
- "truocsn": "Xã Hộ Hải, Xã Tân Hải, Xã Xuân Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1078\",\"properties\":{\"matinhxa\":\"23.1089\",\"maxa\":1089},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Al Bá (xã)",
- "truocsn": "Xã Ayun (huyện Chư Sê), Xã Kông Htok, Xã Al Bá",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2957\",\"properties\":{\"matinhxa\":\"24.2973\",\"maxa\":2973},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Bình (phường)",
- "truocsn": "Phường An Bình, Xã Tân An, Xã Cư An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3040\",\"properties\":{\"matinhxa\":\"24.3056\",\"maxa\":3056},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ân Hảo (xã)",
- "truocsn": "Xã Ân Hảo Tây, Xã Ân Hảo Đông, Xã Ân Mỹ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2984\",\"properties\":{\"matinhxa\":\"24.3000\",\"maxa\":3000},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Hòa (xã)",
- "truocsn": "Xã An Hòa, Xã An Quang, Xã An Nghĩa",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2976\",\"properties\":{\"matinhxa\":\"24.2992\",\"maxa\":2992},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Khê (phường)",
- "truocsn": "Phường Ngô Mây, Phường Tây Sơn (thị xã An Khê), Phường An Phú, Phường An Phước, Phường An Tân, Xã Thành An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3041\",\"properties\":{\"matinhxa\":\"24.3057\",\"maxa\":3057},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Lão (xã)",
- "truocsn": "Thị trấn An Lão, Xã An Tân, Xã An Hưng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2973\",\"properties\":{\"matinhxa\":\"24.2989\",\"maxa\":2989},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "An Lương (xã)",
- "truocsn": "Xã Mỹ Chánh, Xã Mỹ Thành, Xã Mỹ Cát",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2994\",\"properties\":{\"matinhxa\":\"24.3010\",\"maxa\":3010},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "An Nhơn (phường)",
- "truocsn": "Phường Đập Đá, Xã Nhơn Mỹ, Xã Nhơn Hậu",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3016\",\"properties\":{\"matinhxa\":\"24.3032\",\"maxa\":3032},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "An Nhơn Bắc (phường)",
- "truocsn": "Phường Nhơn Thành, Xã Nhơn Phong, Xã Nhơn Hạnh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3017\",\"properties\":{\"matinhxa\":\"24.3033\",\"maxa\":3033},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "An Nhơn Đông (phường)",
- "truocsn": "Phường Nhơn Hưng, Xã Nhơn An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3018\",\"properties\":{\"matinhxa\":\"24.3034\",\"maxa\":3034},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "An Nhơn Nam (phường)",
- "truocsn": "Phường Nhơn Hòa, Xã Nhơn Thọ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3028\",\"properties\":{\"matinhxa\":\"24.3044\",\"maxa\":3044},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "An Nhơn Tây (xã)",
- "truocsn": "Xã Nhơn Lộc, Xã Nhơn Tân",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3029\",\"properties\":{\"matinhxa\":\"24.3045\",\"maxa\":3045},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "An Phú (phường)",
- "truocsn": "Phường Thắng Lợi, Xã Chư Á, Xã An Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3050\",\"properties\":{\"matinhxa\":\"24.3066\",\"maxa\":3066},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "An Toàn (xã)",
- "truocsn": "Xã An Toàn, Xã An Nghĩa (phần còn lại sau khi sáp nhập vào xã An Hòa)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2975\",\"properties\":{\"matinhxa\":\"24.2991\",\"maxa\":2991},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Ân Tường (xã)",
- "truocsn": "Xã Ân Tường Tây, Xã Ân Hữu, Xã Đak Mang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2988\",\"properties\":{\"matinhxa\":\"24.3004\",\"maxa\":3004},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "An Vinh (xã)",
- "truocsn": "Xã An Trung (huyện An Lão), Xã An Dũng, Xã An Vinh",
- "provinceName": "tỉnh Gia Lai"
- },
- {
- "stt": "17",
- "ten": "Ayun (xã)",
- "truocsn": "Xã Đak Jơ Ta, Xã Ayun (huyện Mang Yang)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3032\",\"properties\":{\"matinhxa\":\"24.3048\",\"maxa\":3048},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Ayun Pa (phường)",
- "truocsn": "Phường Đoàn Kết, Phường Sông Bờ, Phường Cheo Reo, Phường Hòa Bình",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2964\",\"properties\":{\"matinhxa\":\"24.2980\",\"maxa\":2980},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Bàu Cạn (xã)",
- "truocsn": "Xã Thăng Hưng, Xã Bình Giáo, Xã Bàu Cạn",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2946\",\"properties\":{\"matinhxa\":\"24.2962\",\"maxa\":2962},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Biển Hồ (xã)",
- "truocsn": "Xã Nghĩa Hưng, Xã Chư Đang Ya, Xã Hà Bầu, Xã Biển Hồ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3049\",\"properties\":{\"matinhxa\":\"24.3065\",\"maxa\":3065},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Tây Vinh, Xã Tây Bình, Xã Bình Hòa, Xã Bình Thành",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3001\",\"properties\":{\"matinhxa\":\"24.3017\",\"maxa\":3017},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Bình Định (phường)",
- "truocsn": "Phường Bình Định, Xã Nhơn Khánh, Xã Nhơn Phúc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3015\",\"properties\":{\"matinhxa\":\"24.3031\",\"maxa\":3031},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Bình Dương (xã)",
- "truocsn": "Thị trấn Bình Dương, Xã Mỹ Lợi, Xã Mỹ Phong",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2990\",\"properties\":{\"matinhxa\":\"24.3006\",\"maxa\":3006},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Bình Hiệp (xã)",
- "truocsn": "Xã Bình Thuận, Xã Bình Tân, Xã Tây An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2999\",\"properties\":{\"matinhxa\":\"24.3015\",\"maxa\":3015},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Bình Khê (xã)",
- "truocsn": "Xã Tây Giang, Xã Tây Thuận",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3000\",\"properties\":{\"matinhxa\":\"24.3016\",\"maxa\":3016},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Bình Phú (xã)",
- "truocsn": "Xã Vĩnh An, Xã Bình Tường, Xã Tây Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3002\",\"properties\":{\"matinhxa\":\"24.3018\",\"maxa\":3018},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Bờ Ngoong (xã)",
- "truocsn": "Xã Bar Măih, Xã Ia Tiêm, Xã Chư Pơng, Xã Bờ Ngoong",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2959\",\"properties\":{\"matinhxa\":\"24.2975\",\"maxa\":2975},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Bồng Sơn (phường)",
- "truocsn": "Phường Hoài Đức, Phường Bồng Sơn",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2978\",\"properties\":{\"matinhxa\":\"24.2994\",\"maxa\":2994},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Canh Liên (xã)",
- "truocsn": "Xã Canh Liên (phần còn lại sau khi sáp nhập vào xã Canh Vinh)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3025\",\"properties\":{\"matinhxa\":\"24.3041\",\"maxa\":3041},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Canh Vinh (xã)",
- "truocsn": "Xã Canh Vinh, Xã Canh Hiển, Xã Canh Liên, Xã Canh Hiệp (phần còn lại sau khi sáp nhập vào xã Vân Canh)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3026\",\"properties\":{\"matinhxa\":\"24.3042\",\"maxa\":3042},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Cát Tiến (xã)",
- "truocsn": "Thị trấn Cát Tiến, Xã Cát Thành, Xã Cát Hải",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3009\",\"properties\":{\"matinhxa\":\"24.3025\",\"maxa\":3025},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Chơ Long (xã)",
- "truocsn": "Xã Đăk Pơ Pho, Xã Chơ GLong",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3030\",\"properties\":{\"matinhxa\":\"24.3046\",\"maxa\":3046},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Chư A Thai (xã)",
- "truocsn": "Xã Ayun Hạ, Xã Ia Ake, Xã Chư A Thai",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2963\",\"properties\":{\"matinhxa\":\"24.2979\",\"maxa\":2979},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Chư Krey (xã)",
- "truocsn": "Xã An Trung (huyện Kông Chro), Xã Chư Krey",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3037\",\"properties\":{\"matinhxa\":\"24.3053\",\"maxa\":3053},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Chư Păh (xã)",
- "truocsn": "Thị trấn Phú Hòa, Xã Nghĩa Hòa, Xã Hòa Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2954\",\"properties\":{\"matinhxa\":\"24.2970\",\"maxa\":2970},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Chư Prông (xã)",
- "truocsn": "Thị trấn Chư Prông, Xã Ia Phìn, Xã Ia Kly, Xã Ia Drang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2931\",\"properties\":{\"matinhxa\":\"24.2947\",\"maxa\":2947},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Chư Pưh (xã)",
- "truocsn": "Thị trấn Nhơn Hòa, Xã Chư Don, Xã Ia Phang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2956\",\"properties\":{\"matinhxa\":\"24.2972\",\"maxa\":2972},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Chư Sê (xã)",
- "truocsn": "Thị trấn Chư Sê, Xã Dun, Xã Ia Blang, Xã Ia Pal, Xã Ia Glai",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2955\",\"properties\":{\"matinhxa\":\"24.2971\",\"maxa\":2971},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Cửu An (xã)",
- "truocsn": "Xã Tú An, Xã Xuân An, Xã Song An, Xã Cửu An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3042\",\"properties\":{\"matinhxa\":\"24.3058\",\"maxa\":3058},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Đak Đoa (xã)",
- "truocsn": "Thị trấn Đak Đoa, Xã Tân Bình, Xã Glar",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3056\",\"properties\":{\"matinhxa\":\"24.3072\",\"maxa\":3072},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Đak Pơ (xã)",
- "truocsn": "Thị trấn Đak Pơ, Xã Hà Tam, Xã An Thành, Xã Yang Bắc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3039\",\"properties\":{\"matinhxa\":\"24.3055\",\"maxa\":3055},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Đak Rong (xã)",
- "truocsn": "Xã Kon Pne, Xã Đak Rong",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.70\",\"properties\":{\"matinhxa\":\"24.70\",\"maxa\":70},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Đak Sơmei (xã)",
- "truocsn": "Xã Hà Đông, Xã Đak Sơmei",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3057\",\"properties\":{\"matinhxa\":\"24.3073\",\"maxa\":3073},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Đăk Song (xã)",
- "truocsn": "Xã Đăk Pling, Xã Đăk Song",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3043\",\"properties\":{\"matinhxa\":\"24.3059\",\"maxa\":3059},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Đề Gi (xã)",
- "truocsn": "Thị trấn Cát Khánh, Xã Cát Minh, Xã Cát Tài",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3005\",\"properties\":{\"matinhxa\":\"24.3021\",\"maxa\":3021},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Diên Hồng (phường)",
- "truocsn": "Phường Yên Đỗ, Phường Ia Kring, Phường Diên Hồng, Xã Diên Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3046\",\"properties\":{\"matinhxa\":\"24.3062\",\"maxa\":3062},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Đức Cơ (xã)",
- "truocsn": "Thị trấn Chư Ty, Xã Ia Kriêng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2941\",\"properties\":{\"matinhxa\":\"24.2957\",\"maxa\":2957},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Gào (xã)",
- "truocsn": "Xã Ia Kênh, Xã Ia Pếch, Xã Gào",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2953\",\"properties\":{\"matinhxa\":\"24.2969\",\"maxa\":2969},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Hòa Hội (xã)",
- "truocsn": "Xã Cát Hanh, Xã Cát Hiệp",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3006\",\"properties\":{\"matinhxa\":\"24.3022\",\"maxa\":3022},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Hoài Ân (xã)",
- "truocsn": "Thị trấn Tăng Bạt Hổ, Xã Ân Phong, Xã Ân Đức, Xã Ân Tường Đông",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2986\",\"properties\":{\"matinhxa\":\"24.3002\",\"maxa\":3002},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Hoài Nhơn (phường)",
- "truocsn": "Phường Hoài Thanh, Phường Tam Quan Nam, Phường Hoài Thanh Tây",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2981\",\"properties\":{\"matinhxa\":\"24.2997\",\"maxa\":2997},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Hoài Nhơn Bắc (phường)",
- "truocsn": "Phường Tam Quan Bắc, Xã Hoài Sơn, Xã Hoài Châu Bắc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2979\",\"properties\":{\"matinhxa\":\"24.2995\",\"maxa\":2995},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Hoài Nhơn Đông (phường)",
- "truocsn": "Phường Hoài Hương, Xã Hoài Hải, Xã Hoài Mỹ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2982\",\"properties\":{\"matinhxa\":\"24.2998\",\"maxa\":2998},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Hoài Nhơn Nam (phường)",
- "truocsn": "Phường Hoài Tân, Phường Hoài Xuân",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2983\",\"properties\":{\"matinhxa\":\"24.2999\",\"maxa\":2999},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Hoài Nhơn Tây (phường)",
- "truocsn": "Phường Hoài Hảo, Xã Hoài Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2980\",\"properties\":{\"matinhxa\":\"24.2996\",\"maxa\":2996},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Hội Phú (phường)",
- "truocsn": "Phường Trà Bá, Phường Chi Lăng, Phường Hội Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3047\",\"properties\":{\"matinhxa\":\"24.3063\",\"maxa\":3063},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Hội Sơn (xã)",
- "truocsn": "Xã Cát Lâm, Xã Cát Sơn",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3004\",\"properties\":{\"matinhxa\":\"24.3020\",\"maxa\":3020},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Hra (xã)",
- "truocsn": "Xã Đak Ta Ley, Xã Hra",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3033\",\"properties\":{\"matinhxa\":\"24.3049\",\"maxa\":3049},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Ia Băng (xã)",
- "truocsn": "Xã Ia Băng (huyện Đak Đoa), Xã Adơk, Xã Ia Pết",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3060\",\"properties\":{\"matinhxa\":\"24.3076\",\"maxa\":3076},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Ia Boòng (xã)",
- "truocsn": "Xã Ia O (huyện Chư Prông), Xã Ia Me, Xã Ia Boòng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2933\",\"properties\":{\"matinhxa\":\"24.2949\",\"maxa\":2949},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Ia Chia (xã)",
- "truocsn": "xã Ia Chia (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2940\",\"properties\":{\"matinhxa\":\"24.2956\",\"maxa\":2956},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Ia Dơk (xã)",
- "truocsn": "Xã Ia Kla, Xã Ia Dơk",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2942\",\"properties\":{\"matinhxa\":\"24.2958\",\"maxa\":2958},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Ia Dom (xã)",
- "truocsn": "xã Ia Dom (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2944\",\"properties\":{\"matinhxa\":\"24.2960\",\"maxa\":2960},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Ia Dreh (xã)",
- "truocsn": "Xã Ia Rmok, Xã Krông Năng, Xã Ia Dreh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2971\",\"properties\":{\"matinhxa\":\"24.2987\",\"maxa\":2987},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Ia Grai (xã)",
- "truocsn": "Thị trấn Ia Kha, Xã Ia Bă, Xã Ia Grăng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2937\",\"properties\":{\"matinhxa\":\"24.2953\",\"maxa\":2953},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Ia Hiao (xã)",
- "truocsn": "Xã Chrôh Pơnan, Xã Ia Peng, Xã Ia Hiao",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2965\",\"properties\":{\"matinhxa\":\"24.2981\",\"maxa\":2981},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Ia Hrú (xã)",
- "truocsn": "Xã Ia Dreng, Xã Ia Rong, Xã HBông, Xã Ia Hrú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2958\",\"properties\":{\"matinhxa\":\"24.2974\",\"maxa\":2974},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Ia Hrung (xã)",
- "truocsn": "Xã Ia Sao (huyện Ia Grai), Xã Ia Yok, Xã Ia Dêr, Xã Ia Hrung",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2945\",\"properties\":{\"matinhxa\":\"24.2961\",\"maxa\":2961},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Ia Khươl (xã)",
- "truocsn": "Xã Đăk Tơ Ver, Xã Hà Tây, Xã Ia Khươl",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3061\",\"properties\":{\"matinhxa\":\"24.3077\",\"maxa\":3077},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Ia Ko (xã)",
- "truocsn": "Xã Ia Hlốp, Xã Ia Hla, Xã Ia Ko",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2936\",\"properties\":{\"matinhxa\":\"24.2952\",\"maxa\":2952},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Ia Krái (xã)",
- "truocsn": "Xã Ia Tô, Xã Ia Khai, Xã Ia Krái",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2938\",\"properties\":{\"matinhxa\":\"24.2954\",\"maxa\":2954},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Ia Krêl (xã)",
- "truocsn": "Xã Ia Lang, Xã Ia Din, Xã Ia Krêl",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2943\",\"properties\":{\"matinhxa\":\"24.2959\",\"maxa\":2959},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Ia Lâu (xã)",
- "truocsn": "Xã Ia Piơr, Xã Ia Lâu",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2947\",\"properties\":{\"matinhxa\":\"24.2963\",\"maxa\":2963},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Ia Le (xã)",
- "truocsn": "Xã Ia Blứ, Xã Ia Le",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2949\",\"properties\":{\"matinhxa\":\"24.2965\",\"maxa\":2965},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Ia Ly (xã)",
- "truocsn": "Thị trấn Ia Ly, Xã Ia Mơ Nông, Xã Ia Kreng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2950\",\"properties\":{\"matinhxa\":\"24.2966\",\"maxa\":2966},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Ia Mơ (xã)",
- "truocsn": "xã Ia Mơ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2948\",\"properties\":{\"matinhxa\":\"24.2964\",\"maxa\":2964},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Ia Nan (xã)",
- "truocsn": "xã Ia Nan (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2930\",\"properties\":{\"matinhxa\":\"24.2946\",\"maxa\":2946},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Ia O (xã)",
- "truocsn": "xã Ia O (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2939\",\"properties\":{\"matinhxa\":\"24.2955\",\"maxa\":2955},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Ia Pa (xã)",
- "truocsn": "Xã Ia Mrơn, Xã Kim Tân, Xã Ia Trôk",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2961\",\"properties\":{\"matinhxa\":\"24.2977\",\"maxa\":2977},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Ia Phí (xã)",
- "truocsn": "Xã Ia Ka, Xã Ia Nhin, Xã Ia Phí",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2951\",\"properties\":{\"matinhxa\":\"24.2967\",\"maxa\":2967},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Ia Pia (xã)",
- "truocsn": "Xã Ia Ga, Xã Ia Vê, Xã Ia Pia",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2935\",\"properties\":{\"matinhxa\":\"24.2951\",\"maxa\":2951},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Ia Pnôn (xã)",
- "truocsn": "xã Ia Pnôn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2929\",\"properties\":{\"matinhxa\":\"24.2945\",\"maxa\":2945},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Ia Púch (xã)",
- "truocsn": "xã Ia Púch (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2934\",\"properties\":{\"matinhxa\":\"24.2950\",\"maxa\":2950},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Ia Rbol (xã)",
- "truocsn": "Xã Chư Băh, Xã Ia Rbol",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2966\",\"properties\":{\"matinhxa\":\"24.2982\",\"maxa\":2982},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Ia Rsai (xã)",
- "truocsn": "Xã Chư RCăm, Xã Chư Gu, Xã Ia Rsai",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2968\",\"properties\":{\"matinhxa\":\"24.2984\",\"maxa\":2984},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Ia Sao (xã)",
- "truocsn": "Xã Ia Sao (thị xã Ayun Pa), Xã Ia Rtô",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2967\",\"properties\":{\"matinhxa\":\"24.2983\",\"maxa\":2983},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Ia Tôr (xã)",
- "truocsn": "Xã Ia Băng (huyện Chư Prông), Xã Ia Bang, Xã Ia Tôr",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2932\",\"properties\":{\"matinhxa\":\"24.2948\",\"maxa\":2948},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Ia Tul (xã)",
- "truocsn": "Xã Chư Mố, Xã Ia Broăi, Xã Ia Kdăm, Xã Ia Tul",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2969\",\"properties\":{\"matinhxa\":\"24.2985\",\"maxa\":2985},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Kbang (xã)",
- "truocsn": "Thị trấn Kbang, Xã Lơ Ku, Xã Đak Smar",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3051\",\"properties\":{\"matinhxa\":\"24.3067\",\"maxa\":3067},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "KDang (xã)",
- "truocsn": "Xã Hnol, Xã Trang, Xã KDang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3059\",\"properties\":{\"matinhxa\":\"24.3075\",\"maxa\":3075},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Kim Sơn (xã)",
- "truocsn": "Xã Ân Nghĩa, Xã Bok Tới",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2987\",\"properties\":{\"matinhxa\":\"24.3003\",\"maxa\":3003},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Kon Chiêng (xã)",
- "truocsn": "Xã Đak Trôi, Xã Kon Chiêng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3035\",\"properties\":{\"matinhxa\":\"24.3051\",\"maxa\":3051},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Kon Gang (xã)",
- "truocsn": "Xã Đak Krong, Xã Hneng, Xã Nam Yang, Xã Kon Gang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3058\",\"properties\":{\"matinhxa\":\"24.3074\",\"maxa\":3074},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Kông Bơ La (xã)",
- "truocsn": "Xã Đông, Xã Nghĩa An, Xã Kông Bơ La",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3055\",\"properties\":{\"matinhxa\":\"24.3071\",\"maxa\":3071},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Kông Chro (xã)",
- "truocsn": "Thị trấn Kông Chro, Xã Yang Trung, Xã Yang Nam",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3036\",\"properties\":{\"matinhxa\":\"24.3052\",\"maxa\":3052},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Krong (xã)",
- "truocsn": "xã Krong (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3053\",\"properties\":{\"matinhxa\":\"24.3069\",\"maxa\":3069},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Lơ Pang (xã)",
- "truocsn": "Xã Đê Ar, Xã Kon Thụp, Xã Lơ Pang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3034\",\"properties\":{\"matinhxa\":\"24.3050\",\"maxa\":3050},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Mang Yang (xã)",
- "truocsn": "Thị trấn Kon Dơng, Xã Đăk Yă, Xã Đak Djrăng, Xã Hải Yang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3031\",\"properties\":{\"matinhxa\":\"24.3047\",\"maxa\":3047},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Ngô Mây (xã)",
- "truocsn": "Xã Cát Hưng, Xã Cát Thắng, Xã Cát Chánh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3007\",\"properties\":{\"matinhxa\":\"24.3023\",\"maxa\":3023},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Nhơn Châu (xã)",
- "truocsn": "xã Nhơn Châu (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3282\",\"properties\":{\"matinhxa\":\"24.3298\",\"maxa\":3298},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Phù Cát (xã)",
- "truocsn": "Thị trấn Ngô Mây, Xã Cát Trinh, Xã Cát Tân",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3003\",\"properties\":{\"matinhxa\":\"24.3019\",\"maxa\":3019},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Phù Mỹ (xã)",
- "truocsn": "Thị trấn Phù Mỹ, Xã Mỹ Quang, Xã Mỹ Chánh Tây",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3011\",\"properties\":{\"matinhxa\":\"24.3027\",\"maxa\":3027},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Phù Mỹ Bắc (xã)",
- "truocsn": "Xã Mỹ Đức, Xã Mỹ Châu, Xã Mỹ Lộc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2991\",\"properties\":{\"matinhxa\":\"24.3007\",\"maxa\":3007},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Phù Mỹ Đông (xã)",
- "truocsn": "Xã Mỹ An, Xã Mỹ Thọ, Xã Mỹ Thắng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2993\",\"properties\":{\"matinhxa\":\"24.3009\",\"maxa\":3009},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Phù Mỹ Nam (xã)",
- "truocsn": "Xã Mỹ Tài, Xã Mỹ Hiệp",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2989\",\"properties\":{\"matinhxa\":\"24.3005\",\"maxa\":3005},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Phù Mỹ Tây (xã)",
- "truocsn": "Xã Mỹ Trinh, Xã Mỹ Hòa",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2992\",\"properties\":{\"matinhxa\":\"24.3008\",\"maxa\":3008},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Phú Thiện (xã)",
- "truocsn": "Thị trấn Phú Thiện, Xã Ia Sol, Xã Ia Piar, Xã Ia Yeng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2962\",\"properties\":{\"matinhxa\":\"24.2978\",\"maxa\":2978},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Phú Túc (xã)",
- "truocsn": "Thị trấn Phú Túc, Xã Phú Cần, Xã Chư Ngọc, Xã Ia Mlah, Xã Đất Bằng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2970\",\"properties\":{\"matinhxa\":\"24.2986\",\"maxa\":2986},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Pleiku (phường)",
- "truocsn": "Phường Tây Sơn (thành phố Pleiku), Phường Hội Thương, Phường Hoa Lư, Phường Phù Đổng, Xã Trà Đa",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2952\",\"properties\":{\"matinhxa\":\"24.2968\",\"maxa\":2968},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Pờ Tó (xã)",
- "truocsn": "Xã Chư Răng, Xã Pờ Tó",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2960\",\"properties\":{\"matinhxa\":\"24.2976\",\"maxa\":2976},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Quy Nhơn (phường)",
- "truocsn": "Phường Đống Đa (thành phố Quy Nhơn), Phường Hải Cảng, Phường Thị Nại, Phường Trần Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3013\",\"properties\":{\"matinhxa\":\"24.3029\",\"maxa\":3029},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Quy Nhơn Bắc (phường)",
- "truocsn": "Phường Trần Quang Diệu, Phường Nhơn Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3012\",\"properties\":{\"matinhxa\":\"24.3028\",\"maxa\":3028},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Quy Nhơn Đông (phường)",
- "truocsn": "Phường Nhơn Bình, Xã Nhơn Hội, Xã Nhơn Lý, Xã Nhơn Hải",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3014\",\"properties\":{\"matinhxa\":\"24.3030\",\"maxa\":3030},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Quy Nhơn Nam (phường)",
- "truocsn": "Phường Ngô Mây (thành phố Quy Nhơn), Phường Nguyễn Văn Cừ, Phường Quang Trung, Phường Ghềnh Ráng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3027\",\"properties\":{\"matinhxa\":\"24.3043\",\"maxa\":3043},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Quy Nhơn Tây (phường)",
- "truocsn": "Phường Bùi Thị Xuân, Xã Phước Mỹ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3023\",\"properties\":{\"matinhxa\":\"24.3039\",\"maxa\":3039},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Sơn Lang (xã)",
- "truocsn": "Xã Sơ Pai, Xã Sơn Lang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3052\",\"properties\":{\"matinhxa\":\"24.3068\",\"maxa\":3068},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "SRó (xã)",
- "truocsn": "Xã Đăk Kơ Ning, Xã SRó",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3045\",\"properties\":{\"matinhxa\":\"24.3061\",\"maxa\":3061},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Tam Quan (phường)",
- "truocsn": "Phường Tam Quan, Xã Hoài Châu",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2977\",\"properties\":{\"matinhxa\":\"24.2993\",\"maxa\":2993},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Tây Sơn (xã)",
- "truocsn": "Thị trấn Phú Phong, Xã Tây Xuân, Xã Bình Nghi",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2998\",\"properties\":{\"matinhxa\":\"24.3014\",\"maxa\":3014},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Thống Nhất (phường)",
- "truocsn": "Phường Đống Đa (thành phố Pleiku), Phường Yên Thế, Phường Thống Nhất",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3048\",\"properties\":{\"matinhxa\":\"24.3064\",\"maxa\":3064},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Tơ Tung (xã)",
- "truocsn": "Xã Kông Lơng Khơng, Xã Tơ Tung",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3054\",\"properties\":{\"matinhxa\":\"24.3070\",\"maxa\":3070},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Tuy Phước (xã)",
- "truocsn": "Thị trấn Tuy Phước, Thị trấn Diêu Trì, Xã Phước Thuận, Xã Phước Nghĩa, Xã Phước Lộc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3019\",\"properties\":{\"matinhxa\":\"24.3035\",\"maxa\":3035},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Tuy Phước Bắc (xã)",
- "truocsn": "Xã Phước Hiệp, Xã Phước Hưng, Xã Phước Quang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3021\",\"properties\":{\"matinhxa\":\"24.3037\",\"maxa\":3037},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Tuy Phước Đông (xã)",
- "truocsn": "Xã Phước Sơn, Xã Phước Hòa, Xã Phước Thắng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3020\",\"properties\":{\"matinhxa\":\"24.3036\",\"maxa\":3036},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Tuy Phước Tây (xã)",
- "truocsn": "Xã Phước An, Xã Phước Thành",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3022\",\"properties\":{\"matinhxa\":\"24.3038\",\"maxa\":3038},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Uar (xã)",
- "truocsn": "Xã Ia Rsươm, Xã Chư Drăng, Xã Uar",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2972\",\"properties\":{\"matinhxa\":\"24.2988\",\"maxa\":2988},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Vân Canh (xã)",
- "truocsn": "Thị trấn Vân Canh, Xã Canh Thuận, Xã Canh Hòa, Xã Canh Hiệp",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3024\",\"properties\":{\"matinhxa\":\"24.3040\",\"maxa\":3040},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Vạn Đức (xã)",
- "truocsn": "Xã Ân Sơn, Xã Ân Tín, Xã Ân Thạnh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2985\",\"properties\":{\"matinhxa\":\"24.3001\",\"maxa\":3001},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Vĩnh Quang (xã)",
- "truocsn": "Xã Vĩnh Thuận, Xã Vĩnh Hòa, Xã Vĩnh Quang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3010\",\"properties\":{\"matinhxa\":\"24.3026\",\"maxa\":3026},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Vĩnh Sơn (xã)",
- "truocsn": "Xã Vĩnh Kim, Xã Vĩnh Sơn",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2996\",\"properties\":{\"matinhxa\":\"24.3012\",\"maxa\":3012},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "131",
- "ten": "Vĩnh Thạnh (xã)",
- "truocsn": "Thị trấn Vĩnh Thạnh, Xã Vĩnh Hảo",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2995\",\"properties\":{\"matinhxa\":\"24.3011\",\"maxa\":3011},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "132",
- "ten": "Vĩnh Thịnh (xã)",
- "truocsn": "Xã Vĩnh Hiệp, Xã Vĩnh Thịnh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2997\",\"properties\":{\"matinhxa\":\"24.3013\",\"maxa\":3013},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "133",
- "ten": "Xuân An (xã)",
- "truocsn": "Xã Cát Nhơn, Xã Cát Tường",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3008\",\"properties\":{\"matinhxa\":\"24.3024\",\"maxa\":3024},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "134",
- "ten": "Ya Hội (xã)",
- "truocsn": "Xã Phú An, Xã Ya Hội",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3044\",\"properties\":{\"matinhxa\":\"24.3060\",\"maxa\":3060},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "135",
- "ten": "Ya Ma (xã)",
- "truocsn": "Xã Đăk Tơ Pang, Xã Kông Yang, Xã Ya Ma",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3038\",\"properties\":{\"matinhxa\":\"24.3054\",\"maxa\":3054},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bình Kiến (phường)",
- "truocsn": "Xã An Phú, Xã Hòa Kiến, Xã Bình Kiến, Phường 9 (phần còn lại sau khi sáp nhập vào phường Tuy Hòa)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2914\",\"properties\":{\"matinhxa\":\"25.2930\",\"maxa\":2930},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Buôn Đôn (xã)",
- "truocsn": "Krông Na",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2843\",\"properties\":{\"matinhxa\":\"25.2859\",\"maxa\":2859},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Buôn Hồ (phường)",
- "truocsn": "Phường Đạt Hiếu, Phường An Bình, Phường An Lạc, Phường Thiện An, Phường Thống Nhất, Phường Đoàn Kết",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2848\",\"properties\":{\"matinhxa\":\"25.2864\",\"maxa\":2864},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Buôn Ma Thuột (phường)",
- "truocsn": "Phường Thành Công, Phường Tân Tiến, Phường Tân Thành, Phường Tự An, Phường Tân Lợi, Xã Cư Êbur",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2772\",\"properties\":{\"matinhxa\":\"25.2788\",\"maxa\":2788},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Cư Bao (phường)",
- "truocsn": "Phường Bình Tân, Xã Bình Thuận, Xã Cư Bao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2851\",\"properties\":{\"matinhxa\":\"25.2867\",\"maxa\":2867},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cư M’gar (xã)",
- "truocsn": "Xã Ea H’đing, Xã Ea Kpam, Xã Cư M’gar",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2879\",\"properties\":{\"matinhxa\":\"25.2895\",\"maxa\":2895},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Cư M’ta (xã)",
- "truocsn": "Xã Cư Króa, Xã Cư M’ta",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2861\",\"properties\":{\"matinhxa\":\"25.2877\",\"maxa\":2877},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cư Pơng (xã)",
- "truocsn": "Xã Ea Sin, Xã Cư Pơng",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2891\",\"properties\":{\"matinhxa\":\"25.2907\",\"maxa\":2907},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cư Prao (xã)",
- "truocsn": "Xã Ea Pil, Xã Cư Prao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2894\",\"properties\":{\"matinhxa\":\"25.2910\",\"maxa\":2910},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cư Pui (xã)",
- "truocsn": "Xã Hòa Phong (huyện Krông Bông), Xã Cư Pui",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2866\",\"properties\":{\"matinhxa\":\"25.2882\",\"maxa\":2882},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cư Yang (xã)",
- "truocsn": "Xã Cư Bông, Xã Cư Yang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2858\",\"properties\":{\"matinhxa\":\"25.2874\",\"maxa\":2874},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cuôr Đăng (xã)",
- "truocsn": "Xã Ea Drơng, Xã Cuôr Đăng",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2847\",\"properties\":{\"matinhxa\":\"25.2863\",\"maxa\":2863},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đắk Liêng (xã)",
- "truocsn": "Xã Buôn Tría, Xã Buôn Triết, Xã Đắk Liêng",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2885\",\"properties\":{\"matinhxa\":\"25.2901\",\"maxa\":2901},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đắk Phơi (xã)",
- "truocsn": "Xã Đắk Nuê, Xã Đắk Phơi",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2886\",\"properties\":{\"matinhxa\":\"25.2902\",\"maxa\":2902},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Dang Kang (xã)",
- "truocsn": "Xã Hòa Thành (huyện Krông Bông), Xã Cư Kty, Xã Dang Kang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2865\",\"properties\":{\"matinhxa\":\"25.2881\",\"maxa\":2881},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Dliê Ya (xã)",
- "truocsn": "Xã Ea Tóh, Xã Ea Tân, Xã Dliê Ya",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2892\",\"properties\":{\"matinhxa\":\"25.2908\",\"maxa\":2908},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đông Hòa (phường)",
- "truocsn": "Phường Hòa Vinh, Phường Hòa Xuân Tây, Xã Hòa Tân Đông",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2922\",\"properties\":{\"matinhxa\":\"25.2938\",\"maxa\":2938},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đồng Xuân (xã)",
- "truocsn": "Thị trấn La Hai, Xã Xuân Sơn Nam, Xã Xuân Sơn Bắc, Xã Xuân Long, Xã Xuân Quang 2",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2897\",\"properties\":{\"matinhxa\":\"25.2913\",\"maxa\":2913},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Dray Bhăng (xã)",
- "truocsn": "Xã Hòa Hiệp, Xã Dray Bhăng, Xã Ea Bhốk",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2883\",\"properties\":{\"matinhxa\":\"25.2899\",\"maxa\":2899},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đức Bình (xã)",
- "truocsn": "Xã Sơn Giang, Xã Đức Bình Đông, Xã Đức Bình Tây, Xã Ea Bia",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2911\",\"properties\":{\"matinhxa\":\"25.2927\",\"maxa\":2927},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Dur Kmăl (xã)",
- "truocsn": "Xã Băng A Drênh, Xã Dur Kmăl",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2884\",\"properties\":{\"matinhxa\":\"25.2900\",\"maxa\":2900},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Ea Bá (xã)",
- "truocsn": "Xã Ea Bá, Xã Ea Bar (huyện Sông Hinh) (phần còn lại sau khi sáp nhập vào xã Ea Ly)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2912\",\"properties\":{\"matinhxa\":\"25.2928\",\"maxa\":2928},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Ea Bung (xã)",
- "truocsn": "Xã Ya Tờ Mốt, Xã Ea Bung",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2786\",\"properties\":{\"matinhxa\":\"25.2802\",\"maxa\":2802},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Ea Drăng (xã)",
- "truocsn": "Thị trấn Ea Drăng, Xã Ea Ral, Xã Dliê Yang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2888\",\"properties\":{\"matinhxa\":\"25.2904\",\"maxa\":2904},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Ea Drông (xã)",
- "truocsn": "Xã Ea Siên, Xã Ea Drông",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2850\",\"properties\":{\"matinhxa\":\"25.2866\",\"maxa\":2866},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Ea H’Leo (xã)",
- "truocsn": "xã Ea H’Leo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2779\",\"properties\":{\"matinhxa\":\"25.2795\",\"maxa\":2795},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Ea Hiao (xã)",
- "truocsn": "Xã Ea Sol, Xã Ea Hiao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2889\",\"properties\":{\"matinhxa\":\"25.2905\",\"maxa\":2905},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Ea Kao (phường)",
- "truocsn": "Phường Ea Tam, Xã Ea Kao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2877\",\"properties\":{\"matinhxa\":\"25.2893\",\"maxa\":2893},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Ea Kar (xã)",
- "truocsn": "Thị trấn Ea Kar, Xã Cư Huê, Xã Ea Đar, Xã Ea Kmút, Xã Cư Ni, Xã Xuân Phú",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2854\",\"properties\":{\"matinhxa\":\"25.2870\",\"maxa\":2870},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Ea Khăl (xã)",
- "truocsn": "Xã Ea Nam, Xã Ea Tir, Xã Ea Khăl",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2781\",\"properties\":{\"matinhxa\":\"25.2797\",\"maxa\":2797},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Ea Kiết (xã)",
- "truocsn": "Xã Ea Kuêh, Xã Ea Kiết",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2844\",\"properties\":{\"matinhxa\":\"25.2860\",\"maxa\":2860},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Ea Kly (xã)",
- "truocsn": "Xã Krông Búk, Xã Ea Kly",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2870\",\"properties\":{\"matinhxa\":\"25.2886\",\"maxa\":2886},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Ea Knốp (xã)",
- "truocsn": "Thị trấn Ea Knốp, Xã Ea Tih, Xã Ea Sô, Xã Ea Sar",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2855\",\"properties\":{\"matinhxa\":\"25.2871\",\"maxa\":2871},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Ea Knuếc (xã)",
- "truocsn": "Xã Hòa Đông, Xã Ea Kênh, Xã Ea Knuếc",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2880\",\"properties\":{\"matinhxa\":\"25.2896\",\"maxa\":2896},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Ea Ktur (xã)",
- "truocsn": "Xã Ea Tiêu, Xã Ea Ktur, Xã Ea Bhốk (phần còn lại sau khi sáp nhập vào xã Dray Bhăng)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2882\",\"properties\":{\"matinhxa\":\"25.2898\",\"maxa\":2898},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Ea Ly (xã)",
- "truocsn": "Xã Ea Lâm, Xã Ea Ly, Xã Ea Bar (huyện Sông Hinh)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2910\",\"properties\":{\"matinhxa\":\"25.2926\",\"maxa\":2926},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Ea M’Droh (xã)",
- "truocsn": "Xã Quảng Hiệp, Xã Ea M’nang, Xã Ea M’Droh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2845\",\"properties\":{\"matinhxa\":\"25.2861\",\"maxa\":2861},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Ea Na (xã)",
- "truocsn": "Xã Ea Bông, Xã Dray Sáp, Xã Ea Na",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2777\",\"properties\":{\"matinhxa\":\"25.2793\",\"maxa\":2793},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Ea Ning (xã)",
- "truocsn": "Xã Cư Êwi, Xã Ea Hu, Xã Ea Ning",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2881\",\"properties\":{\"matinhxa\":\"25.2897\",\"maxa\":2897},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Ea Nuôl (xã)",
- "truocsn": "Xã Ea Bar (huyện Buôn Đôn), Xã Cuôr Knia, Xã Ea Nuôl",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2774\",\"properties\":{\"matinhxa\":\"25.2790\",\"maxa\":2790},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Ea Ô (xã)",
- "truocsn": "Xã Cư Elang, Xã Ea Ô",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2857\",\"properties\":{\"matinhxa\":\"25.2873\",\"maxa\":2873},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Ea Păl (xã)",
- "truocsn": "Xã Cư Prông, Xã Ea Păl",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2856\",\"properties\":{\"matinhxa\":\"25.2872\",\"maxa\":2872},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Ea Phê (xã)",
- "truocsn": "Xã Ea Kuăng, Xã Ea Hiu, Xã Ea Phê",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2871\",\"properties\":{\"matinhxa\":\"25.2887\",\"maxa\":2887},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Ea Riêng (xã)",
- "truocsn": "Xã Ea H’Mlay, Xã Ea M’Doal, Xã Ea Riêng",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2860\",\"properties\":{\"matinhxa\":\"25.2876\",\"maxa\":2876},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Ea Rốk (xã)",
- "truocsn": "Xã Ia Jlơi, Xã Cư Kbang, Xã Ea Rốk",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2784\",\"properties\":{\"matinhxa\":\"25.2800\",\"maxa\":2800},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Ea Súp (xã)",
- "truocsn": "Thị trấn Ea Súp, Xã Cư M’Lan, Xã Ea Lê",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2782\",\"properties\":{\"matinhxa\":\"25.2798\",\"maxa\":2798},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Ea Trang (xã)",
- "truocsn": "xã Ea Trang (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2863\",\"properties\":{\"matinhxa\":\"25.2879\",\"maxa\":2879},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Ea Tul (xã)",
- "truocsn": "Xã Ea Tar, Xã Cư Dliê Mnông, Xã Ea Tul",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2846\",\"properties\":{\"matinhxa\":\"25.2862\",\"maxa\":2862},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Ea Wer (xã)",
- "truocsn": "Xã Ea Huar, Xã Tân Hòa, Xã Ea Wer",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2775\",\"properties\":{\"matinhxa\":\"25.2791\",\"maxa\":2791},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Ea Wy (xã)",
- "truocsn": "Xã Cư A Mung, Xã Cư Mốt, Xã Ea Wy",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2780\",\"properties\":{\"matinhxa\":\"25.2796\",\"maxa\":2796},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Hòa Hiệp (phường)",
- "truocsn": "Phường Hòa Hiệp Trung, Phường Hòa Hiệp Nam, Phường Hòa Hiệp Bắc (phần còn lại sau khi sáp nhập vào phường Phú Yên)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2923\",\"properties\":{\"matinhxa\":\"25.2939\",\"maxa\":2939},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Hòa Mỹ (xã)",
- "truocsn": "Xã Hòa Mỹ Đông, Xã Hòa Mỹ Tây",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2924\",\"properties\":{\"matinhxa\":\"25.2940\",\"maxa\":2940},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Hòa Phú (xã)",
- "truocsn": "Xã Hòa Phú (thành phố Buôn Ma Thuột), Xã Hòa Xuân, Xã Hòa Khánh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2773\",\"properties\":{\"matinhxa\":\"25.2789\",\"maxa\":2789},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Hòa Sơn (xã)",
- "truocsn": "Xã Yang Reh, Xã Ea Trul, Xã Hòa Sơn",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2867\",\"properties\":{\"matinhxa\":\"25.2883\",\"maxa\":2883},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Hòa Thịnh (xã)",
- "truocsn": "Xã Hòa Đồng, Xã Hòa Thịnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2926\",\"properties\":{\"matinhxa\":\"25.2942\",\"maxa\":2942},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Hòa Xuân (xã)",
- "truocsn": "Xã Hòa Tâm, Xã Hòa Xuân Đông, Xã Hòa Xuân Nam",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2925\",\"properties\":{\"matinhxa\":\"25.2941\",\"maxa\":2941},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Ia Lốp (xã)",
- "truocsn": "xã Ia Lốp (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2783\",\"properties\":{\"matinhxa\":\"25.2799\",\"maxa\":2799},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Ia Rvê (xã)",
- "truocsn": "xã Ia Rvê (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2785\",\"properties\":{\"matinhxa\":\"25.2801\",\"maxa\":2801},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Krông Á (xã)",
- "truocsn": "Xã Cư San, Xã Krông Á",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2862\",\"properties\":{\"matinhxa\":\"25.2878\",\"maxa\":2878},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Krông Ana (xã)",
- "truocsn": "Thị trấn Buôn Trấp, Xã Bình Hòa, Xã Quảng Điền",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2776\",\"properties\":{\"matinhxa\":\"25.2792\",\"maxa\":2792},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Krông Bông (xã)",
- "truocsn": "Thị trấn Krông Kmar, Xã Hòa Lễ, Xã Khuê Ngọc Điền",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2864\",\"properties\":{\"matinhxa\":\"25.2880\",\"maxa\":2880},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Krông Búk (xã)",
- "truocsn": "Xã Cư Né, Xã Chứ Kbô",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2890\",\"properties\":{\"matinhxa\":\"25.2906\",\"maxa\":2906},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Krông Năng (xã)",
- "truocsn": "Thị trấn Krông Năng, Xã Phú Lộc, Xã Ea Hồ",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2852\",\"properties\":{\"matinhxa\":\"25.2868\",\"maxa\":2868},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Krông Nô (xã)",
- "truocsn": "xã Krông Nô (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2887\",\"properties\":{\"matinhxa\":\"25.2903\",\"maxa\":2903},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Krông Pắc (xã)",
- "truocsn": "Thị trấn Phước An, Xã Hòa An (huyện Krông Pắc), Xã Ea Yông, Xã Hòa Tiến",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2869\",\"properties\":{\"matinhxa\":\"25.2885\",\"maxa\":2885},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Liên Sơn Lắk (xã)",
- "truocsn": "Thị trấn Liên Sơn, Xã Yang Tao, Xã Bông Krang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2874\",\"properties\":{\"matinhxa\":\"25.2890\",\"maxa\":2890},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "M’Drắk (xã)",
- "truocsn": "Thị trấn M’Drắk, Xã Krông Jing, Xã Ea Lai",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2859\",\"properties\":{\"matinhxa\":\"25.2875\",\"maxa\":2875},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nam Ka (xã)",
- "truocsn": "Xã Ea Rbin, Xã Nam Ka",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2778\",\"properties\":{\"matinhxa\":\"25.2794\",\"maxa\":2794},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Ô Loan (xã)",
- "truocsn": "Xã An Hiệp, Xã An Hòa Hải, Xã An Cư",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2905\",\"properties\":{\"matinhxa\":\"25.2921\",\"maxa\":2921},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Phú Hòa 1 (xã)",
- "truocsn": "Thị trấn Phú Hòa, Xã Hòa Thắng (huyện Phú Hòa), Xã Hòa Định Đông, Xã Hòa Định Tây, Xã Hòa Hội, Xã Hòa An (huyện Phú Hòa)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2928\",\"properties\":{\"matinhxa\":\"25.2944\",\"maxa\":2944},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Phú Hòa 2 (xã)",
- "truocsn": "Xã Hòa Quang Nam, Xã Hòa Quang Bắc, Xã Hòa Trị",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2927\",\"properties\":{\"matinhxa\":\"25.2943\",\"maxa\":2943},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Phú Mỡ (xã)",
- "truocsn": "Xã Xuân Quang 1, Xã Phú Mỡ",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2898\",\"properties\":{\"matinhxa\":\"25.2914\",\"maxa\":2914},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Phú Xuân (xã)",
- "truocsn": "Xã Ea Púk, Xã Ea Dăh, Xã Phú Xuân",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2853\",\"properties\":{\"matinhxa\":\"25.2869\",\"maxa\":2869},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Phú Yên (phường)",
- "truocsn": "Phường Phú Đông, Phường Phú Lâm, Phường Phú Thạnh, Xã Hòa Thành (thị xã Đông Hòa), Phường Hòa Hiệp Bắc, Xã Hòa Bình 1 (phần còn lại sau khi sáp nhập vào xã Tây Hòa)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2913\",\"properties\":{\"matinhxa\":\"25.2929\",\"maxa\":2929},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Pơng Drang (xã)",
- "truocsn": "Thị trấn Pơng Drang, Xã Ea Ngai, Xã Tân Lập",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2849\",\"properties\":{\"matinhxa\":\"25.2865\",\"maxa\":2865},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Quảng Phú (xã)",
- "truocsn": "Thị trấn Quảng Phú, Thị trấn Ea Pốk, Xã Cư Suê, Xã Quảng Tiến",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2878\",\"properties\":{\"matinhxa\":\"25.2894\",\"maxa\":2894},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Sơn Hòa (xã)",
- "truocsn": "Thị trấn Củng Sơn, Xã Suối Bạc, Xã Sơn Hà, Xã Sơn Nguyên, Xã Sơn Phước",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2900\",\"properties\":{\"matinhxa\":\"25.2916\",\"maxa\":2916},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Sơn Thành (xã)",
- "truocsn": "Xã Hòa Phú (huyện Tây Hòa), Xã Sơn Thành Đông, Xã Sơn Thành Tây",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2920\",\"properties\":{\"matinhxa\":\"25.2936\",\"maxa\":2936},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Sông Cầu (phường)",
- "truocsn": "Phường Xuân Yên, Phường Xuân Phú, Xã Xuân Phương, Xã Xuân Thịnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2915\",\"properties\":{\"matinhxa\":\"25.2931\",\"maxa\":2931},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Sông Hinh (xã)",
- "truocsn": "Thị trấn Hai Riêng, Xã Ea Trol, Xã Sông Hinh, Xã Ea Bia (phần còn lại sau khi sáp nhập vào xã Đức Bình)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2919\",\"properties\":{\"matinhxa\":\"25.2935\",\"maxa\":2935},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Suối Trai (xã)",
- "truocsn": "Xã Ea Chà Rang, Xã Krông Pa, Xã Suối Trai",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2909\",\"properties\":{\"matinhxa\":\"25.2925\",\"maxa\":2925},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tam Giang (xã)",
- "truocsn": "Xã Ea Tam, Xã Cư Klông, Xã Tam Giang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2893\",\"properties\":{\"matinhxa\":\"25.2909\",\"maxa\":2909},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tân An (phường)",
- "truocsn": "Phường Tân An, Xã Ea Tu, Xã Hòa Thuận",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2876\",\"properties\":{\"matinhxa\":\"25.2892\",\"maxa\":2892},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tân Lập (phường)",
- "truocsn": "Phường Tân Hòa, Phường Tân Lập, Xã Hòa Thắng (thành phố Buôn Ma Thuột)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2875\",\"properties\":{\"matinhxa\":\"25.2891\",\"maxa\":2891},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Ea Yiêng, Xã Ea Uy, Xã Tân Tiến",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2872\",\"properties\":{\"matinhxa\":\"25.2888\",\"maxa\":2888},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tây Hòa (xã)",
- "truocsn": "Thị trấn Phú Thứ, Xã Hòa Phong (huyện Tây Hòa), Xã Hòa Tân Tây, Xã Hòa Bình 1",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2921\",\"properties\":{\"matinhxa\":\"25.2937\",\"maxa\":2937},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tây Sơn (xã)",
- "truocsn": "Xã Sơn Hội, Xã Cà Lúi, Xã Phước Tân",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2907\",\"properties\":{\"matinhxa\":\"25.2923\",\"maxa\":2923},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Thành Nhất (phường)",
- "truocsn": "Phường Khánh Xuân, Phường Thành Nhất",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2771\",\"properties\":{\"matinhxa\":\"25.2786\",\"maxa\":2786},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tuy An Bắc (xã)",
- "truocsn": "Thị trấn Chí Thạnh, Xã An Dân, Xã An Định",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2902\",\"properties\":{\"matinhxa\":\"25.2918\",\"maxa\":2918},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tuy An Đông (xã)",
- "truocsn": "Xã An Ninh Đông, Xã An Ninh Tây, Xã An Thạch",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2903\",\"properties\":{\"matinhxa\":\"25.2919\",\"maxa\":2919},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tuy An Nam (xã)",
- "truocsn": "Xã An Thọ, Xã An Mỹ, Xã An Chấn",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2906\",\"properties\":{\"matinhxa\":\"25.2922\",\"maxa\":2922},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Tuy An Tây (xã)",
- "truocsn": "Xã An Nghiệp, Xã An Xuân, Xã An Lĩnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2904\",\"properties\":{\"matinhxa\":\"25.2920\",\"maxa\":2920},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tuy Hòa (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 4, Phường 5, Phường 7, Phường 9, Xã Hòa An (huyện Phú Hòa) (phần còn lại sau khi sáp nhập vào xã Phú Hòa 1), Xã Hòa Trị (phần còn lại sau khi sáp nhập vào xã Phú Hòa 2)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2895\",\"properties\":{\"matinhxa\":\"25.2911\",\"maxa\":2911},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vân Hòa (xã)",
- "truocsn": "Xã Sơn Long, Xã Sơn Xuân, Xã Sơn Định",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2908\",\"properties\":{\"matinhxa\":\"25.2924\",\"maxa\":2924},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Vụ Bổn (xã)",
- "truocsn": "xã Vụ Bổn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2873\",\"properties\":{\"matinhxa\":\"25.2889\",\"maxa\":2889},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Xuân Cảnh (xã)",
- "truocsn": "Xã Xuân Bình, Xã Xuân Cảnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2918\",\"properties\":{\"matinhxa\":\"25.2934\",\"maxa\":2934},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Xuân Đài (phường)",
- "truocsn": "Phường Xuân Thành, Phường Xuân Đài",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2896\",\"properties\":{\"matinhxa\":\"25.2912\",\"maxa\":2912},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Xuân Lãnh (xã)",
- "truocsn": "Xã Đa Lộc, Xã Xuân Lãnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2899\",\"properties\":{\"matinhxa\":\"25.2915\",\"maxa\":2915},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Xuân Lộc (xã)",
- "truocsn": "Xã Xuân Hải, Xã Xuân Lộc",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2917\",\"properties\":{\"matinhxa\":\"25.2933\",\"maxa\":2933},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Xuân Phước (xã)",
- "truocsn": "Xã Xuân Quang 3, Xã Xuân Phước",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2901\",\"properties\":{\"matinhxa\":\"25.2917\",\"maxa\":2917},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Xuân Thọ (xã)",
- "truocsn": "Xã Xuân Lâm, Xã Xuân Thọ 1, Xã Xuân Thọ 2",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2916\",\"properties\":{\"matinhxa\":\"25.2932\",\"maxa\":2932},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Yang Mao (xã)",
- "truocsn": "Xã Cư Drăm, Xã Yang Mao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2868\",\"properties\":{\"matinhxa\":\"25.2884\",\"maxa\":2884},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "1 Bảo Lộc (phường)",
- "truocsn": "Phường 1 (thành phố Bảo Lộc), Phường Lộc Phát, Xã Lộc Thanh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1070\",\"properties\":{\"matinhxa\":\"26.1081\",\"maxa\":1081},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "2 Bảo Lộc (phường)",
- "truocsn": "Phường 2 (thành phố Bảo Lộc), Xã Lộc Tân, Xã ĐamBri",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1072\",\"properties\":{\"matinhxa\":\"26.1083\",\"maxa\":1083},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "3 Bảo Lộc (phường)",
- "truocsn": "Phường Lộc Tiến, Xã Lộc Châu, Xã Đại Lào",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1071\",\"properties\":{\"matinhxa\":\"26.1082\",\"maxa\":1082},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "B’Lao (phường)",
- "truocsn": "Phường Lộc Sơn, Phường B’Lao, Xã Lộc Nga",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1073\",\"properties\":{\"matinhxa\":\"26.1084\",\"maxa\":1084},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bắc Bình (xã)",
- "truocsn": "Thị trấn Chợ Lầu, Xã Phan Hòa, Xã Phan Hiệp, Xã Phan Rí Thành",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3075\",\"properties\":{\"matinhxa\":\"26.3091\",\"maxa\":3091},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bắc Gia Nghĩa (phường)",
- "truocsn": "Phường Quảng Thành, Phường Nghĩa Thành, Phường Nghĩa Đức, Xã Đắk Ha",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2810\",\"properties\":{\"matinhxa\":\"26.2826\",\"maxa\":2826},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bắc Ruộng (xã)",
- "truocsn": "Xã Măng Tố, Xã Bắc Ruộng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3090\",\"properties\":{\"matinhxa\":\"26.3106\",\"maxa\":3106},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bảo Lâm 1 (xã)",
- "truocsn": "Thị trấn Lộc Thắng, Xã Lộc Quảng, Xã Lộc Ngãi",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1074\",\"properties\":{\"matinhxa\":\"26.1085\",\"maxa\":1085},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bảo Lâm 2 (xã)",
- "truocsn": "Xã Lộc An, Xã Lộc Đức, Xã Tân Lạc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1277\",\"properties\":{\"matinhxa\":\"26.1288\",\"maxa\":1288},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bảo Lâm 3 (xã)",
- "truocsn": "Xã Lộc Thành, Xã Lộc Nam",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1271\",\"properties\":{\"matinhxa\":\"26.1282\",\"maxa\":1282},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bảo Lâm 4 (xã)",
- "truocsn": "Xã Lộc Phú, Xã Lộc Lâm, Xã B’Lá",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1270\",\"properties\":{\"matinhxa\":\"26.1281\",\"maxa\":1281},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bảo Lâm 5 (xã)",
- "truocsn": "Xã Lộc Bảo, Xã Lộc Bắc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1269\",\"properties\":{\"matinhxa\":\"26.1280\",\"maxa\":1280},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bảo Thuận (xã)",
- "truocsn": "Xã Đinh Lạc, Xã Tân Nghĩa, Xã Bảo Thuận",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.440\",\"properties\":{\"matinhxa\":\"26.440\",\"maxa\":440},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bình Thuận (phường)",
- "truocsn": "Phường Phú Tài, Xã Phong Nẫm, Xã Hàm Hiệp",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3067\",\"properties\":{\"matinhxa\":\"26.3083\",\"maxa\":3083},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cam Ly - Đà Lạt (phường)",
- "truocsn": "Phường 5, Phường 6, Xã Tà Nung",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.182\",\"properties\":{\"matinhxa\":\"26.182\",\"maxa\":182},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cát Tiên (xã)",
- "truocsn": "Thị trấn Cát Tiên, Xã Nam Ninh, Xã Quảng Ngãi",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1051\",\"properties\":{\"matinhxa\":\"26.1062\",\"maxa\":1062},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Cát Tiên 2 (xã)",
- "truocsn": "Thị trấn Phước Cát, Xã Phước Cát 2, Xã Đức Phổ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1052\",\"properties\":{\"matinhxa\":\"26.1063\",\"maxa\":1063},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cát Tiên 3 (xã)",
- "truocsn": "Xã Gia Viễn, Xã Tiên Hoàng, Xã Đồng Nai Thượng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1069\",\"properties\":{\"matinhxa\":\"26.1080\",\"maxa\":1080},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Cư Jút (xã)",
- "truocsn": "Thị trấn Ea T’ling, Xã Trúc Sơn, Xã Tâm Thắng, Xã Cư K’nia",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2842\",\"properties\":{\"matinhxa\":\"26.2858\",\"maxa\":2858},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "D’Ran (xã)",
- "truocsn": "Thị trấn D’Ran, Xã Lạc Xuân",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.279\",\"properties\":{\"matinhxa\":\"26.279\",\"maxa\":279},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đạ Huoai (xã)",
- "truocsn": "Thị trấn Mađaguôi, Xã Mađaguôi, Xã Đạ Oai",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1278\",\"properties\":{\"matinhxa\":\"26.1289\",\"maxa\":1289},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đạ Huoai 2 (xã)",
- "truocsn": "Thị trấn Đạ M’ri, Xã Hà Lâm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1272\",\"properties\":{\"matinhxa\":\"26.1283\",\"maxa\":1283},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đạ Huoai 3 (xã)",
- "truocsn": "xã Bà Gia",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1279\",\"properties\":{\"matinhxa\":\"26.1290\",\"maxa\":1290},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đạ Tẻh (xã)",
- "truocsn": "Thị trấn Đạ Tẻh, Xã An Nhơn, Xã Đạ Lây",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1050\",\"properties\":{\"matinhxa\":\"26.1061\",\"maxa\":1061},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đạ Tẻh 2 (xã)",
- "truocsn": "Xã Quảng Trị, Xã Đạ Pal, Xã Đạ Kho",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1274\",\"properties\":{\"matinhxa\":\"26.1285\",\"maxa\":1285},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đạ Tẻh 3 (xã)",
- "truocsn": "Xã Mỹ Đức, Xã Quốc Oai",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1273\",\"properties\":{\"matinhxa\":\"26.1284\",\"maxa\":1284},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đắk Mil (xã)",
- "truocsn": "Xã Đắk Gằn, Xã Đắk N’Drót, Xã Đắk R’La",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2804\",\"properties\":{\"matinhxa\":\"26.2820\",\"maxa\":2820},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đắk Sắk (xã)",
- "truocsn": "Xã Nam Xuân, Xã Long Sơn, Xã Đắk Sắk",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2805\",\"properties\":{\"matinhxa\":\"26.2821\",\"maxa\":2821},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Đắk Song (xã)",
- "truocsn": "Xã Đắk Môl, Xã Đắk Hòa",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2833\",\"properties\":{\"matinhxa\":\"26.2849\",\"maxa\":2849},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Đắk Wil (xã)",
- "truocsn": "Xã Ea Pô, Xã Đắk Wil",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2798\",\"properties\":{\"matinhxa\":\"26.2814\",\"maxa\":2814},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Đam Rông 1 (xã)",
- "truocsn": "Xã Phi Liêng, Xã Đạ K’Nàng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.277\",\"properties\":{\"matinhxa\":\"26.277\",\"maxa\":277},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Đam Rông 2 (xã)",
- "truocsn": "Xã Rô Men, Xã Liêng Srônh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.122\",\"properties\":{\"matinhxa\":\"26.122\",\"maxa\":122},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Đam Rông 3 (xã)",
- "truocsn": "Xã Đạ Rsal, Xã Đạ M’Rông",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.146\",\"properties\":{\"matinhxa\":\"26.146\",\"maxa\":146},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Đam Rông 4 (xã)",
- "truocsn": "Xã Đạ Tông, Xã Đạ Long, Xã Đưng K’Nớ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.145\",\"properties\":{\"matinhxa\":\"26.145\",\"maxa\":145},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Di Linh (xã)",
- "truocsn": "Thị trấn Di Linh, Xã Liên Đầm, Xã Tân Châu, Xã Gung Ré",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.144\",\"properties\":{\"matinhxa\":\"26.144\",\"maxa\":144},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Đinh Trang Thượng (xã)",
- "truocsn": "Xã Tân Lâm, Xã Tân Thượng, Xã Đinh Trang Thượng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.443\",\"properties\":{\"matinhxa\":\"26.443\",\"maxa\":443},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Đinh Văn Lâm Hà (xã)",
- "truocsn": "Xã Bình Thạnh (huyện Đức Trọng), Xã Tân Văn, Thị trấn Đinh Văn",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.274\",\"properties\":{\"matinhxa\":\"26.274\",\"maxa\":274},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Đơn Dương (xã)",
- "truocsn": "Thị trấn Thạnh Mỹ, Xã Đạ Ròn, Xã Tu Tra",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.288\",\"properties\":{\"matinhxa\":\"26.288\",\"maxa\":288},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Đông Gia Nghĩa (phường)",
- "truocsn": "Phường Nghĩa Trung, Xã Đắk Nia",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2812\",\"properties\":{\"matinhxa\":\"26.2828\",\"maxa\":2828},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Đông Giang (xã)",
- "truocsn": "Xã Đông Tiến, Xã Đông Giang",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3062\",\"properties\":{\"matinhxa\":\"26.3078\",\"maxa\":3078},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Đồng Kho (xã)",
- "truocsn": "Xã Huy Khiêm, Xã La Ngâu, Xã Đức Bình, Xã Đồng Kho",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3092\",\"properties\":{\"matinhxa\":\"26.3108\",\"maxa\":3108},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Đức An (xã)",
- "truocsn": "Thị trấn Đức An, Xã Đắk N’Drung, Xã Nam Bình",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2832\",\"properties\":{\"matinhxa\":\"26.2848\",\"maxa\":2848},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Đức Lập (xã)",
- "truocsn": "Thị trấn Đắk Mil, Xã Đức Mạnh, Xã Đức Minh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2802\",\"properties\":{\"matinhxa\":\"26.2818\",\"maxa\":2818},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Đức Linh (xã)",
- "truocsn": "Thị trấn Võ Xu, Xã Nam Chính, Xã Vũ Hòa",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3094\",\"properties\":{\"matinhxa\":\"26.3110\",\"maxa\":3110},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Đức Trọng (xã)",
- "truocsn": "Thị trấn Liên Nghĩa, Xã Phú Hội",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.344\",\"properties\":{\"matinhxa\":\"26.344\",\"maxa\":344},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Gia Hiệp (xã)",
- "truocsn": "Xã Tam Bố, Xã Gia Hiệp",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.441\",\"properties\":{\"matinhxa\":\"26.441\",\"maxa\":441},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Hải Ninh (xã)",
- "truocsn": "Xã Bình An, Xã Phan Điền, Xã Hải Ninh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3077\",\"properties\":{\"matinhxa\":\"26.3093\",\"maxa\":3093},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Hàm Kiệm (xã)",
- "truocsn": "Xã Mương Mán, Xã Hàm Cường, Xã Hàm Kiệm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3087\",\"properties\":{\"matinhxa\":\"26.3103\",\"maxa\":3103},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Hàm Liêm (xã)",
- "truocsn": "Xã Hàm Chính, Xã Hàm Liêm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3083\",\"properties\":{\"matinhxa\":\"26.3099\",\"maxa\":3099},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Hàm Tân (xã)",
- "truocsn": "Xã Tân Hà (huyện Hàm Tân), Xã Tân Xuân, Thị trấn Tân Nghĩa",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3101\",\"properties\":{\"matinhxa\":\"26.3117\",\"maxa\":3117},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Hàm Thắng (phường)",
- "truocsn": "Phường Xuân An, Thị trấn Phú Long, Xã Hàm Thắng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3069\",\"properties\":{\"matinhxa\":\"26.3085\",\"maxa\":3085},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Hàm Thạnh (xã)",
- "truocsn": "Xã Mỹ Thạnh, Xã Hàm Cần, Xã Hàm Thạnh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3086\",\"properties\":{\"matinhxa\":\"26.3102\",\"maxa\":3102},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Hàm Thuận (xã)",
- "truocsn": "Thị trấn Ma Lâm, Xã Thuận Minh, Xã Hàm Đức",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3063\",\"properties\":{\"matinhxa\":\"26.3079\",\"maxa\":3079},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Hàm Thuận Bắc (xã)",
- "truocsn": "Xã Thuận Hòa, Xã Hàm Trí, Xã Hàm Phú",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3159\",\"properties\":{\"matinhxa\":\"26.3175\",\"maxa\":3175},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Hàm Thuận Nam (xã)",
- "truocsn": "Thị trấn Thuận Nam, Xã Hàm Minh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3085\",\"properties\":{\"matinhxa\":\"26.3101\",\"maxa\":3101},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Hiệp Thạnh (xã)",
- "truocsn": "Xã Hiệp An, Xã Liên Hiệp, Xã Hiệp Thạnh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.345\",\"properties\":{\"matinhxa\":\"26.345\",\"maxa\":345},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Hòa Bắc (xã)",
- "truocsn": "Xã Hòa Nam, Xã Hòa Bắc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1276\",\"properties\":{\"matinhxa\":\"26.1287\",\"maxa\":1287},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Hòa Ninh (xã)",
- "truocsn": "Xã Đinh Trang Hòa, Xã Hòa Trung, Xã Hòa Ninh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1275\",\"properties\":{\"matinhxa\":\"26.1286\",\"maxa\":1286},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Hòa Thắng (xã)",
- "truocsn": "Xã Hồng Phong, Xã Hòa Thắng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3081\",\"properties\":{\"matinhxa\":\"26.3097\",\"maxa\":3097},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Hoài Đức (xã)",
- "truocsn": "Thị trấn Đức Tài, Xã Đức Tín, Xã Đức Hạnh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3096\",\"properties\":{\"matinhxa\":\"26.3112\",\"maxa\":3112},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Hồng Sơn (xã)",
- "truocsn": "Xã Hồng Liêm, Xã Hồng Sơn",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3082\",\"properties\":{\"matinhxa\":\"26.3098\",\"maxa\":3098},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Hồng Thái (xã)",
- "truocsn": "Xã Phan Thanh, Xã Hồng Thái, Xã Hòa Thắng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3080\",\"properties\":{\"matinhxa\":\"26.3096\",\"maxa\":3096},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Ka Đô (xã)",
- "truocsn": "Xã Lạc Lâm, Xã Ka Đô",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.342\",\"properties\":{\"matinhxa\":\"26.342\",\"maxa\":342},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Kiến Đức (xã)",
- "truocsn": "Thị trấn Kiến Đức, Xã Đạo Nghĩa, Xã Nghĩa Thắng, Xã Kiến Thành",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2768\",\"properties\":{\"matinhxa\":\"26.2783\",\"maxa\":2783},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Krông Nô (xã)",
- "truocsn": "Xã Tân Thành (huyện Krông Nô), Xã Đắk Drô, Thị trấn Đắk Mâm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2807\",\"properties\":{\"matinhxa\":\"26.2823\",\"maxa\":2823},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "La Dạ (xã)",
- "truocsn": "Xã Đa Mi, Xã La Dạ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3084\",\"properties\":{\"matinhxa\":\"26.3100\",\"maxa\":3100},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "La Gi (phường)",
- "truocsn": "Phường Tân An, Phường Bình Tân, Phường Tân Thiện, Xã Tân Bình",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3100\",\"properties\":{\"matinhxa\":\"26.3116\",\"maxa\":3116},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Lạc Dương (xã)",
- "truocsn": "Xã Đạ Sar, Xã Đạ Nhim, Xã Đạ Chais",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.184\",\"properties\":{\"matinhxa\":\"26.184\",\"maxa\":184},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Lâm Viên - Đà Lạt (phường)",
- "truocsn": "Phường 8, Phường 9, Phường 12",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.180\",\"properties\":{\"matinhxa\":\"26.180\",\"maxa\":180},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Lang Biang - Đà Lạt (phường)",
- "truocsn": "Phường 7, Thị trấn Lạc Dương, Xã Lát",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.177\",\"properties\":{\"matinhxa\":\"26.177\",\"maxa\":177},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Liên Hương (xã)",
- "truocsn": "Thị trấn Liên Hương, Xã Bình Thạnh (huyện Tuy Phong), Xã Phước Thể, Xã Phú Lạc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3071\",\"properties\":{\"matinhxa\":\"26.3087\",\"maxa\":3087},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Lương Sơn (xã)",
- "truocsn": "Thị trấn Lương Sơn, Xã Sông Bình",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3079\",\"properties\":{\"matinhxa\":\"26.3095\",\"maxa\":3095},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Mũi Né (phường)",
- "truocsn": "Phường Hàm Tiến, Phường Mũi Né, Xã Thiện Nghiệp",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3065\",\"properties\":{\"matinhxa\":\"26.3081\",\"maxa\":3081},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nam Ban Lâm Hà (xã)",
- "truocsn": "Thị trấn Nam Ban, Xã Đông Thanh, Xã Mê Linh, Xã Gia Lâm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.273\",\"properties\":{\"matinhxa\":\"26.273\",\"maxa\":273},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nam Đà (xã)",
- "truocsn": "Xã Buôn Choáh, Xã Đắk Sôr, Xã Nam Đà",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2808\",\"properties\":{\"matinhxa\":\"26.2824\",\"maxa\":2824},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nam Dong (xã)",
- "truocsn": "Xã Đắk D’rông, Xã Nam Dong",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2799\",\"properties\":{\"matinhxa\":\"26.2815\",\"maxa\":2815},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Nam Gia Nghĩa (phường)",
- "truocsn": "Phường Nghĩa Phú, Phường Nghĩa Tân, Xã Đắk R’Moan",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2811\",\"properties\":{\"matinhxa\":\"26.2827\",\"maxa\":2827},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Nam Hà Lâm Hà (xã)",
- "truocsn": "Xã Nam Hà, Xã Phi Tô",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.276\",\"properties\":{\"matinhxa\":\"26.276\",\"maxa\":276},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Nâm Nung (xã)",
- "truocsn": "Xã Nâm N’Đir, Xã Nâm Nung",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2831\",\"properties\":{\"matinhxa\":\"26.2847\",\"maxa\":2847},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Nam Thành (xã)",
- "truocsn": "Xã Mê Pu, Xã Sùng Nhơn, Xã Đa Kai",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3095\",\"properties\":{\"matinhxa\":\"26.3111\",\"maxa\":3111},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Nghị Đức (xã)",
- "truocsn": "Xã Đức Phú, Xã Nghị Đức",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3361\",\"properties\":{\"matinhxa\":\"26.3107\",\"maxa\":3107},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Nhân Cơ (xã)",
- "truocsn": "Xã Nhân Đạo, Xã Đắk Wer, Xã Nhân Cơ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2813\",\"properties\":{\"matinhxa\":\"26.2829\",\"maxa\":2829},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Ninh Gia (xã)",
- "truocsn": "xã Ninh Gia (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.347\",\"properties\":{\"matinhxa\":\"26.347\",\"maxa\":347},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Phan Rí Cửa (xã)",
- "truocsn": "Thị trấn Phan Rí Cửa, Xã Chí Công, Xã Hòa Minh, Xã Phong Phú",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3072\",\"properties\":{\"matinhxa\":\"26.3088\",\"maxa\":3088},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Phan Sơn (xã)",
- "truocsn": "Xã Phan Lâm, Xã Phan Sơn",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3076\",\"properties\":{\"matinhxa\":\"26.3092\",\"maxa\":3092},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Phan Thiết (phường)",
- "truocsn": "Phường Phú Trinh, Phường Lạc Đạo, Phường Bình Hưng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3068\",\"properties\":{\"matinhxa\":\"26.3084\",\"maxa\":3084},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Phú Quý (đặc khu)",
- "truocsn": "Xã Long Hải, Xã Ngũ Phụng, Xã Tam Thanh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3295\",\"properties\":{\"matinhxa\":\"26.3311\",\"maxa\":3311},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Phú Sơn Lâm Hà (xã)",
- "truocsn": "Xã Phú Sơn, Xã Đạ Đờn",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.275\",\"properties\":{\"matinhxa\":\"26.275\",\"maxa\":275},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Phú Thủy (phường)",
- "truocsn": "Phường Thanh Hải, Phường Phú Hài, Phường Phú Thủy",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3066\",\"properties\":{\"matinhxa\":\"26.3082\",\"maxa\":3082},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Phúc Thọ Lâm Hà (xã)",
- "truocsn": "Xã Phúc Thọ, Xã Tân Thanh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.143\",\"properties\":{\"matinhxa\":\"26.143\",\"maxa\":143},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Phước Hội (phường)",
- "truocsn": "Phường Phước Lộc, Phường Phước Hội, Xã Tân Phước",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3099\",\"properties\":{\"matinhxa\":\"26.3115\",\"maxa\":3115},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Quảng Hòa (xã)",
- "truocsn": "xã Quảng Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2770\",\"properties\":{\"matinhxa\":\"26.2785\",\"maxa\":2785},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Quảng Khê (xã)",
- "truocsn": "Xã Đắk Plao, Xã Quảng Khê",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2815\",\"properties\":{\"matinhxa\":\"26.2831\",\"maxa\":2831},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Quảng Lập (xã)",
- "truocsn": "Xã Ka Đơn, Xã Quảng Lập",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.343\",\"properties\":{\"matinhxa\":\"26.343\",\"maxa\":343},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Quảng Phú (xã)",
- "truocsn": "Xã Đức Xuyên, Xã Đắk Nang, Xã Quảng Phú",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2809\",\"properties\":{\"matinhxa\":\"26.2825\",\"maxa\":2825},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Quảng Sơn (xã)",
- "truocsn": "xã Quảng Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2769\",\"properties\":{\"matinhxa\":\"26.2784\",\"maxa\":2784},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Quảng Tân (xã)",
- "truocsn": "Xã Đắk Ngo, Xã Quảng Tân",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2841\",\"properties\":{\"matinhxa\":\"26.2857\",\"maxa\":2857},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Quảng Tín (xã)",
- "truocsn": "Xã Đắk Sin, Xã Hưng Bình, Xã Đắk Ru, Xã Quảng Tín",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2840\",\"properties\":{\"matinhxa\":\"26.2856\",\"maxa\":2856},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Quảng Trực (xã)",
- "truocsn": "xã Quảng Trực (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2838\",\"properties\":{\"matinhxa\":\"26.2854\",\"maxa\":2854},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Sơn Điền (xã)",
- "truocsn": "Xã Gia Bắc, Xã Sơn Điền",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.442\",\"properties\":{\"matinhxa\":\"26.442\",\"maxa\":442},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Sơn Mỹ (xã)",
- "truocsn": "Xã Tân Thắng, Xã Thắng Hải, Xã Sơn Mỹ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3103\",\"properties\":{\"matinhxa\":\"26.3119\",\"maxa\":3119},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Sông Lũy (xã)",
- "truocsn": "Xã Phan Tiến, Xã Bình Tân, Xã Sông Lũy",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3078\",\"properties\":{\"matinhxa\":\"26.3094\",\"maxa\":3094},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Suối Kiết (xã)",
- "truocsn": "Xã Gia Huynh, Xã Suối Kiết",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3093\",\"properties\":{\"matinhxa\":\"26.3109\",\"maxa\":3109},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Tà Đùng (xã)",
- "truocsn": "Xã Đắk Som, Xã Đắk R’Măng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2814\",\"properties\":{\"matinhxa\":\"26.2830\",\"maxa\":2830},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Tà Hine (xã)",
- "truocsn": "Xã Ninh Loan, Xã Đà Loan, Xã Tà Hine",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.439\",\"properties\":{\"matinhxa\":\"26.439\",\"maxa\":439},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Tà Năng (xã)",
- "truocsn": "Xã Đa Quyn, Xã Tà Năng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.438\",\"properties\":{\"matinhxa\":\"26.438\",\"maxa\":438},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Tân Hà Lâm Hà (xã)",
- "truocsn": "Xã Tân Hà (huyện Lâm Hà), Xã Hoài Đức, Xã Đan Phượng, Xã Liên Hà",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.278\",\"properties\":{\"matinhxa\":\"26.278\",\"maxa\":278},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Tân Hải (xã)",
- "truocsn": "Xã Tân Tiến, Xã Tân Hải",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3102\",\"properties\":{\"matinhxa\":\"26.3118\",\"maxa\":3118},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Tân Hội (xã)",
- "truocsn": "Xã Tân Thành (huyện Đức Trọng), Xã N’ Thôn Hạ, Xã Tân Hội",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.346\",\"properties\":{\"matinhxa\":\"26.346\",\"maxa\":346},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Tân Lập (xã)",
- "truocsn": "Xã Sông Phan, Xã Tân Lập",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3088\",\"properties\":{\"matinhxa\":\"26.3104\",\"maxa\":3104},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Tân Minh (xã)",
- "truocsn": "Thị trấn Tân Minh, Xã Tân Đức, Xã Tân Phúc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3098\",\"properties\":{\"matinhxa\":\"26.3114\",\"maxa\":3114},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Thành (huyện Hàm Thuận Nam), Xã Thuận Quý, Xã Tân Thuận",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3089\",\"properties\":{\"matinhxa\":\"26.3105\",\"maxa\":3105},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Tánh Linh (xã)",
- "truocsn": "Thị trấn Lạc Tánh, Xã Gia An, Xã Đức Thuận",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3091\",\"properties\":{\"matinhxa\":\"26.3378\",\"maxa\":3378},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Thuận An (xã)",
- "truocsn": "Xã Đắk Lao, Xã Thuận An",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2803\",\"properties\":{\"matinhxa\":\"26.2819\",\"maxa\":2819},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Thuận Hạnh (xã)",
- "truocsn": "Xã Thuận Hà, Xã Thuận Hạnh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2835\",\"properties\":{\"matinhxa\":\"26.2851\",\"maxa\":2851},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Tiến Thành (phường)",
- "truocsn": "Phường Đức Long, Xã Tiến Thành",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3070\",\"properties\":{\"matinhxa\":\"26.3086\",\"maxa\":3086},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Trà Tân (xã)",
- "truocsn": "Xã Tân Hà (huyện Đức Linh), Xã Đông Hà, Xã Trà Tân",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3097\",\"properties\":{\"matinhxa\":\"26.3113\",\"maxa\":3113},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Trường Xuân (xã)",
- "truocsn": "Xã Nâm N’Jang, Xã Trường Xuân",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2767\",\"properties\":{\"matinhxa\":\"26.2782\",\"maxa\":2782},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Tuy Đức (xã)",
- "truocsn": "Xã Quảng Tâm, Xã Đắk R’Tíh, Xã Đắk Búk So",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2839\",\"properties\":{\"matinhxa\":\"26.2855\",\"maxa\":2855},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Tuy Phong (xã)",
- "truocsn": "Xã Phan Dũng, Xã Phong Phú",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3073\",\"properties\":{\"matinhxa\":\"26.3089\",\"maxa\":3089},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Tuyên Quang (xã)",
- "truocsn": "Xã Tiến Lợi, Xã Hàm Mỹ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3064\",\"properties\":{\"matinhxa\":\"26.3080\",\"maxa\":3080},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Vĩnh Hảo (xã)",
- "truocsn": "Xã Vĩnh Tân, Xã Vĩnh Hảo",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3074\",\"properties\":{\"matinhxa\":\"26.3090\",\"maxa\":3090},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Xuân Hương - Đà Lạt (phường)",
- "truocsn": "Phường 1 (thành phố Đà Lạt), Phường 2 (thành phố Đà Lạt), Phường 3, Phường 4, Phường 10",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.181\",\"properties\":{\"matinhxa\":\"26.181\",\"maxa\":181},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Xuân Trường - Đà Lạt (phường)",
- "truocsn": "Phường 11, Xã Xuân Thọ, Xã Xuân Trường, Xã Trạm Hành",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.183\",\"properties\":{\"matinhxa\":\"26.183\",\"maxa\":183},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Lục Long (xã)",
- "truocsn": "Xã Dương Xuân Hội, Xã Long Trì, Xã An Lục Long",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1346\",\"properties\":{\"matinhxa\":\"27.1358\",\"maxa\":1358},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Ninh (xã)",
- "truocsn": "Xã Lộc Giang, Xã An Ninh Đông, Xã An Ninh Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1341\",\"properties\":{\"matinhxa\":\"27.1353\",\"maxa\":1353},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Tịnh (phường)",
- "truocsn": "Phường Lộc Hưng, Phường An Tịnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2732\",\"properties\":{\"matinhxa\":\"27.2747\",\"maxa\":2747},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bến Cầu (xã)",
- "truocsn": "Thị trấn Bến Cầu, Xã An Thạnh (huyện Bến Cầu), Xã Tiên Thuận, Xã Lợi Thuận",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2734\",\"properties\":{\"matinhxa\":\"27.2749\",\"maxa\":2749},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bến Lức (xã)",
- "truocsn": "Xã An Thạnh (huyện Bến Lức), Xã Thanh Phú, Thị trấn Bến Lức",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1351\",\"properties\":{\"matinhxa\":\"27.1363\",\"maxa\":1363},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bình Đức (xã)",
- "truocsn": "Xã Thạnh Đức (huyện Bến Lức), Xã Nhựt Chánh, Xã Bình Đức",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1313\",\"properties\":{\"matinhxa\":\"27.1325\",\"maxa\":1325},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Hiệp (xã)",
- "truocsn": "Xã Thạnh Trị, Xã Bình Tân, Xã Bình Hòa Tây, Xã Bình Hiệp",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1290\",\"properties\":{\"matinhxa\":\"27.1302\",\"maxa\":1302},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Hòa (xã)",
- "truocsn": "Xã Bình Thạnh (huyện Mộc Hóa), Xã Bình Hòa Đông, Xã Bình Hòa Trung",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1292\",\"properties\":{\"matinhxa\":\"27.1304\",\"maxa\":1304},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Minh (phường)",
- "truocsn": "Phường Ninh Sơn, Xã Tân Bình (thành phố Tây Ninh), Xã Bình Minh, Xã Thạnh Tân, Xã Suối Đá, Xã Phan",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2753\",\"properties\":{\"matinhxa\":\"27.2768\",\"maxa\":2768},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Thành (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Thạnh Hóa), Xã Thuận Bình, Xã Bình Hòa Hưng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1333\",\"properties\":{\"matinhxa\":\"27.1345\",\"maxa\":1345},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cần Đước (xã)",
- "truocsn": "Thị trấn Cần Đước, Xã Phước Tuy, Xã Tân Ân, Xã Tân Chánh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1296\",\"properties\":{\"matinhxa\":\"27.1308\",\"maxa\":1308},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cần Giuộc (xã)",
- "truocsn": "Thị trấn Cần Giuộc, Xã Phước Lại, Xã Long Hậu",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1327\",\"properties\":{\"matinhxa\":\"27.1339\",\"maxa\":1339},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cầu Khởi (xã)",
- "truocsn": "Xã Phước Ninh, Xã Cầu Khởi, Xã Chà Là",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2745\",\"properties\":{\"matinhxa\":\"27.2760\",\"maxa\":2760},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Châu Thành, Xã Đồng Khởi, Xã An Bình, Xã Thái Bình",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2749\",\"properties\":{\"matinhxa\":\"27.2764\",\"maxa\":2764},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông Thành (xã)",
- "truocsn": "Thị trấn Đông Thành, Xã Mỹ Thạnh Tây, Xã Mỹ Thạnh Đông, Xã Mỹ Bình",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1336\",\"properties\":{\"matinhxa\":\"27.1348\",\"maxa\":1348},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đức Hòa (xã)",
- "truocsn": "Thị trấn Đức Hòa, Xã Hựu Thạnh, Xã Đức Hòa Hạ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1340\",\"properties\":{\"matinhxa\":\"27.1352\",\"maxa\":1352},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đức Huệ (xã)",
- "truocsn": "Xã Bình Hòa Bắc, Xã Bình Hòa Nam, Xã Bình Thành",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1338\",\"properties\":{\"matinhxa\":\"27.1350\",\"maxa\":1350},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đức Lập (xã)",
- "truocsn": "Xã Đức Lập Hạ, Xã Mỹ Hạnh Bắc, Xã Đức Hòa Thượng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1348\",\"properties\":{\"matinhxa\":\"27.1360\",\"maxa\":1360},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Dương Minh Châu (xã)",
- "truocsn": "Thị trấn Dương Minh Châu, Xã Phan, Xã Suối Đá, Xã Phước Minh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2754\",\"properties\":{\"matinhxa\":\"27.2769\",\"maxa\":2769},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Gia Lộc (phường)",
- "truocsn": "Xã Phước Đông (huyện Gò Dầu), Phường Gia Lộc",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2735\",\"properties\":{\"matinhxa\":\"27.2750\",\"maxa\":2750},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Gò Dầu (phường)",
- "truocsn": "Phường Gia Bình, Thị trấn Gò Dầu, Xã Thanh Phước",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2733\",\"properties\":{\"matinhxa\":\"27.2748\",\"maxa\":2748},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hảo Đước (xã)",
- "truocsn": "Xã An Cơ, Xã Trí Bình, Xã Hảo Đước",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2752\",\"properties\":{\"matinhxa\":\"27.2767\",\"maxa\":2767},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hậu Nghĩa (xã)",
- "truocsn": "Thị trấn Hậu Nghĩa, Xã Đức Lập Thượng, Xã Tân Mỹ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1339\",\"properties\":{\"matinhxa\":\"27.1351\",\"maxa\":1351},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Hậu Thạnh (xã)",
- "truocsn": "Xã Hậu Thạnh Đông, Xã Hậu Thạnh Tây, Xã Bắc Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1331\",\"properties\":{\"matinhxa\":\"27.1343\",\"maxa\":1343},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hiệp Hòa (xã)",
- "truocsn": "Xã Tân Phú (huyện Đức Hòa), Xã Hiệp Hòa, Thị trấn Hiệp Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1342\",\"properties\":{\"matinhxa\":\"27.1354\",\"maxa\":1354},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hòa Hội (xã)",
- "truocsn": "Xã Biên Giới, Xã Hòa Thạnh, Xã Hòa Hội",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2750\",\"properties\":{\"matinhxa\":\"27.2765\",\"maxa\":2765},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hòa Khánh (xã)",
- "truocsn": "Xã Hòa Khánh Tây, Xã Hòa Khánh Nam, Xã Hòa Khánh Đông",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1349\",\"properties\":{\"matinhxa\":\"27.1361\",\"maxa\":1361},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hòa Thành (phường)",
- "truocsn": "Phường Long Thành Trung, Xã Long Thành Nam",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2740\",\"properties\":{\"matinhxa\":\"27.2755\",\"maxa\":2755},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hưng Điền (xã)",
- "truocsn": "Xã Hưng Hà, Xã Hưng Điền B, Xã Hưng Điền",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3362\",\"properties\":{\"matinhxa\":\"27.1295\",\"maxa\":1295},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hưng Thuận (xã)",
- "truocsn": "Xã Đôn Thuận, Xã Hưng Thuận",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2739\",\"properties\":{\"matinhxa\":\"27.2754\",\"maxa\":2754},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Khánh Hậu (phường)",
- "truocsn": "Phường Tân Khánh, Phường Khánh Hậu, Xã Lợi Bình Nhơn",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1282\",\"properties\":{\"matinhxa\":\"27.1293\",\"maxa\":1293},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Khánh Hưng (xã)",
- "truocsn": "Xã Hưng Điền A, Xã Thái Bình Trung, Xã Vĩnh Trị, Xã Thái Trị, Xã Khánh Hưng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1287\",\"properties\":{\"matinhxa\":\"27.1299\",\"maxa\":1299},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Kiến Tường (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3 (thị xã Kiến Tường)",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1289\",\"properties\":{\"matinhxa\":\"27.1301\",\"maxa\":1301},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Lộc Ninh (xã)",
- "truocsn": "Xã Bến Củi, Xã Lộc Ninh, Xã Phước Minh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2744\",\"properties\":{\"matinhxa\":\"27.2759\",\"maxa\":2759},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Long An (phường)",
- "truocsn": "Phường 1 (thành phố Tân An), Phường 3 (thành phố Tân An), Phường 4, Phường 5, Phường 6, Xã Hướng Thọ Phú, Xã Bình Thạnh (huyện Thủ Thừa)",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1280\",\"properties\":{\"matinhxa\":\"27.1291\",\"maxa\":1291},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Long Cang (xã)",
- "truocsn": "Xã Long Định, Xã Phước Vân, Xã Long Cang",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1323\",\"properties\":{\"matinhxa\":\"27.1335\",\"maxa\":1335},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Long Chữ (xã)",
- "truocsn": "Xã Long Vĩnh, Xã Long Phước, Xã Long Chữ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2738\",\"properties\":{\"matinhxa\":\"27.2753\",\"maxa\":2753},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Long Hoa (phường)",
- "truocsn": "Phường Long Thành Bắc, Phường Long Hoa, Xã Trường Hòa, Xã Trường Tây, Xã Trường Đông",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2747\",\"properties\":{\"matinhxa\":\"27.2762\",\"maxa\":2762},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Long Hựu (xã)",
- "truocsn": "Xã Long Hựu Đông, Xã Long Hựu Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1326\",\"properties\":{\"matinhxa\":\"27.1338\",\"maxa\":1338},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Long Thuận (xã)",
- "truocsn": "Xã Long Thuận (huyện Bến Cầu), Xã Long Giang, Xã Long Khánh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2736\",\"properties\":{\"matinhxa\":\"27.2751\",\"maxa\":2751},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lương Hòa (xã)",
- "truocsn": "Xã Tân Bửu, Xã Lương Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1312\",\"properties\":{\"matinhxa\":\"27.1324\",\"maxa\":1324},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Mộc Hóa (xã)",
- "truocsn": "Xã Tân Thành, Xã Tân Lập (huyện Mộc Hóa), Thị trấn Bình Phong Thạnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1293\",\"properties\":{\"matinhxa\":\"27.1305\",\"maxa\":1305},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mỹ An (xã)",
- "truocsn": "Xã Mỹ Phú, Xã Mỹ An",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1318\",\"properties\":{\"matinhxa\":\"27.1330\",\"maxa\":1330},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Mỹ Hạnh (xã)",
- "truocsn": "Xã Đức Hòa Đông, Xã Mỹ Hạnh Nam, Xã Đức Hòa Thượng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1350\",\"properties\":{\"matinhxa\":\"27.1362\",\"maxa\":1362},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Mỹ Lệ (xã)",
- "truocsn": "Xã Tân Trạch, Xã Long Sơn, Xã Mỹ Lệ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1324\",\"properties\":{\"matinhxa\":\"27.1336\",\"maxa\":1336},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Mỹ Lộc (xã)",
- "truocsn": "Xã Phước Lâm, Xã Thuận Thành, Xã Mỹ Lộc",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1329\",\"properties\":{\"matinhxa\":\"27.1341\",\"maxa\":1341},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Mỹ Quý (xã)",
- "truocsn": "Xã Mỹ Thạnh Bắc, Xã Mỹ Quý Đông, Xã Mỹ Quý Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1337\",\"properties\":{\"matinhxa\":\"27.1349\",\"maxa\":1349},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Mỹ Thạnh (xã)",
- "truocsn": "Xã Bình An, Xã Mỹ Lạc, Xã Mỹ Thạnh, Xã Tân Thành (huyện Thủ Thừa)",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1317\",\"properties\":{\"matinhxa\":\"27.1329\",\"maxa\":1329},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mỹ Yên (xã)",
- "truocsn": "Xã Long Hiệp, Xã Phước Lợi, Xã Mỹ Yên",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1314\",\"properties\":{\"matinhxa\":\"27.1326\",\"maxa\":1326},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Nhơn Hòa Lập (xã)",
- "truocsn": "Xã Tân Lập (huyện Tân Thạnh), Xã Nhơn Hòa, Xã Nhơn Hòa Lập",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1320\",\"properties\":{\"matinhxa\":\"27.1332\",\"maxa\":1332},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Nhơn Ninh (xã)",
- "truocsn": "Xã Tân Thành (huyện Tân Thạnh), Xã Tân Ninh, Xã Nhơn Ninh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1332\",\"properties\":{\"matinhxa\":\"27.1344\",\"maxa\":1344},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Nhựt Tảo (xã)",
- "truocsn": "Xã Tân Bình (huyện Tân Trụ), Xã Quê Mỹ Thạnh, Xã Lạc Tấn, Xã Nhị Thành, Thủ Thừa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1319\",\"properties\":{\"matinhxa\":\"27.1331\",\"maxa\":1331},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Ninh Điền (xã)",
- "truocsn": "Xã Thành Long, Xã Ninh Điền",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2743\",\"properties\":{\"matinhxa\":\"27.2758\",\"maxa\":2758},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Ninh Thạnh (phường)",
- "truocsn": "Phường Ninh Thạnh, Xã Bàu Năng, Xã Chà Là",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2751\",\"properties\":{\"matinhxa\":\"27.2766\",\"maxa\":2766},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phước Chỉ (xã)",
- "truocsn": "Xã Phước Bình, Xã Phước Chỉ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2730\",\"properties\":{\"matinhxa\":\"27.2745\",\"maxa\":2745},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phước Lý (xã)",
- "truocsn": "Xã Long Thượng, Xã Phước Hậu, Xã Phước Lý",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1328\",\"properties\":{\"matinhxa\":\"27.1340\",\"maxa\":1340},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Phước Thạnh (xã)",
- "truocsn": "Xã Hiệp Thạnh (huyện Gò Dầu), Xã Phước Trạch, Xã Phước Thạnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2737\",\"properties\":{\"matinhxa\":\"27.2752\",\"maxa\":2752},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phước Vinh (xã)",
- "truocsn": "Xã Hòa Hiệp, Xã Phước Vinh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2755\",\"properties\":{\"matinhxa\":\"27.2770\",\"maxa\":2770},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Phước Vĩnh Tây (xã)",
- "truocsn": "Xã Long An, Xã Long Phụng, Xã Phước Vĩnh Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1330\",\"properties\":{\"matinhxa\":\"27.1342\",\"maxa\":1342},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Rạch Kiến (xã)",
- "truocsn": "Xã Long Trạch, Xã Long Khê, Xã Long Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1322\",\"properties\":{\"matinhxa\":\"27.1334\",\"maxa\":1334},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Tầm Vu (xã)",
- "truocsn": "Thị trấn Tầm Vu, Xã Hiệp Thạnh (huyện Châu Thành), Xã Phú Ngãi Trị, Xã Phước Tân Hưng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1344\",\"properties\":{\"matinhxa\":\"27.1356\",\"maxa\":1356},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Tân An (phường)",
- "truocsn": "Phường 7, Xã Bình Tâm, Xã Nhơn Thạnh Trung, Xã An Vĩnh Ngãi",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1281\",\"properties\":{\"matinhxa\":\"27.1292\",\"maxa\":1292},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Tân Biên (xã)",
- "truocsn": "Xã Tân Bình (huyện Tân Biên), Xã Thạnh Tây, Thị trấn Tân Biên",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2759\",\"properties\":{\"matinhxa\":\"27.2774\",\"maxa\":2774},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tân Châu (xã)",
- "truocsn": "Thị trấn Tân Châu, Xã Thạnh Đông, Xã Tân Phú (huyện Tân Châu), Xã Suối Dây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2760\",\"properties\":{\"matinhxa\":\"27.2775\",\"maxa\":2775},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tân Đông (xã)",
- "truocsn": "Xã Tân Đông (huyện Tân Châu), Xã Tân Hà",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2764\",\"properties\":{\"matinhxa\":\"27.2779\",\"maxa\":2779},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tân Hòa (xã)",
- "truocsn": "Xã Tân Hòa (huyện Tân Châu), Xã Suối Ngô",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2762\",\"properties\":{\"matinhxa\":\"27.2777\",\"maxa\":2777},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tân Hội (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Tân Châu), Xã Tân Hội",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2763\",\"properties\":{\"matinhxa\":\"27.2778\",\"maxa\":2778},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tân Hưng (xã)",
- "truocsn": "Thị trấn Tân Hưng, Xã Vĩnh Thạnh, Xã Vĩnh Lợi",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1283\",\"properties\":{\"matinhxa\":\"27.1294\",\"maxa\":1294},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Lân (xã)",
- "truocsn": "Xã Phước Đông (huyện Cần Đước), Xã Tân Lân",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1325\",\"properties\":{\"matinhxa\":\"27.1337\",\"maxa\":1337},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Lập (xã)",
- "truocsn": "Xã Tân Lập (huyện Tân Biên), Xã Thạnh Bắc",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2765\",\"properties\":{\"matinhxa\":\"27.2780\",\"maxa\":2780},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Long (xã)",
- "truocsn": "Xã Long Thuận (huyện Thủ Thừa), Xã Long Thạnh, Xã Tân Long",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1316\",\"properties\":{\"matinhxa\":\"27.1328\",\"maxa\":1328},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tân Ninh (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3 (thành phố Tây Ninh), Phường IV, Phường Hiệp Ninh, Xã Thái Bình",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2748\",\"properties\":{\"matinhxa\":\"27.2763\",\"maxa\":2763},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tân Phú (xã)",
- "truocsn": "Xã Tân Hưng, Xã Mỏ Công, Xã Trà Vong, Xã Tân Phong, Xã Tân Phú (huyện Tân Châu)",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2757\",\"properties\":{\"matinhxa\":\"27.2772\",\"maxa\":2772},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tân Tập (xã)",
- "truocsn": "Xã Đông Thạnh, Xã Phước Vĩnh Đông, Xã Tân Tập",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1343\",\"properties\":{\"matinhxa\":\"27.1355\",\"maxa\":1355},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Tân Tây (xã)",
- "truocsn": "Xã Tân Đông (huyện Thạnh Hóa), Xã Thủy Đông, Xã Tân Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1335\",\"properties\":{\"matinhxa\":\"27.1347\",\"maxa\":1347},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Thành (huyện Tân Châu), Xã Suối Dây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2758\",\"properties\":{\"matinhxa\":\"27.2773\",\"maxa\":2773},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tân Thạnh (xã)",
- "truocsn": "Xã Tân Bình, Xã Tân Hòa (huyện Tân Thạnh), Xã Kiến Bình, Thị trấn Tân Thạnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1310\",\"properties\":{\"matinhxa\":\"27.1322\",\"maxa\":1322},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Tân Trụ (xã)",
- "truocsn": "Thị trấn Tân Trụ, Xã Bình Trinh Đông, Xã Bình Lãng, Xã Bình Tịnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1347\",\"properties\":{\"matinhxa\":\"27.1359\",\"maxa\":1359},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thạnh Bình (xã)",
- "truocsn": "Xã Thạnh Bình, Xã Tân Phong",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2761\",\"properties\":{\"matinhxa\":\"27.2776\",\"maxa\":2776},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thanh Điền (phường)",
- "truocsn": "Phường Hiệp Tân, Xã Thanh Điền",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2746\",\"properties\":{\"matinhxa\":\"27.2761\",\"maxa\":2761},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thạnh Đức (xã)",
- "truocsn": "Xã Thạnh Đức (huyện Gò Dầu), Xã Cẩm Giang",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2742\",\"properties\":{\"matinhxa\":\"27.2757\",\"maxa\":2757},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Thạnh Hóa (xã)",
- "truocsn": "Thị trấn Thạnh Hóa, Xã Thủy Tây, Xã Thạnh An",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1294\",\"properties\":{\"matinhxa\":\"27.1306\",\"maxa\":1306},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Thạnh Lợi (xã)",
- "truocsn": "Xã Thạnh Hòa, Xã Lương Bình, Xã Thạnh Lợi",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1311\",\"properties\":{\"matinhxa\":\"27.1323\",\"maxa\":1323},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Thạnh Phước (xã)",
- "truocsn": "Xã Thuận Nghĩa Hòa, Xã Thạnh Phú, Xã Thạnh Phước",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1334\",\"properties\":{\"matinhxa\":\"27.1346\",\"maxa\":1346},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Thủ Thừa (xã)",
- "truocsn": "Thị trấn Thủ Thừa, Xã Bình Thạnh, Xã Tân Thành (huyện Thủ Thừa), Xã Nhị Thành",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1315\",\"properties\":{\"matinhxa\":\"27.1327\",\"maxa\":1327},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Thuận Mỹ (xã)",
- "truocsn": "Xã Thanh Phú Long, Xã Thanh Vĩnh Đông, Xã Thuận Mỹ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1295\",\"properties\":{\"matinhxa\":\"27.1307\",\"maxa\":1307},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Trà Vong (xã)",
- "truocsn": "Xã Mỏ Công, Xã Trà Vong",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2756\",\"properties\":{\"matinhxa\":\"27.2771\",\"maxa\":2771},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Trảng Bàng (phường)",
- "truocsn": "Phường An Hòa, Phường Trảng Bàng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2731\",\"properties\":{\"matinhxa\":\"27.2746\",\"maxa\":2746},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Truông Mít (xã)",
- "truocsn": "Xã Bàu Đồn, Xã Truông Mít",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2741\",\"properties\":{\"matinhxa\":\"27.2756\",\"maxa\":2756},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tuyên Bình (xã)",
- "truocsn": "Xã Tuyên Bình, Xã Tuyên Bình Tây, Xã Vĩnh Bình, Xã Vĩnh Thuận, Xã Thái Bình Trung",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1288\",\"properties\":{\"matinhxa\":\"27.1300\",\"maxa\":1300},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tuyên Thạnh (xã)",
- "truocsn": "Xã Thạnh Hưng (thị xã Kiến Tường), Xã Tuyên Thạnh, Xã Bắc Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1291\",\"properties\":{\"matinhxa\":\"27.1303\",\"maxa\":1303},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Vàm Cỏ (xã)",
- "truocsn": "Xã Tân Phước Tây, Xã Nhựt Ninh, Xã Đức Tân",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1321\",\"properties\":{\"matinhxa\":\"27.1333\",\"maxa\":1333},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vĩnh Châu (xã)",
- "truocsn": "Xã Vĩnh Đại, Xã Vĩnh Bửu, Xã Vĩnh Châu A",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1285\",\"properties\":{\"matinhxa\":\"27.1297\",\"maxa\":1297},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vĩnh Công (xã)",
- "truocsn": "Xã Hòa Phú, Xã Bình Quới, Xã Vĩnh Công",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1345\",\"properties\":{\"matinhxa\":\"27.1357\",\"maxa\":1357},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Vĩnh Hưng (xã)",
- "truocsn": "Thị trấn Vĩnh Hưng, Xã Vĩnh Trị, Xã Thái Trị, Xã Khánh Hưng, Xã Thái Bình Trung, Xã Vĩnh Thuận, Xã Vĩnh Bình",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1286\",\"properties\":{\"matinhxa\":\"27.1298\",\"maxa\":1298},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Vĩnh Thạnh (xã)",
- "truocsn": "Xã Thạnh Hưng (huyện Tân Hưng), Xã Vĩnh Châu B, Xã Hưng Thạnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1284\",\"properties\":{\"matinhxa\":\"27.1296\",\"maxa\":1296},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Lộc (phường)",
- "truocsn": "Phường Phú Thịnh, Xã Thanh Phú, Xã Thanh Lương",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2296\",\"properties\":{\"matinhxa\":\"28.2310\",\"maxa\":2310},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Phước (xã)",
- "truocsn": "Xã Tam An, Xã An Phước",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3131\",\"properties\":{\"matinhxa\":\"28.3147\",\"maxa\":3147},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Viễn (xã)",
- "truocsn": "Xã Đồi 61, Xã An Viễn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3121\",\"properties\":{\"matinhxa\":\"28.3137\",\"maxa\":3137},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bảo Vinh (phường)",
- "truocsn": "Phường Bảo Vinh, Xã Bảo Quang",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3143\",\"properties\":{\"matinhxa\":\"28.3159\",\"maxa\":3159},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bàu Hàm (xã)",
- "truocsn": "Xã Thanh Bình (huyện Trảng Bom), Xã Cây Gáo, Xã Sông Thao, Xã Bàu Hàm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3118\",\"properties\":{\"matinhxa\":\"28.3134\",\"maxa\":3134},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Biên Hòa (phường)",
- "truocsn": "Phường Tân Hạnh, Phường Hóa An, Phường Bửu Hòa, Phường Tân Vạn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3140\",\"properties\":{\"matinhxa\":\"28.3156\",\"maxa\":3156},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Long Đức, Xã Bình An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3132\",\"properties\":{\"matinhxa\":\"28.3148\",\"maxa\":3148},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Lộc (phường)",
- "truocsn": "Phường Suối Tre, Xã Xuân Thiện, Xã Bình Lộc",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3142\",\"properties\":{\"matinhxa\":\"28.3158\",\"maxa\":3158},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Long (phường)",
- "truocsn": "Phường An Lộc, Phường Hưng Chiến, Phường Phú Đức, Xã Thanh Bình (huyện Hớn Quản)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2295\",\"properties\":{\"matinhxa\":\"28.2309\",\"maxa\":2309},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Minh (xã)",
- "truocsn": "Xã Bình Minh (huyện Trảng Bom), Xã Bắc Sơn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3120\",\"properties\":{\"matinhxa\":\"28.3136\",\"maxa\":3136},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Phước (phường)",
- "truocsn": "Phường Tân Phú, Phường Tân Đồng, Phường Tân Thiện, Phường Tân Bình, Phường Tân Xuân, Xã Tiến Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2277\",\"properties\":{\"matinhxa\":\"28.2291\",\"maxa\":2291},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Tân (xã)",
- "truocsn": "Xã Long Hưng (huyện Phú Riềng), Xã Long Bình, Xã Bình Tân",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2282\",\"properties\":{\"matinhxa\":\"28.2296\",\"maxa\":2296},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bom Bo (xã)",
- "truocsn": "Xã Bình Minh (huyện Bù Đăng), Xã Bom Bo",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2308\",\"properties\":{\"matinhxa\":\"28.2322\",\"maxa\":2322},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bù Đăng (xã)",
- "truocsn": "Thị trấn Đức Phong, Xã Đoàn Kết, Xã Minh Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2305\",\"properties\":{\"matinhxa\":\"28.2319\",\"maxa\":2319},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Bù Gia Mập (xã)",
- "truocsn": "xã Bù Gia Mập (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2311\",\"properties\":{\"matinhxa\":\"28.2325\",\"maxa\":2325},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cẩm Mỹ (xã)",
- "truocsn": "Thị trấn Long Giao, Xã Nhân Nghĩa, Xã Xuân Mỹ, Xã Bảo Bình",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3104\",\"properties\":{\"matinhxa\":\"28.3120\",\"maxa\":3120},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Chơn Thành (phường)",
- "truocsn": "Phường Hưng Long, Phường Thành Tâm, Phường Minh Thành",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2315\",\"properties\":{\"matinhxa\":\"28.2329\",\"maxa\":2329},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đa Kia (xã)",
- "truocsn": "Xã Phước Minh, Xã Bình Thắng, Xã Đa Kia",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2281\",\"properties\":{\"matinhxa\":\"28.2295\",\"maxa\":2295},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đại Phước (xã)",
- "truocsn": "Xã Phú Hữu, Xã Phú Đông, Xã Phước Khánh, Xã Đại Phước",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3152\",\"properties\":{\"matinhxa\":\"28.3168\",\"maxa\":3168},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đak Lua (xã)",
- "truocsn": "xã Đak Lua (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3154\",\"properties\":{\"matinhxa\":\"28.3170\",\"maxa\":3170},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đak Nhau (xã)",
- "truocsn": "Xã Đường 10, Xã Đak Nhau",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2306\",\"properties\":{\"matinhxa\":\"28.2320\",\"maxa\":2320},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đăk Ơ (xã)",
- "truocsn": "xã Đăk Ơ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2302\",\"properties\":{\"matinhxa\":\"28.2316\",\"maxa\":2316},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Dầu Giây (xã)",
- "truocsn": "Thị trấn Dầu Giây, Xã Hưng Lộc, Xã Bàu Hàm 2, Xã Lộ 25",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3123\",\"properties\":{\"matinhxa\":\"28.3139\",\"maxa\":3139},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Định Quán (xã)",
- "truocsn": "Thị trấn Định Quán, Xã Phú Ngọc, Xã Gia Canh, Xã Ngọc Định",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3156\",\"properties\":{\"matinhxa\":\"28.3172\",\"maxa\":3172},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đồng Phú (xã)",
- "truocsn": "Thị trấn Tân Phú, Xã Tân Tiến (huyện Đồng Phú), Xã Tân Lập",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2313\",\"properties\":{\"matinhxa\":\"28.2327\",\"maxa\":2327},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đồng Tâm (xã)",
- "truocsn": "Xã Đồng Tiến, Xã Tân Phước, Xã Đồng Tâm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2304\",\"properties\":{\"matinhxa\":\"28.2318\",\"maxa\":2318},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đồng Xoài (phường)",
- "truocsn": "Phường Tiến Thành, Xã Tân Thành (thành phố Đồng Xoài)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2278\",\"properties\":{\"matinhxa\":\"28.2292\",\"maxa\":2292},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Gia Kiệm (xã)",
- "truocsn": "Xã Quang Trung, Xã Gia Tân 3, Xã Gia Kiệm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3122\",\"properties\":{\"matinhxa\":\"28.3138\",\"maxa\":3138},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hàng Gòn (phường)",
- "truocsn": "Phường Xuân Tân, Xã Hàng Gòn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3144\",\"properties\":{\"matinhxa\":\"28.3160\",\"maxa\":3160},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hố Nai (phường)",
- "truocsn": "Phường Tân Hòa, Xã Hố Nai 3",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3108\",\"properties\":{\"matinhxa\":\"28.3124\",\"maxa\":3124},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hưng Phước (xã)",
- "truocsn": "Xã Phước Thiện, Xã Hưng Phước",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2294\",\"properties\":{\"matinhxa\":\"28.2308\",\"maxa\":2308},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hưng Thịnh (xã)",
- "truocsn": "Xã Đông Hòa, Xã Tây Hòa, Xã Trung Hòa, Xã Hưng Thịnh",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3119\",\"properties\":{\"matinhxa\":\"28.3135\",\"maxa\":3135},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "La Ngà (xã)",
- "truocsn": "Xã Túc Trưng, Xã La Ngà",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3115\",\"properties\":{\"matinhxa\":\"28.3131\",\"maxa\":3131},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Lộc Hưng (xã)",
- "truocsn": "Xã Lộc Khánh, Xã Lộc Điền, Xã Lộc Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2292\",\"properties\":{\"matinhxa\":\"28.2306\",\"maxa\":2306},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Lộc Ninh (xã)",
- "truocsn": "Thị trấn Lộc Ninh, Xã Lộc Thái, Xã Lộc Thuận",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2286\",\"properties\":{\"matinhxa\":\"28.2300\",\"maxa\":2300},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Lộc Quang (xã)",
- "truocsn": "Xã Lộc Phú, Xã Lộc Hiệp, Xã Lộc Quang",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2290\",\"properties\":{\"matinhxa\":\"28.2304\",\"maxa\":2304},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Lộc Tấn (xã)",
- "truocsn": "Xã Lộc Thiện, Xã Lộc Tấn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2289\",\"properties\":{\"matinhxa\":\"28.2303\",\"maxa\":2303},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lộc Thành (xã)",
- "truocsn": "Xã Lộc Thịnh, Xã Lộc Thành",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2291\",\"properties\":{\"matinhxa\":\"28.2305\",\"maxa\":2305},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lộc Thạnh (xã)",
- "truocsn": "Xã Lộc Hòa, Xã Lộc Thạnh",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2287\",\"properties\":{\"matinhxa\":\"28.2301\",\"maxa\":2301},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Long Bình (phường)",
- "truocsn": "Phường Hố Nai, Phường Tân Biên, Phường Long Bình",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3107\",\"properties\":{\"matinhxa\":\"28.3123\",\"maxa\":3123},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Long Hà (xã)",
- "truocsn": "Xã Long Tân (huyện Phú Riềng), Xã Long Hà",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2283\",\"properties\":{\"matinhxa\":\"28.2297\",\"maxa\":2297},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Long Hưng (phường)",
- "truocsn": "Phường Long Bình Tân, Phường An Hòa, Xã Long Hưng (thành phố Biên Hòa)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3139\",\"properties\":{\"matinhxa\":\"28.3155\",\"maxa\":3155},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Long Khánh (phường)",
- "truocsn": "Xã Xuân An, Xã Xuân Bình, Xã Xuân Hòa, Xã Phú Bình, Xã Bàu Trâm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3141\",\"properties\":{\"matinhxa\":\"28.3157\",\"maxa\":3157},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Long Phước (xã)",
- "truocsn": "Xã Bàu Cạn, Xã Long Phước",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3134\",\"properties\":{\"matinhxa\":\"28.3150\",\"maxa\":3150},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Long Thành (xã)",
- "truocsn": "Thị trấn Long Thành, Xã Lộc An, Xã Bình Sơn (huyện Long Thành), Xã Long An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3128\",\"properties\":{\"matinhxa\":\"28.3144\",\"maxa\":3144},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Minh Đức (xã)",
- "truocsn": "Xã An Phú, Xã Minh Tâm, Xã Minh Đức",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2298\",\"properties\":{\"matinhxa\":\"28.2312\",\"maxa\":2312},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Minh Hưng (phường)",
- "truocsn": "Phường Minh Long, Phường Minh Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2316\",\"properties\":{\"matinhxa\":\"28.2330\",\"maxa\":2330},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Nam Cát Tiên (xã)",
- "truocsn": "Xã Phú An, Xã Nam Cát Tiên",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3157\",\"properties\":{\"matinhxa\":\"28.3173\",\"maxa\":3173},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Nghĩa Trung (xã)",
- "truocsn": "Xã Đức Liễu, Xã Nghĩa Bình, Xã Nghĩa Trung",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2309\",\"properties\":{\"matinhxa\":\"28.2323\",\"maxa\":2323},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Nha Bích (xã)",
- "truocsn": "Xã Minh Thắng, Xã Minh Lập, Xã Nha Bích",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2312\",\"properties\":{\"matinhxa\":\"28.2326\",\"maxa\":2326},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Nhơn Trạch (xã)",
- "truocsn": "Thị trấn Hiệp Phước, Xã Long Tân (huyện Nhơn Trạch), Xã Phú Thạnh, Xã Phú Hội, Xã Phước Thiền",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3151\",\"properties\":{\"matinhxa\":\"28.3167\",\"maxa\":3167},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phú Hòa (xã)",
- "truocsn": "Xã Phú Điền, Xã Phú Lợi, Xã Phú Hòa",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3114\",\"properties\":{\"matinhxa\":\"28.3130\",\"maxa\":3130},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phú Lâm (xã)",
- "truocsn": "Xã Thanh Sơn, Xã Phú Sơn (huyện Tân Phú), Xã Phú Bình, Xã Phú Lâm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3109\",\"properties\":{\"matinhxa\":\"28.3125\",\"maxa\":3125},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phú Lý (xã)",
- "truocsn": "xã Phú Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3155\",\"properties\":{\"matinhxa\":\"28.3171\",\"maxa\":3171},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phú Nghĩa (xã)",
- "truocsn": "Xã Phú Văn, Xã Đức Hạnh, Xã Phú Nghĩa",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2285\",\"properties\":{\"matinhxa\":\"28.2299\",\"maxa\":2299},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phú Riềng (xã)",
- "truocsn": "Xã Bù Nho, Xã Phú Riềng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2284\",\"properties\":{\"matinhxa\":\"28.2298\",\"maxa\":2298},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Phú Trung (xã)",
- "truocsn": "Xã Phước Tân, Xã Phú Trung",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2303\",\"properties\":{\"matinhxa\":\"28.2317\",\"maxa\":2317},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phú Vinh (xã)",
- "truocsn": "Xã Phú Tân, Xã Phú Vinh",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3113\",\"properties\":{\"matinhxa\":\"28.3129\",\"maxa\":3129},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Phước An (xã)",
- "truocsn": "Xã Phước An (huyện Nhơn Trạch), Xã Vĩnh Thanh, Xã Long Thọ",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3153\",\"properties\":{\"matinhxa\":\"28.3169\",\"maxa\":3169},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Phước Bình (phường)",
- "truocsn": "Phường Long Phước, Phường Phước Bình, Xã Bình Sơn (huyện Phú Riềng), Xã Long Giang",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2280\",\"properties\":{\"matinhxa\":\"28.2294\",\"maxa\":2294},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phước Long (phường)",
- "truocsn": "Phường Long Thủy, Phường Thác Mơ, Phường Sơn Giang, Xã Phước Tín",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2279\",\"properties\":{\"matinhxa\":\"28.2293\",\"maxa\":2293},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phước Sơn (xã)",
- "truocsn": "Xã Đăng Hà, Xã Thống Nhất, Xã Phước Sơn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2310\",\"properties\":{\"matinhxa\":\"28.2324\",\"maxa\":2324},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phước Tân (phường)",
- "truocsn": "phường Phước Tân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3130\",\"properties\":{\"matinhxa\":\"28.3146\",\"maxa\":3146},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Phước Thái (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Long Thành), Xã Phước Bình, Xã Phước Thái",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3135\",\"properties\":{\"matinhxa\":\"28.3151\",\"maxa\":3151},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Sông Ray (xã)",
- "truocsn": "Xã Lâm San, Xã Sông Ray",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3127\",\"properties\":{\"matinhxa\":\"28.3143\",\"maxa\":3143},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tà Lài (xã)",
- "truocsn": "Xã Phú Thịnh, Xã Phú Lập, Xã Tà Lài",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3158\",\"properties\":{\"matinhxa\":\"28.3174\",\"maxa\":3174},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tam Hiệp (phường)",
- "truocsn": "Phường Tân Hiệp, Phường Tân Mai, Phường Bình Đa, Phường Tam Hiệp",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3137\",\"properties\":{\"matinhxa\":\"28.3153\",\"maxa\":3153},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tam Phước (phường)",
- "truocsn": "phường Tam Phước (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3129\",\"properties\":{\"matinhxa\":\"28.3145\",\"maxa\":3145},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Vĩnh Tân, Xã Tân An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3111\",\"properties\":{\"matinhxa\":\"28.3127\",\"maxa\":3127},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Hưng (xã)",
- "truocsn": "Xã Tân Hưng (huyện Hớn Quản), Xã An Khương, Xã Thanh An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2297\",\"properties\":{\"matinhxa\":\"28.2311\",\"maxa\":2311},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Khai (xã)",
- "truocsn": "Thị trấn Tân Khai, Xã Tân Hiệp (huyện Hớn Quản), Xã Đồng Nơ",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2300\",\"properties\":{\"matinhxa\":\"28.2314\",\"maxa\":2314},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tân Lợi (xã)",
- "truocsn": "Xã Tân Hưng, Xã Tân Lợi (huyện Đồng Phú), Xã Tân Hòa",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2314\",\"properties\":{\"matinhxa\":\"28.2328\",\"maxa\":2328},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tân Phú (xã)",
- "truocsn": "Thị trấn Tân Phú (huyện Tân Phú), Xã Phú Lộc, Xã Trà Cổ, Xã Phú Thanh, Xã Phú Xuân",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3145\",\"properties\":{\"matinhxa\":\"28.3161\",\"maxa\":3161},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tân Quan (xã)",
- "truocsn": "Xã Phước An, Xã Tân Lợi (huyện Hớn Quản), Xã Quang Minh, Xã Tân Quan",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2299\",\"properties\":{\"matinhxa\":\"28.2313\",\"maxa\":2313},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Tân Thành, Xã Tân Tiến (huyện Bù Đốp), Xã Lộc An (huyện Lộc Ninh)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2288\",\"properties\":{\"matinhxa\":\"28.2302\",\"maxa\":2302},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tân Triều (phường)",
- "truocsn": "Phường Tân Phong, Xã Tân Bình, Xã Bình Lợi, Xã Thạnh Phú",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3106\",\"properties\":{\"matinhxa\":\"28.3122\",\"maxa\":3122},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thanh Sơn (xã)",
- "truocsn": "xã Thanh Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3112\",\"properties\":{\"matinhxa\":\"28.3128\",\"maxa\":3128},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thiện Hưng (xã)",
- "truocsn": "Thị trấn Thanh Bình, Xã Thanh Hòa, Xã Thiện Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2293\",\"properties\":{\"matinhxa\":\"28.2307\",\"maxa\":2307},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thọ Sơn (xã)",
- "truocsn": "Xã Phú Sơn (huyện Bù Đăng), Xã Đồng Nai, Xã Thọ Sơn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2307\",\"properties\":{\"matinhxa\":\"28.2321\",\"maxa\":2321},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thống Nhất (xã)",
- "truocsn": "Xã Gia Tân 1, Xã Gia Tân 2, Xã Phú Cường, Xã Phú Túc",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3116\",\"properties\":{\"matinhxa\":\"28.3132\",\"maxa\":3132},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thuận Lợi (xã)",
- "truocsn": "Xã Thuận Phú, Xã Thuận Lợi",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2301\",\"properties\":{\"matinhxa\":\"28.2315\",\"maxa\":2315},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Trấn Biên (phường)",
- "truocsn": "Phường Bửu Long, Phường Quang Vinh, Phường Trung Dũng, Phường Thống Nhất, Phường Hiệp Hòa, Phường An Bình",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3138\",\"properties\":{\"matinhxa\":\"28.3154\",\"maxa\":3154},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trảng Bom (xã)",
- "truocsn": "Thị trấn Trảng Bom, Xã Quảng Tiến, Xã Sông Trầu, Xã Giang Điền",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3117\",\"properties\":{\"matinhxa\":\"28.3133\",\"maxa\":3133},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Trảng Dài (phường)",
- "truocsn": "Phường Trảng Dài, Xã Thiện Tân",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3105\",\"properties\":{\"matinhxa\":\"28.3121\",\"maxa\":3121},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Trị An (xã)",
- "truocsn": "Thị trấn Vĩnh An, Xã Mã Đà, Xã Trị An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3110\",\"properties\":{\"matinhxa\":\"28.3126\",\"maxa\":3126},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Xuân Bắc (xã)",
- "truocsn": "Xã Suối Nho, Xã Xuân Bắc",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3146\",\"properties\":{\"matinhxa\":\"28.3162\",\"maxa\":3162},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Xuân Định (xã)",
- "truocsn": "Xã Xuân Bảo, Xã Bảo Hòa, Xã Xuân Định",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3150\",\"properties\":{\"matinhxa\":\"28.3166\",\"maxa\":3166},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Xuân Đông (xã)",
- "truocsn": "Xã Xuân Tây, Xã Xuân Đông, Xã Xuân Tâm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3126\",\"properties\":{\"matinhxa\":\"28.3142\",\"maxa\":3142},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Xuân Đường (xã)",
- "truocsn": "Xã Cẩm Đường, Xã Thừa Đức, Xã Xuân Đường",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3125\",\"properties\":{\"matinhxa\":\"28.3141\",\"maxa\":3141},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Xuân Hòa (xã)",
- "truocsn": "Xã Xuân Hưng, Xã Xuân Hòa, Xã Xuân Tâm (phần còn lại sau khi sáp nhập vào xã Xuân Đông)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3148\",\"properties\":{\"matinhxa\":\"28.3164\",\"maxa\":3164},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Xuân Lập (phường)",
- "truocsn": "Phường Bàu Sen, Phường Xuân Lập",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3133\",\"properties\":{\"matinhxa\":\"28.3149\",\"maxa\":3149},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Xuân Lộc (xã)",
- "truocsn": "Thị trấn Gia Ray, Xã Xuân Thọ, Xã Xuân Trường, Xã Suối Cát, Xã Xuân Hiệp",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3136\",\"properties\":{\"matinhxa\":\"28.3152\",\"maxa\":3152},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Xuân Phú (xã)",
- "truocsn": "Xã Lang Minh, Xã Xuân Phú",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3149\",\"properties\":{\"matinhxa\":\"28.3165\",\"maxa\":3165},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Xuân Quế (xã)",
- "truocsn": "Xã Sông Nhạn, Xã Xuân Quế",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3124\",\"properties\":{\"matinhxa\":\"28.3140\",\"maxa\":3140},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Xuân Thành (xã)",
- "truocsn": "Xã Suối Cao, Xã Xuân Thành",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3147\",\"properties\":{\"matinhxa\":\"28.3163\",\"maxa\":3163},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Đông (phường)",
- "truocsn": "Phường 5, Phường 7, Phường 9 (Quận 5)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.173\",\"properties\":{\"matinhxa\":\"29.173\",\"maxa\":173},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Hội Đông (phường)",
- "truocsn": "Phường 15, Phường 16 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.74\",\"properties\":{\"matinhxa\":\"29.74\",\"maxa\":74},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Hội Tây (phường)",
- "truocsn": "Phường 12, Phường 14 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.77\",\"properties\":{\"matinhxa\":\"29.77\",\"maxa\":77},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Khánh (phường)",
- "truocsn": "Phường Thủ Thiêm, Phường An Lợi Đông, Phường Thảo Điền, Phường An Khánh, Phường An Phú (thành phố Thủ Đức)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.131\",\"properties\":{\"matinhxa\":\"29.131\",\"maxa\":131},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Lạc (phường)",
- "truocsn": "Phường Bình Trị Đông B, Phường An Lạc A, Phường An Lạc",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.224\",\"properties\":{\"matinhxa\":\"29.224\",\"maxa\":224},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Long (xã)",
- "truocsn": "Xã An Linh, Xã Tân Long, Xã An Long",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.20\",\"properties\":{\"matinhxa\":\"29.20\",\"maxa\":20},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "An Nhơn (phường)",
- "truocsn": "Phường 5, Phường 6 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.76\",\"properties\":{\"matinhxa\":\"29.76\",\"maxa\":76},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "An Nhơn Tây (xã)",
- "truocsn": "Xã Phú Mỹ Hưng, Xã An Phú, Xã An Nhơn Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.187\",\"properties\":{\"matinhxa\":\"29.187\",\"maxa\":187},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "An Phú (phường)",
- "truocsn": "Phường An Phú (thành phố Thuận An), Phường Bình Chuẩn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.35\",\"properties\":{\"matinhxa\":\"29.35\",\"maxa\":35},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "An Phú Đông (phường)",
- "truocsn": "Phường Thạnh Lộc, Phường An Phú Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.217\",\"properties\":{\"matinhxa\":\"29.217\",\"maxa\":217},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "An Thới Đông (xã)",
- "truocsn": "Xã Lý Nhơn, Xã An Thới Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.215\",\"properties\":{\"matinhxa\":\"29.215\",\"maxa\":215},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bà Điểm (xã)",
- "truocsn": "Xã Xuân Thới Thượng, Xã Trung Chánh, Xã Bà Điểm",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.201\",\"properties\":{\"matinhxa\":\"29.201\",\"maxa\":201},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bà Rịa (phường)",
- "truocsn": "Phường Phước Trung, Phường Phước Nguyên, Phường Long Toàn, Phường Phước Hưng",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2208\",\"properties\":{\"matinhxa\":\"29.2222\",\"maxa\":2222},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bắc Tân Uyên (xã)",
- "truocsn": "Thị trấn Tân Thành, Xã Đất Cuốc, Xã Tân Định",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.24\",\"properties\":{\"matinhxa\":\"29.24\",\"maxa\":24},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Bàn Cờ (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3, Phường 5, Phường 4 (Quận 3)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.141\",\"properties\":{\"matinhxa\":\"29.141\",\"maxa\":141},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Bàu Bàng (xã)",
- "truocsn": "Thị trấn Lai Uyên",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.12\",\"properties\":{\"matinhxa\":\"29.12\",\"maxa\":12},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Bàu Lâm (xã)",
- "truocsn": "Xã Tân Lâm, Xã Bàu Lâm",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2219\",\"properties\":{\"matinhxa\":\"29.2233\",\"maxa\":2233},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Bảy Hiền (phường)",
- "truocsn": "Phường 10, Phường 11, Phường 12 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.112\",\"properties\":{\"matinhxa\":\"29.112\",\"maxa\":112},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Bến Cát (phường)",
- "truocsn": "Xã Tân Hưng (huyện Bàu Bàng), Xã Lai Hưng, Phường Mỹ Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.10\",\"properties\":{\"matinhxa\":\"29.10\",\"maxa\":10},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Bến Thành (phường)",
- "truocsn": "Phường Bến Thành, Phường Phạm Ngũ Lão, Phường Cầu Ông Lãnh, Phường Nguyễn Thái Bình",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.41\",\"properties\":{\"matinhxa\":\"29.41\",\"maxa\":41},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Bình Chánh (xã)",
- "truocsn": "Xã Tân Quý Tây, Xã Bình Chánh, Xã An Phú Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.208\",\"properties\":{\"matinhxa\":\"29.208\",\"maxa\":208},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Bình Châu (xã)",
- "truocsn": "xã Bình Châu (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2222\",\"properties\":{\"matinhxa\":\"29.2236\",\"maxa\":2236},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Bình Cơ (phường)",
- "truocsn": "Xã Bình Mỹ (huyện Bắc Tân Uyên), Phường Hội Nghĩa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.25\",\"properties\":{\"matinhxa\":\"29.25\",\"maxa\":25},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Bình Đông (phường)",
- "truocsn": "Phường 6 (Quận 8), Phường 7 (Quận 8), Xã An Phú Tây, Phường 5 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.211\",\"properties\":{\"matinhxa\":\"29.211\",\"maxa\":211},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Bình Dương (phường)",
- "truocsn": "Phường Phú Mỹ (thành phố Thủ Dầu Một), Phường Hòa Phú, Phường Phú Tân, Phường Phú Chánh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.4\",\"properties\":{\"matinhxa\":\"29.4\",\"maxa\":4},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Bình Giã (xã)",
- "truocsn": "Xã Bình Trung, Xã Quảng Thành, Xã Bình Giã",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2214\",\"properties\":{\"matinhxa\":\"29.2228\",\"maxa\":2228},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Bình Hòa (phường)",
- "truocsn": "Phường Bình Hòa, Phường Vĩnh Phú",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.36\",\"properties\":{\"matinhxa\":\"29.36\",\"maxa\":36},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Bình Hưng (xã)",
- "truocsn": "Xã Phong Phú, Xã Bình Hưng, Phường 7 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.206\",\"properties\":{\"matinhxa\":\"29.206\",\"maxa\":206},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Bình Hưng Hòa (phường)",
- "truocsn": "Phường Bình Hưng Hòa, Phường Sơn Kỳ, Phường Bình Hưng Hòa A",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.212\",\"properties\":{\"matinhxa\":\"29.212\",\"maxa\":212},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Bình Khánh (xã)",
- "truocsn": "Xã Tam Thôn Hiệp, Xã Bình Khánh, Xã An Thới Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.214\",\"properties\":{\"matinhxa\":\"29.214\",\"maxa\":214},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Bình Lợi (xã)",
- "truocsn": "Xã Lê Minh Xuân, Xã Bình Lợi",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.205\",\"properties\":{\"matinhxa\":\"29.205\",\"maxa\":205},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Bình Lợi Trung (phường)",
- "truocsn": "Phường 5, Phường 11, Phường 13 (quận Bình Thạnh)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.92\",\"properties\":{\"matinhxa\":\"29.92\",\"maxa\":92},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Bình Mỹ (xã)",
- "truocsn": "Xã Bình Mỹ (huyện Củ Chi), Xã Hòa Phú, Xã Trung An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.195\",\"properties\":{\"matinhxa\":\"29.195\",\"maxa\":195},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Bình Phú (phường)",
- "truocsn": "Phường 10, Phường 11 (Quận 6), Phường 16 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.188\",\"properties\":{\"matinhxa\":\"29.188\",\"maxa\":188},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Bình Quới (phường)",
- "truocsn": "Phường 27, Phường 28",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.96\",\"properties\":{\"matinhxa\":\"29.96\",\"maxa\":96},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Bình Tân (phường)",
- "truocsn": "Phường Bình Hưng Hòa B, Phường Bình Trị Đông A, Phường Tân Tạo",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.223\",\"properties\":{\"matinhxa\":\"29.223\",\"maxa\":223},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Bình Tây (phường)",
- "truocsn": "Phường 2, Phường 9 (Quận 6)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.179\",\"properties\":{\"matinhxa\":\"29.179\",\"maxa\":179},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Bình Thạnh (phường)",
- "truocsn": "Phường 12, Phường 14 (quận Bình Thạnh), Phường 26",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.93\",\"properties\":{\"matinhxa\":\"29.93\",\"maxa\":93},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Bình Thới (phường)",
- "truocsn": "Phường 3, Phường 10 (Quận 11), Phường 8 (Quận 11)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.147\",\"properties\":{\"matinhxa\":\"29.147\",\"maxa\":147},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Bình Tiên (phường)",
- "truocsn": "Phường 1, Phường 7, Phường 8 (Quận 6)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.189\",\"properties\":{\"matinhxa\":\"29.189\",\"maxa\":189},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Bình Trị Đông (phường)",
- "truocsn": "Phường Bình Trị Đông, Phường Bình Hưng Hòa A, Phường Bình Trị Đông A",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.222\",\"properties\":{\"matinhxa\":\"29.222\",\"maxa\":222},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Bình Trưng (phường)",
- "truocsn": "Phường Bình Trưng Đông, Phường Bình Trưng Tây, Phường An Phú (thành phố Thủ Đức)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.132\",\"properties\":{\"matinhxa\":\"29.132\",\"maxa\":132},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Cần Giờ (xã)",
- "truocsn": "Xã Long Hòa (huyện Cần Giờ), Thị trấn Cần Thạnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.213\",\"properties\":{\"matinhxa\":\"29.213\",\"maxa\":213},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Cát Lái (phường)",
- "truocsn": "Phường Thạnh Mỹ Lợi, Phường Cát Lái",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.133\",\"properties\":{\"matinhxa\":\"29.133\",\"maxa\":133},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Cầu Kiệu (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 7 (quận Phú Nhuận), Phường 15 (quận Phú Nhuận)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.129\",\"properties\":{\"matinhxa\":\"29.129\",\"maxa\":129},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Cầu Ông Lãnh (phường)",
- "truocsn": "Phường Nguyễn Cư Trinh, Phường Cầu Kho, Phường Cô Giang, Phường Cầu Ông Lãnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.42\",\"properties\":{\"matinhxa\":\"29.42\",\"maxa\":42},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Chánh Hiệp (phường)",
- "truocsn": "Phường Định Hòa, Phường Tương Bình Hiệp, Phường Hiệp An, Phường Chánh Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3\",\"properties\":{\"matinhxa\":\"29.3\",\"maxa\":3},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Chánh Hưng (phường)",
- "truocsn": "Phường 4 (Quận 8), Rạch Ông, Phường Hưng Phú, Phường 5 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.198\",\"properties\":{\"matinhxa\":\"29.198\",\"maxa\":198},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Chánh Phú Hòa (phường)",
- "truocsn": "Phường Chánh Phú Hòa, Xã Hưng Hòa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.14\",\"properties\":{\"matinhxa\":\"29.14\",\"maxa\":14},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Châu Đức (xã)",
- "truocsn": "Xã Cù Bị, Xã Xà Bang",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2215\",\"properties\":{\"matinhxa\":\"29.2229\",\"maxa\":2229},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Châu Pha (xã)",
- "truocsn": "Xã Tóc Tiên, Xã Châu Pha",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2230\",\"properties\":{\"matinhxa\":\"29.2244\",\"maxa\":2244},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Chợ Lớn (phường)",
- "truocsn": "Phường 11, Phường 12, Phường 13, Phường 14 (Quận 5)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.178\",\"properties\":{\"matinhxa\":\"29.178\",\"maxa\":178},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Chợ Quán (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 4 (Quận 5)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.172\",\"properties\":{\"matinhxa\":\"29.172\",\"maxa\":172},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Côn Đảo (đặc khu)",
- "truocsn": "Huyện Côn Đảo",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3296\",\"properties\":{\"matinhxa\":\"29.3312\",\"maxa\":3312},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Củ Chi (xã)",
- "truocsn": "Xã Tân Phú Trung, Xã Tân Thông Hội, Xã Phước Vĩnh An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.193\",\"properties\":{\"matinhxa\":\"29.193\",\"maxa\":193},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Đất Đỏ (xã)",
- "truocsn": "Thị trấn Đất Đỏ, Xã Long Tân (huyện Long Đất), Xã Láng Dài, Xã Phước Long Thọ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2224\",\"properties\":{\"matinhxa\":\"29.2238\",\"maxa\":2238},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Dầu Tiếng (xã)",
- "truocsn": "Thị trấn Dầu Tiếng, Xã Định An, Xã Định Thành, Xã Định Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.5\",\"properties\":{\"matinhxa\":\"29.5\",\"maxa\":5},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Dĩ An (phường)",
- "truocsn": "Phường An Bình, Phường Dĩ An, Phường Tân Đông Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.29\",\"properties\":{\"matinhxa\":\"29.29\",\"maxa\":29},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Diên Hồng (phường)",
- "truocsn": "Phường 6, Phường 8 (Quận 10), Phường 14 (Quận 10)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.46\",\"properties\":{\"matinhxa\":\"29.46\",\"maxa\":46},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Đông Hòa (phường)",
- "truocsn": "Phường Bình An, Phường Bình Thắng, Phường Đông Hòa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.31\",\"properties\":{\"matinhxa\":\"29.31\",\"maxa\":31},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Đông Hưng Thuận (phường)",
- "truocsn": "Phường Tân Thới Nhất, Phường Tân Hưng Thuận, Phường Đông Hưng Thuận",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.48\",\"properties\":{\"matinhxa\":\"29.48\",\"maxa\":48},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Đông Thạnh (xã)",
- "truocsn": "Xã Thới Tam Thôn, Xã Nhị Bình, Xã Đông Thạnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.197\",\"properties\":{\"matinhxa\":\"29.197\",\"maxa\":197},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Đức Nhuận (phường)",
- "truocsn": "Phường 4, Phường 5, Phường 9 (quận Phú Nhuận)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.128\",\"properties\":{\"matinhxa\":\"29.128\",\"maxa\":128},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Gia Định (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 7, Phường 17 (quận Bình Thạnh)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.95\",\"properties\":{\"matinhxa\":\"29.95\",\"maxa\":95},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Gò Vấp (phường)",
- "truocsn": "Phường 10, Phường 17 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.75\",\"properties\":{\"matinhxa\":\"29.75\",\"maxa\":75},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Hạnh Thông (phường)",
- "truocsn": "Phường 1, Phường 3 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.80\",\"properties\":{\"matinhxa\":\"29.80\",\"maxa\":80},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Hiệp Bình (phường)",
- "truocsn": "Phường Hiệp Bình Chánh, Phường Hiệp Bình Phước, Phường Linh Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.44\",\"properties\":{\"matinhxa\":\"29.44\",\"maxa\":44},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Hiệp Phước (xã)",
- "truocsn": "Xã Nhơn Đức, Xã Long Thới, Xã Hiệp Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.210\",\"properties\":{\"matinhxa\":\"29.210\",\"maxa\":210},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Hồ Tràm (xã)",
- "truocsn": "Thị trấn Phước Bửu, Xã Phước Tân, Xã Phước Thuận",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2217\",\"properties\":{\"matinhxa\":\"29.2231\",\"maxa\":2231},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Hòa Bình (phường)",
- "truocsn": "Phường 5, Phường 14 (Quận 11)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.97\",\"properties\":{\"matinhxa\":\"29.97\",\"maxa\":97},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Hòa Hiệp (xã)",
- "truocsn": "xã Hòa Hiệp (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2221\",\"properties\":{\"matinhxa\":\"29.2235\",\"maxa\":2235},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Hòa Hội (xã)",
- "truocsn": "Xã Hòa Hưng, Xã Hòa Bình, Xã Hòa Hội",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2220\",\"properties\":{\"matinhxa\":\"29.2234\",\"maxa\":2234},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Hòa Hưng (phường)",
- "truocsn": "Phường 12, Phường 13, Phường 15 (Quận 10), Phường 14 (Quận 10)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.134\",\"properties\":{\"matinhxa\":\"29.134\",\"maxa\":134},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Hòa Lợi (phường)",
- "truocsn": "Phường Tân Định (thành phố Bến Cát), Phường Hòa Lợi",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.16\",\"properties\":{\"matinhxa\":\"29.16\",\"maxa\":16},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Hóc Môn (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Hóc Môn), Xã Tân Xuân, Thị trấn Hóc Môn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.196\",\"properties\":{\"matinhxa\":\"29.196\",\"maxa\":196},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Hưng Long (xã)",
- "truocsn": "Xã Đa Phước, Xã Qui Đức, Xã Hưng Long",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.207\",\"properties\":{\"matinhxa\":\"29.207\",\"maxa\":207},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Khánh Hội (phường)",
- "truocsn": "Phường 8, Phường 9 (Quận 4), Phường 2, Phường 4 (Quận 4), Phường 15 (Quận 4)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.165\",\"properties\":{\"matinhxa\":\"29.165\",\"maxa\":165},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Kim Long (xã)",
- "truocsn": "Thị trấn Kim Long, Xã Bàu Chinh, Xã Láng Lớn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2211\",\"properties\":{\"matinhxa\":\"29.2225\",\"maxa\":2225},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Lái Thiêu (phường)",
- "truocsn": "Phường Bình Nhâm, Phường Lái Thiêu, Phường Vĩnh Phú",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.33\",\"properties\":{\"matinhxa\":\"29.33\",\"maxa\":33},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Linh Xuân (phường)",
- "truocsn": "Phường Linh Trung, Phường Linh Xuân, Phường Linh Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.49\",\"properties\":{\"matinhxa\":\"29.49\",\"maxa\":49},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Long Bình (phường)",
- "truocsn": "Phường Long Bình, Phường Long Thạnh Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.65\",\"properties\":{\"matinhxa\":\"29.65\",\"maxa\":65},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Long Điền (xã)",
- "truocsn": "Thị trấn Long Điền, Xã Tam An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2223\",\"properties\":{\"matinhxa\":\"29.2237\",\"maxa\":2237},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Long Hải (xã)",
- "truocsn": "Thị trấn Long Hải, Xã Phước Tỉnh, Xã Phước Hưng",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2251\",\"properties\":{\"matinhxa\":\"29.2265\",\"maxa\":2265},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Long Hòa (xã)",
- "truocsn": "Xã Long Tân, Xã Long Hòa (huyện Dầu Tiếng), Xã Minh Tân, Xã Minh Thạnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.7\",\"properties\":{\"matinhxa\":\"29.7\",\"maxa\":7},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Long Hương (phường)",
- "truocsn": "Xã Tân Hưng (thành phố Bà Rịa), Phường Kim Dinh, Phường Long Hương",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2210\",\"properties\":{\"matinhxa\":\"29.2224\",\"maxa\":2224},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Long Nguyên (phường)",
- "truocsn": "Phường An Điền, Xã Long Nguyên, Phường Mỹ Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.13\",\"properties\":{\"matinhxa\":\"29.13\",\"maxa\":13},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Long Phước (phường)",
- "truocsn": "Phường Trường Thạnh, Phường Long Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.72\",\"properties\":{\"matinhxa\":\"29.72\",\"maxa\":72},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Long Sơn (xã)",
- "truocsn": "xã Long Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2231\",\"properties\":{\"matinhxa\":\"29.2245\",\"maxa\":2245},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Long Trường (phường)",
- "truocsn": "Phường Phú Hữu, Phường Long Trường",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.73\",\"properties\":{\"matinhxa\":\"29.73\",\"maxa\":73},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Minh Phụng (phường)",
- "truocsn": "Phường 1, Phường 7, Phường 16 (Quận 11)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.148\",\"properties\":{\"matinhxa\":\"29.148\",\"maxa\":148},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Minh Thạnh (xã)",
- "truocsn": "Xã Minh Hòa, Xã Minh Tân, Xã Minh Thạnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.6\",\"properties\":{\"matinhxa\":\"29.6\",\"maxa\":6},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Ngãi Giao (xã)",
- "truocsn": "Thị trấn Ngãi Giao, Xã Bình Ba, Xã Suối Nghệ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2212\",\"properties\":{\"matinhxa\":\"29.2226\",\"maxa\":2226},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Nghĩa Thành (xã)",
- "truocsn": "Xã Đá Bạc, Xã Nghĩa Thành",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2216\",\"properties\":{\"matinhxa\":\"29.2230\",\"maxa\":2230},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Nhà Bè (xã)",
- "truocsn": "Thị trấn Nhà Bè, Xã Phú Xuân, Xã Phước Kiển, Xã Phước Lộc",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.209\",\"properties\":{\"matinhxa\":\"29.209\",\"maxa\":209},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Nhiêu Lộc (phường)",
- "truocsn": "Phường 9, Phường 11, Phường 12, Phường 14 (Quận 3)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.135\",\"properties\":{\"matinhxa\":\"29.135\",\"maxa\":135},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Nhuận Đức (xã)",
- "truocsn": "Xã Phạm Văn Cội, Xã Trung Lập Hạ, Xã Nhuận Đức",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.190\",\"properties\":{\"matinhxa\":\"29.190\",\"maxa\":190},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Phú An (phường)",
- "truocsn": "Phường Tân An, Xã Phú An, Phường Hiệp An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.17\",\"properties\":{\"matinhxa\":\"29.17\",\"maxa\":17},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Phú Định (phường)",
- "truocsn": "Phường 14, Phường 15 (Quận 8), Phường Xóm Củi, Phường 16 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.199\",\"properties\":{\"matinhxa\":\"29.199\",\"maxa\":199},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Phú Giáo (xã)",
- "truocsn": "Thị trấn Phước Vĩnh, Xã An Bình, Xã Tam Lập",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.18\",\"properties\":{\"matinhxa\":\"29.18\",\"maxa\":18},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Phú Hòa Đông (xã)",
- "truocsn": "Xã Tân Thạnh Tây, Xã Tân Thạnh Đông, Xã Phú Hòa Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.191\",\"properties\":{\"matinhxa\":\"29.191\",\"maxa\":191},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Phú Lâm (phường)",
- "truocsn": "Phường 12, Phường 13, Phường 14 (Quận 6)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.185\",\"properties\":{\"matinhxa\":\"29.185\",\"maxa\":185},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Phú Lợi (phường)",
- "truocsn": "Phường Phú Hòa, Phường Phú Lợi, Phường Hiệp Thành (thành phố Thủ Dầu Một)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1\",\"properties\":{\"matinhxa\":\"29.1\",\"maxa\":1},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Phú Mỹ (phường)",
- "truocsn": "Phường Phú Mỹ (thành phố Phú Mỹ), Phường Mỹ Xuân",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2226\",\"properties\":{\"matinhxa\":\"29.2240\",\"maxa\":2240},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Phú Nhuận (phường)",
- "truocsn": "Phường 8, Phường 10, Phường 11, Phường 13 (quận Phú Nhuận), Phường 15 (quận Phú Nhuận)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.130\",\"properties\":{\"matinhxa\":\"29.130\",\"maxa\":130},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Phú Thạnh (phường)",
- "truocsn": "Phường Hiệp Tân, Phường Phú Thạnh, Phường Tân Thới Hòa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.124\",\"properties\":{\"matinhxa\":\"29.124\",\"maxa\":124},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Phú Thọ (phường)",
- "truocsn": "Phường 11, Phường 15 (Quận 11), Phường 8 (Quận 11)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.62\",\"properties\":{\"matinhxa\":\"29.62\",\"maxa\":62},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Phú Thọ Hòa (phường)",
- "truocsn": "Phường Phú Thọ Hòa, Phường Tân Thành, Phường Tân Quý",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.123\",\"properties\":{\"matinhxa\":\"29.123\",\"maxa\":123},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Phú Thuận (phường)",
- "truocsn": "Phường Phú Thuận, Phường Phú Mỹ (Quận 7)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.268\",\"properties\":{\"matinhxa\":\"29.268\",\"maxa\":268},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Phước Hải (xã)",
- "truocsn": "Thị trấn Phước Hải, Xã Phước Hội",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2225\",\"properties\":{\"matinhxa\":\"29.2239\",\"maxa\":2239},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Phước Hòa (xã)",
- "truocsn": "Xã Vĩnh Hòa, Xã Phước Hòa, Xã Tam Lập",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.21\",\"properties\":{\"matinhxa\":\"29.21\",\"maxa\":21},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Phước Long (phường)",
- "truocsn": "Phường Phước Bình, Phường Phước Long A, Phường Phước Long B",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.71\",\"properties\":{\"matinhxa\":\"29.71\",\"maxa\":71},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Phước Thắng (phường)",
- "truocsn": "Phường 11, Phường 12 (thành phố Vũng Tàu)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2207\",\"properties\":{\"matinhxa\":\"29.2221\",\"maxa\":2221},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Phước Thành (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Phú Giáo), Xã An Thái, Xã Phước Sang",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.19\",\"properties\":{\"matinhxa\":\"29.19\",\"maxa\":19},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Rạch Dừa (phường)",
- "truocsn": "Phường 10 (thành phố Vũng Tàu), Phường Thắng Nhất, Phường Rạch Dừa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2206\",\"properties\":{\"matinhxa\":\"29.2220\",\"maxa\":2220},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Sài Gòn (phường)",
- "truocsn": "Phường Bến Nghé, Phường Đa Kao, Phường Nguyễn Thái Bình",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.38\",\"properties\":{\"matinhxa\":\"29.38\",\"maxa\":38},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Tam Bình (phường)",
- "truocsn": "Phường Bình Chiểu, Phường Tam Phú, Phường Tam Bình",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.50\",\"properties\":{\"matinhxa\":\"29.50\",\"maxa\":50},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Tam Long (phường)",
- "truocsn": "Phường Long Tâm, Xã Hòa Long, Xã Long Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2209\",\"properties\":{\"matinhxa\":\"29.2223\",\"maxa\":2223},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Tam Thắng (phường)",
- "truocsn": "Phường 7, Phường 8, Phường 9 (thành phố Vũng Tàu), Phường Nguyễn An Ninh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2205\",\"properties\":{\"matinhxa\":\"29.2219\",\"maxa\":2219},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Tân An Hội (xã)",
- "truocsn": "Thị trấn Củ Chi, Xã Phước Hiệp, Xã Tân An Hội",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.192\",\"properties\":{\"matinhxa\":\"29.192\",\"maxa\":192},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Tân Bình (phường)",
- "truocsn": "Phường 13, Phường 14 (quận Tân Bình), Phường 15 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.113\",\"properties\":{\"matinhxa\":\"29.113\",\"maxa\":113},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Tân Định (phường)",
- "truocsn": "Phường Tân Định (Quận 1), Phường Đa Kao",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.37\",\"properties\":{\"matinhxa\":\"29.37\",\"maxa\":37},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Tân Đông Hiệp (phường)",
- "truocsn": "Phường Tân Bình, Phường Thái Hòa, Phường Tân Đông Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.30\",\"properties\":{\"matinhxa\":\"29.30\",\"maxa\":30},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Tân Hải (phường)",
- "truocsn": "Phường Tân Hòa, Phường Tân Hải",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2227\",\"properties\":{\"matinhxa\":\"29.2241\",\"maxa\":2241},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Tân Hiệp (phường)",
- "truocsn": "Phường Khánh Bình, Phường Tân Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.27\",\"properties\":{\"matinhxa\":\"29.27\",\"maxa\":27},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Tân Hòa (phường)",
- "truocsn": "Phường 6, Phường 8, Phường 9 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.114\",\"properties\":{\"matinhxa\":\"29.114\",\"maxa\":114},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Tân Hưng (phường)",
- "truocsn": "Phường Tân Phong, Phường Tân Quy, Phường Tân Kiểng, Phường Tân Hưng",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.267\",\"properties\":{\"matinhxa\":\"29.267\",\"maxa\":267},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Tân Khánh (phường)",
- "truocsn": "Phường Thạnh Phước, Phường Tân Phước Khánh, Phường Tân Vĩnh Hiệp, Xã Thạnh Hội, Phường Thái Hòa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.23\",\"properties\":{\"matinhxa\":\"29.23\",\"maxa\":23},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Tân Mỹ (phường)",
- "truocsn": "Phường Tân Phú (Quận 7), Phường Phú Mỹ (Quận 7)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.186\",\"properties\":{\"matinhxa\":\"29.186\",\"maxa\":186},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Tân Nhựt (xã)",
- "truocsn": "Thị trấn Tân Túc, Xã Tân Nhựt, Phường Tân Tạo A, Xã Tân Kiên, Phường 16 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.202\",\"properties\":{\"matinhxa\":\"29.202\",\"maxa\":202},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Tân Phú (phường)",
- "truocsn": "Phường Phú Trung, Phường Hòa Thạnh, Phường Tân Thới Hòa, Phường Tân Thành",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.127\",\"properties\":{\"matinhxa\":\"29.127\",\"maxa\":127},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "131",
- "ten": "Tân Phước (phường)",
- "truocsn": "Phường Phước Hòa, Phường Tân Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2228\",\"properties\":{\"matinhxa\":\"29.2242\",\"maxa\":2242},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "132",
- "ten": "Tân Sơn (phường)",
- "truocsn": "Phường 15 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.115\",\"properties\":{\"matinhxa\":\"29.115\",\"maxa\":115},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "133",
- "ten": "Tân Sơn Hòa (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.98\",\"properties\":{\"matinhxa\":\"29.98\",\"maxa\":98},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "134",
- "ten": "Tân Sơn Nhất (phường)",
- "truocsn": "Phường 4, Phường 5, Phường 7 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.101\",\"properties\":{\"matinhxa\":\"29.101\",\"maxa\":101},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "135",
- "ten": "Tân Sơn Nhì (phường)",
- "truocsn": "Phường Tân Sơn Nhì, Phường Sơn Kỳ, Phường Tân Quý, Phường Tân Thành",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.116\",\"properties\":{\"matinhxa\":\"29.116\",\"maxa\":116},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "136",
- "ten": "Tân Tạo (phường)",
- "truocsn": "Xã Tân Kiên, Phường Tân Tạo A, Phường Tân Tạo",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.244\",\"properties\":{\"matinhxa\":\"29.244\",\"maxa\":244},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "137",
- "ten": "Tân Thành (phường)",
- "truocsn": "Phường Hắc Dịch, Xã Sông Xoài",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2229\",\"properties\":{\"matinhxa\":\"29.2243\",\"maxa\":2243},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "138",
- "ten": "Tân Thới Hiệp (phường)",
- "truocsn": "Phường Hiệp Thành (Quận 12), Phường Tân Thới Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.45\",\"properties\":{\"matinhxa\":\"29.45\",\"maxa\":45},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "139",
- "ten": "Tân Thuận (phường)",
- "truocsn": "Phường Bình Thuận, Phường Tân Thuận Đông, Phường Tân Thuận Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.254\",\"properties\":{\"matinhxa\":\"29.254\",\"maxa\":254},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "140",
- "ten": "Tân Uyên (phường)",
- "truocsn": "Phường Uyên Hưng, Xã Bạch Đằng, Xã Tân Lập, Xã Tân Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.22\",\"properties\":{\"matinhxa\":\"29.22\",\"maxa\":22},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "141",
- "ten": "Tân Vĩnh Lộc (xã)",
- "truocsn": "Xã Vĩnh Lộc B, Xã Phạm Văn Hai, Phường Tân Tạo",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.204\",\"properties\":{\"matinhxa\":\"29.204\",\"maxa\":204},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "142",
- "ten": "Tăng Nhơn Phú (phường)",
- "truocsn": "Phường Tân Phú (thành phố Thủ Đức), Phường Hiệp Phú, Phường Tăng Nhơn Phú A, Phường Tăng Nhơn Phú B, Phường Long Thạnh Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.66\",\"properties\":{\"matinhxa\":\"29.66\",\"maxa\":66},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "143",
- "ten": "Tây Nam (phường)",
- "truocsn": "Phường An Tây, Xã Thanh Tuyền, Xã An Lập",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.8\",\"properties\":{\"matinhxa\":\"29.8\",\"maxa\":8},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "144",
- "ten": "Tây Thạnh (phường)",
- "truocsn": "Phường Tây Thạnh, Phường Sơn Kỳ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.117\",\"properties\":{\"matinhxa\":\"29.117\",\"maxa\":117},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "145",
- "ten": "Thái Mỹ (xã)",
- "truocsn": "Xã Trung Lập Thượng, Xã Phước Thạnh, Xã Thái Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.194\",\"properties\":{\"matinhxa\":\"29.194\",\"maxa\":194},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "146",
- "ten": "Thanh An (xã)",
- "truocsn": "Xã Thanh An, Xã Định Hiệp, Xã Thanh Tuyền, Xã An Lập",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.9\",\"properties\":{\"matinhxa\":\"29.9\",\"maxa\":9},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "147",
- "ten": "Thạnh An (xã)",
- "truocsn": "xã Thạnh An (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.216\",\"properties\":{\"matinhxa\":\"29.216\",\"maxa\":216},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "148",
- "ten": "Thạnh Mỹ Tây (phường)",
- "truocsn": "Phường 19, Phường 22, Phường 25",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.94\",\"properties\":{\"matinhxa\":\"29.94\",\"maxa\":94},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "149",
- "ten": "Thới An (phường)",
- "truocsn": "Phường Thạnh Xuân, Phường Thới An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.43\",\"properties\":{\"matinhxa\":\"29.43\",\"maxa\":43},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "150",
- "ten": "Thới Hòa (phường)",
- "truocsn": "phường Thới Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.15\",\"properties\":{\"matinhxa\":\"29.15\",\"maxa\":15},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "151",
- "ten": "Thông Tây Hội (phường)",
- "truocsn": "Phường 8, Phường 11 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.91\",\"properties\":{\"matinhxa\":\"29.91\",\"maxa\":91},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "152",
- "ten": "Thủ Dầu Một (phường)",
- "truocsn": "Phường Phú Cường, Phường Phú Thọ, Phường Chánh Nghĩa, Phường Hiệp Thành (thành phố Thủ Dầu Một), Phường Chánh Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2\",\"properties\":{\"matinhxa\":\"29.2\",\"maxa\":2},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "153",
- "ten": "Thủ Đức (phường)",
- "truocsn": "Phường Bình Thọ, Phường Linh Chiểu, Phường Trường Thọ, Phường Linh Tây, Phường Linh Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.61\",\"properties\":{\"matinhxa\":\"29.61\",\"maxa\":61},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "154",
- "ten": "Thuận An (phường)",
- "truocsn": "Phường Hưng Định, Phường An Thạnh, Xã An Sơn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.32\",\"properties\":{\"matinhxa\":\"29.32\",\"maxa\":32},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "155",
- "ten": "Thuận Giao (phường)",
- "truocsn": "Phường Thuận Giao, Phường Bình Chuẩn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.34\",\"properties\":{\"matinhxa\":\"29.34\",\"maxa\":34},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "156",
- "ten": "Thường Tân (xã)",
- "truocsn": "Xã Lạc An, Xã Hiếu Liêm, Xã Thường Tân, Xã Tân Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.28\",\"properties\":{\"matinhxa\":\"29.28\",\"maxa\":28},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "157",
- "ten": "Trừ Văn Thố (xã)",
- "truocsn": "Xã Trừ Văn Thố, Xã Cây Trường II, Thị trấn Lai Uyên",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.11\",\"properties\":{\"matinhxa\":\"29.11\",\"maxa\":11},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "158",
- "ten": "Trung Mỹ Tây (phường)",
- "truocsn": "Phường Tân Chánh Hiệp, Phường Trung Mỹ Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.47\",\"properties\":{\"matinhxa\":\"29.47\",\"maxa\":47},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "159",
- "ten": "Vĩnh Hội (phường)",
- "truocsn": "Phường 1, Phường 3 (Quận 4), Phường 2, Phường 4 (Quận 4)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.166\",\"properties\":{\"matinhxa\":\"29.166\",\"maxa\":166},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "160",
- "ten": "Vĩnh Lộc (xã)",
- "truocsn": "Xã Vĩnh Lộc A, Xã Phạm Văn Hai",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.203\",\"properties\":{\"matinhxa\":\"29.203\",\"maxa\":203},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "161",
- "ten": "Vĩnh Tân (phường)",
- "truocsn": "Phường Vĩnh Tân, Thị trấn Tân Bình",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.26\",\"properties\":{\"matinhxa\":\"29.26\",\"maxa\":26},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "162",
- "ten": "Vũng Tàu (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3, Phường 4, Phường 5 (thành phố Vũng Tàu), Phường Thắng Nhì, Phường Thắng Tam",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2204\",\"properties\":{\"matinhxa\":\"29.2218\",\"maxa\":2218},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "163",
- "ten": "Vườn Lài (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 4, Phường 9, Phường 10 (Quận 10)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.99\",\"properties\":{\"matinhxa\":\"29.99\",\"maxa\":99},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "164",
- "ten": "Xóm Chiếu (phường)",
- "truocsn": "Phường 13, Phường 16, Phường 18, Phường 15 (Quận 4)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.156\",\"properties\":{\"matinhxa\":\"29.156\",\"maxa\":156},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "165",
- "ten": "Xuân Hòa (phường)",
- "truocsn": "Phường Võ Thị Sáu, Phường 4 (Quận 3)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.140\",\"properties\":{\"matinhxa\":\"29.140\",\"maxa\":140},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "166",
- "ten": "Xuân Sơn (xã)",
- "truocsn": "Xã Suối Rao, Xã Sơn Bình, Xã Xuân Sơn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2213\",\"properties\":{\"matinhxa\":\"29.2227\",\"maxa\":2227},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "167",
- "ten": "Xuân Thới Sơn (xã)",
- "truocsn": "Xã Tân Thới Nhì, Xã Xuân Thới Đông, Xã Xuân Thới Sơn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.200\",\"properties\":{\"matinhxa\":\"29.200\",\"maxa\":200},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "168",
- "ten": "Xuyên Mộc (xã)",
- "truocsn": "Xã Bông Trang, Xã Bưng Riềng, Xã Xuyên Mộc",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2218\",\"properties\":{\"matinhxa\":\"29.2232\",\"maxa\":2232},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Bình (xã)",
- "truocsn": "Xã Hòa Ninh, Xã Bình Hòa Phước, Xã Đồng Phú, Xã An Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2523\",\"properties\":{\"matinhxa\":\"30.2537\",\"maxa\":2537},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Định (xã)",
- "truocsn": "Xã Tân Trung, Xã Minh Đức, Xã An Định",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2459\",\"properties\":{\"matinhxa\":\"30.2473\",\"maxa\":2473},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Hiệp (xã)",
- "truocsn": "Xã Tân Hưng, Xã An Ngãi Tây, Xã An Hiệp",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2481\",\"properties\":{\"matinhxa\":\"30.2495\",\"maxa\":2495},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Hội (phường)",
- "truocsn": "Phường An Hội, Xã Mỹ Thạnh An, Xã Phú Nhuận, Xã Sơn Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2443\",\"properties\":{\"matinhxa\":\"30.2457\",\"maxa\":2457},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Ngãi Trung (xã)",
- "truocsn": "Xã Mỹ Thạnh (huyện Ba Tri), Xã An Phú Trung, Xã An Ngãi Trung",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2480\",\"properties\":{\"matinhxa\":\"30.2494\",\"maxa\":2494},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Phú Tân (xã)",
- "truocsn": "Xã Hòa Tân, Xã An Phú Tân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2498\",\"properties\":{\"matinhxa\":\"30.2512\",\"maxa\":2512},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "An Qui (xã)",
- "truocsn": "Xã An Thuận, Xã An Nhơn, Xã An Qui",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2486\",\"properties\":{\"matinhxa\":\"30.2500\",\"maxa\":2500},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "An Trường (xã)",
- "truocsn": "Xã Tân Bình (huyện Càng Long), Xã An Trường A, Xã An Trường",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2494\",\"properties\":{\"matinhxa\":\"30.2508\",\"maxa\":2508},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Ba Tri (xã)",
- "truocsn": "Thị trấn Ba Tri, Xã Vĩnh Hòa (huyện Ba Tri), Xã An Đức, Xã Vĩnh An, Xã An Bình Tây",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2476\",\"properties\":{\"matinhxa\":\"30.2490\",\"maxa\":2490},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bảo Thạnh (xã)",
- "truocsn": "Xã Bảo Thuận, Xã Bảo Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2479\",\"properties\":{\"matinhxa\":\"30.2493\",\"maxa\":2493},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bến Tre (phường)",
- "truocsn": "Phường 7, Xã Bình Phú (thành phố Bến Tre), Xã Thanh Tân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2454\",\"properties\":{\"matinhxa\":\"30.2468\",\"maxa\":2468},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Đại (xã)",
- "truocsn": "Thị trấn Bình Đại, Xã Bình Thới, Xã Bình Thắng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2469\",\"properties\":{\"matinhxa\":\"30.2483\",\"maxa\":2483},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bình Minh (phường)",
- "truocsn": "Xã Thuận An, Phường Thành Phước, Phường Cái Vồn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2581\",\"properties\":{\"matinhxa\":\"30.2595\",\"maxa\":2595},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bình Phú (xã)",
- "truocsn": "Xã Bình Phú (huyện Càng Long), Xã Đại Phúc, Xã Phương Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2493\",\"properties\":{\"matinhxa\":\"30.2507\",\"maxa\":2507},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Bình Phước (xã)",
- "truocsn": "Xã Long Mỹ (huyện Mang Thít), Xã Hòa Tịnh, Xã Bình Phước",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2540\",\"properties\":{\"matinhxa\":\"30.2554\",\"maxa\":2554},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cái Ngang (xã)",
- "truocsn": "Xã Mỹ Lộc, Xã Tân Lộc, Xã Hậu Lộc, Xã Phú Lộc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2550\",\"properties\":{\"matinhxa\":\"30.2564\",\"maxa\":2564},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Cái Nhum (xã)",
- "truocsn": "Xã An Phước (huyện Mang Thít), Xã Chánh An, Thị trấn Cái Nhum",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2528\",\"properties\":{\"matinhxa\":\"30.2542\",\"maxa\":2542},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cái Vồn (phường)",
- "truocsn": "Xã Mỹ Hòa (thị xã Bình Minh), Xã Ngãi Tứ, Phường Thành Phước, Phường Cái Vồn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2586\",\"properties\":{\"matinhxa\":\"30.2600\",\"maxa\":2600},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Càng Long (xã)",
- "truocsn": "Thị trấn Càng Long, Xã Mỹ Cẩm, Xã Nhị Long Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2491\",\"properties\":{\"matinhxa\":\"30.2505\",\"maxa\":2505},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Cầu Kè (xã)",
- "truocsn": "Thị trấn Cầu Kè, Xã Hòa Ân, Xã Châu Điền",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2496\",\"properties\":{\"matinhxa\":\"30.2510\",\"maxa\":2510},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Cầu Ngang (xã)",
- "truocsn": "Xã Mỹ Hòa (huyện Cầu Ngang), Xã Thuận Hòa, Thị trấn Cầu Ngang",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2531\",\"properties\":{\"matinhxa\":\"30.2545\",\"maxa\":2545},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Châu Hòa (xã)",
- "truocsn": "Xã Châu Bình, Xã Lương Quới, Xã Châu Hòa",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2463\",\"properties\":{\"matinhxa\":\"30.2477\",\"maxa\":2477},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Châu Hưng (xã)",
- "truocsn": "Xã Long Hòa (huyện Bình Đại), Xã Thới Lai, Xã Châu Hưng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2471\",\"properties\":{\"matinhxa\":\"30.2485\",\"maxa\":2485},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Châu Thành (huyện Châu Thành, tỉnh Trà Vinh), Xã Mỹ Chánh (huyện Châu Thành), Xã Thanh Mỹ, Xã Đa Lộc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2504\",\"properties\":{\"matinhxa\":\"30.2518\",\"maxa\":2518},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Chợ Lách (xã)",
- "truocsn": "Xã Long Thới (huyện Chợ Lách), Xã Hòa Nghĩa, Thị trấn Chợ Lách",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2449\",\"properties\":{\"matinhxa\":\"30.2463\",\"maxa\":2463},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đại An (xã)",
- "truocsn": "Thị trấn Định An, Xã Định An, Xã Đại An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2535\",\"properties\":{\"matinhxa\":\"30.2549\",\"maxa\":2549},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đại Điền (xã)",
- "truocsn": "Xã Phú Khánh, Xã Tân Phong, Xã Thới Thạnh, Xã Đại Điền",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2484\",\"properties\":{\"matinhxa\":\"30.2498\",\"maxa\":2498},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đôn Châu (xã)",
- "truocsn": "Xã Đôn Xuân, Xã Đôn Châu",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2536\",\"properties\":{\"matinhxa\":\"30.2550\",\"maxa\":2550},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Đông Hải (xã)",
- "truocsn": "xã Đông Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2518\",\"properties\":{\"matinhxa\":\"30.2532\",\"maxa\":2532},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Đồng Khởi (xã)",
- "truocsn": "Xã Định Thủy, Xã Phước Hiệp, Xã Bình Khánh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2457\",\"properties\":{\"matinhxa\":\"30.2471\",\"maxa\":2471},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Đông Thành (phường)",
- "truocsn": "Phường Đông Thuận, Xã Đông Bình, Xã Đông Thạnh, Xã Đông Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2585\",\"properties\":{\"matinhxa\":\"30.2599\",\"maxa\":2599},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Duyên Hải (phường)",
- "truocsn": "Phường 1 (thị xã Duyên Hải), Xã Long Toàn, Xã Dân Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2539\",\"properties\":{\"matinhxa\":\"30.2553\",\"maxa\":2553},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Giao Long (xã)",
- "truocsn": "Xã An Phước (huyện Châu Thành), Xã Quới Sơn, Xã Giao Long",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2445\",\"properties\":{\"matinhxa\":\"30.2459\",\"maxa\":2459},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Giồng Trôm (xã)",
- "truocsn": "Thị trấn Giồng Trôm, Xã Bình Hòa, Xã Bình Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2462\",\"properties\":{\"matinhxa\":\"30.2476\",\"maxa\":2476},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hàm Giang (xã)",
- "truocsn": "Xã Hàm Tân, Xã Kim Sơn, Xã Hàm Giang",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2513\",\"properties\":{\"matinhxa\":\"30.2527\",\"maxa\":2527},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hiệp Mỹ (xã)",
- "truocsn": "Xã Long Sơn, Xã Hiệp Mỹ Đông, Xã Hiệp Mỹ Tây",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2534\",\"properties\":{\"matinhxa\":\"30.2548\",\"maxa\":2548},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hiếu Phụng (xã)",
- "truocsn": "Xã Hiếu Thuận, Xã Trung An, Xã Hiếu Phụng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2545\",\"properties\":{\"matinhxa\":\"30.2559\",\"maxa\":2559},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hiếu Thành (xã)",
- "truocsn": "Xã Hiếu Nhơn, Xã Hiếu Nghĩa, Xã Hiếu Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2548\",\"properties\":{\"matinhxa\":\"30.2562\",\"maxa\":2562},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hòa Bình (xã)",
- "truocsn": "Xã Xuân Hiệp, Xã Thới Hòa, Xã Hòa Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2588\",\"properties\":{\"matinhxa\":\"30.2602\",\"maxa\":2602},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hòa Hiệp (xã)",
- "truocsn": "Xã Hòa Thạnh, Xã Hòa Lộc, Xã Hòa Hiệp",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2552\",\"properties\":{\"matinhxa\":\"30.2566\",\"maxa\":2566},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hòa Minh (xã)",
- "truocsn": "xã Hòa Minh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2508\",\"properties\":{\"matinhxa\":\"30.2522\",\"maxa\":2522},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hoà Thuận (phường)",
- "truocsn": "Phường 5 (thành phố Trà Vinh), Xã Hòa Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2505\",\"properties\":{\"matinhxa\":\"30.2519\",\"maxa\":2519},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hùng Hoà (xã)",
- "truocsn": "Xã Ngãi Hùng, Xã Tân Hùng, Xã Hùng Hòa",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2502\",\"properties\":{\"matinhxa\":\"30.2516\",\"maxa\":2516},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hưng Khánh Trung (xã)",
- "truocsn": "Xã Vĩnh Hòa (huyện Chợ Lách), Xã Hưng Khánh Trung A, Xã Hưng Khánh Trung B",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2452\",\"properties\":{\"matinhxa\":\"30.2466\",\"maxa\":2466},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hưng Mỹ (xã)",
- "truocsn": "Xã Hòa Lợi (huyện Châu Thành), Xã Phước Hảo, Xã Hưng Mỹ",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2507\",\"properties\":{\"matinhxa\":\"30.2521\",\"maxa\":2521},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Hưng Nhượng (xã)",
- "truocsn": "Xã Tân Thanh, Xã Hưng Lễ, Xã Hưng Nhượng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2468\",\"properties\":{\"matinhxa\":\"30.2482\",\"maxa\":2482},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Hương Mỹ (xã)",
- "truocsn": "Xã Ngãi Đăng, Xã Cẩm Sơn, Xã Hương Mỹ",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2461\",\"properties\":{\"matinhxa\":\"30.2475\",\"maxa\":2475},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lộc Thuận (xã)",
- "truocsn": "Xã Vang Quới Đông, Xã Vang Quới Tây, Xã Lộc Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2472\",\"properties\":{\"matinhxa\":\"30.2486\",\"maxa\":2486},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Long Châu (phường)",
- "truocsn": "Phường 1, Phường 9 (thành phố Vĩnh Long), Phường Trường An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2520\",\"properties\":{\"matinhxa\":\"30.2534\",\"maxa\":2534},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Long Đức (phường)",
- "truocsn": "Phường 4 (thành phố Trà Vinh), Xã Long Đức",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2490\",\"properties\":{\"matinhxa\":\"30.2504\",\"maxa\":2504},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Long Hiệp (xã)",
- "truocsn": "Xã Ngọc Biên, Xã Tân Hiệp, Xã Long Hiệp",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2537\",\"properties\":{\"matinhxa\":\"30.2551\",\"maxa\":2551},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Long Hồ (xã)",
- "truocsn": "Thị trấn Long Hồ, Xã Long An, Xã Long Phước",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2522\",\"properties\":{\"matinhxa\":\"30.2536\",\"maxa\":2536},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Long Hòa (xã)",
- "truocsn": "xã Long Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2530\",\"properties\":{\"matinhxa\":\"30.2544\",\"maxa\":2544},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Long Hữu (xã)",
- "truocsn": "Xã Hiệp Thạnh, Xã Long Hữu",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2514\",\"properties\":{\"matinhxa\":\"30.2528\",\"maxa\":2528},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Long Thành (xã)",
- "truocsn": "Thị trấn Long Thành, Xã Long Khánh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2538\",\"properties\":{\"matinhxa\":\"30.2552\",\"maxa\":2552},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Long Vĩnh (xã)",
- "truocsn": "xã Long Vĩnh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2517\",\"properties\":{\"matinhxa\":\"30.2531\",\"maxa\":2531},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Lục Sĩ Thành (xã)",
- "truocsn": "Xã Phú Thành, Xã Lục Sĩ Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2592\",\"properties\":{\"matinhxa\":\"30.2606\",\"maxa\":2606},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Lương Hòa (xã)",
- "truocsn": "Xã Lương Hòa (huyện Giồng Trôm), Xã Phong Nẫm",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2464\",\"properties\":{\"matinhxa\":\"30.2478\",\"maxa\":2478},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Lương Phú (xã)",
- "truocsn": "Xã Mỹ Thạnh (huyện Giồng Trôm), Xã Thuận Điền, Xã Lương Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2465\",\"properties\":{\"matinhxa\":\"30.2479\",\"maxa\":2479},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Lưu Nghiệp Anh (xã)",
- "truocsn": "Xã An Quảng Hữu, Xã Lưu Nghiệp Anh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2512\",\"properties\":{\"matinhxa\":\"30.2526\",\"maxa\":2526},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Mỏ Cày (xã)",
- "truocsn": "Thị trấn Mỏ Cày, Xã An Thạnh (huyện Mỏ Cày Nam), Xã Tân Hội, Xã Đa Phước Hội",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2453\",\"properties\":{\"matinhxa\":\"30.2467\",\"maxa\":2467},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Mỹ Chánh Hòa (xã)",
- "truocsn": "Xã Mỹ Hòa, Xã Mỹ Chánh (huyện Ba Tri), Xã Mỹ Nhơn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2478\",\"properties\":{\"matinhxa\":\"30.2492\",\"maxa\":2492},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Mỹ Long (xã)",
- "truocsn": "Thị trấn Mỹ Long, Xã Mỹ Long Bắc, Xã Mỹ Long Nam",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2519\",\"properties\":{\"matinhxa\":\"30.2533\",\"maxa\":2533},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Mỹ Thuận (xã)",
- "truocsn": "Xã Thành Trung, Xã Nguyễn Văn Thảnh, Xã Mỹ Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2583\",\"properties\":{\"matinhxa\":\"30.2597\",\"maxa\":2597},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Ngãi Tứ (xã)",
- "truocsn": "Xã Loan Mỹ, Xã Bình Ninh, Xã Ngãi Tứ, Thị trấn Trà Ôn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2553\",\"properties\":{\"matinhxa\":\"30.2567\",\"maxa\":2567},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Ngũ Lạc (xã)",
- "truocsn": "Xã Thạnh Hòa Sơn, Xã Ngũ Lạc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2516\",\"properties\":{\"matinhxa\":\"30.2530\",\"maxa\":2530},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nguyệt Hoá (phường)",
- "truocsn": "Phường 7, Phường 8 (thành phố Trà Vinh), Xã Nguyệt Hóa",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2506\",\"properties\":{\"matinhxa\":\"30.2520\",\"maxa\":2520},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nhị Long (xã)",
- "truocsn": "Xã Đại Phước, Xã Đức Mỹ, Xã Nhị Long",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2492\",\"properties\":{\"matinhxa\":\"30.2506\",\"maxa\":2506},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nhị Trường (xã)",
- "truocsn": "Xã Hiệp Hòa, Xã Trường Thọ, Xã Nhị Trường",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2533\",\"properties\":{\"matinhxa\":\"30.2547\",\"maxa\":2547},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nhơn Phú (xã)",
- "truocsn": "Xã Mỹ An (huyện Mang Thít), Xã Mỹ Phước, Xã Nhơn Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2529\",\"properties\":{\"matinhxa\":\"30.2543\",\"maxa\":2543},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Nhuận Phú Tân (xã)",
- "truocsn": "Xã Khánh Thạnh Tân, Xã Tân Thanh Tây, Xã Nhuận Phú Tân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2458\",\"properties\":{\"matinhxa\":\"30.2472\",\"maxa\":2472},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Phong Thạnh (xã)",
- "truocsn": "Xã Ninh Thới, Xã Phong Phú, Xã Phong Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2499\",\"properties\":{\"matinhxa\":\"30.2513\",\"maxa\":2513},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Phú Khương (phường)",
- "truocsn": "Phường 8 (thành phố Bến Tre), Phường Phú Khương, Xã Phú Hưng, Xã Nhơn Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2441\",\"properties\":{\"matinhxa\":\"30.2455\",\"maxa\":2455},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Phú Phụng (xã)",
- "truocsn": "Xã Sơn Định, Xã Vĩnh Bình, Xã Phú Phụng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2450\",\"properties\":{\"matinhxa\":\"30.2464\",\"maxa\":2464},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Phú Quới (xã)",
- "truocsn": "Xã Lộc Hòa, Xã Hòa Phú, Xã Thạnh Quới, Xã Phú Quới",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2527\",\"properties\":{\"matinhxa\":\"30.2541\",\"maxa\":2541},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Phú Tân (phường)",
- "truocsn": "Phường Phú Tân, Xã Hữu Định, Xã Phước Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2442\",\"properties\":{\"matinhxa\":\"30.2456\",\"maxa\":2456},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Phú Thuận (xã)",
- "truocsn": "Xã Long Định, Xã Tam Hiệp, Xã Phú Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2470\",\"properties\":{\"matinhxa\":\"30.2484\",\"maxa\":2484},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Phú Túc (xã)",
- "truocsn": "Thị trấn Châu Thành (huyện Châu Thành, tỉnh Bến Tre), Xã Tân Thạch, Xã Tường Đa, Xã Phú Túc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2446\",\"properties\":{\"matinhxa\":\"30.2460\",\"maxa\":2460},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Phước Hậu (phường)",
- "truocsn": "Phường 3, Phường 4 (thành phố Vĩnh Long), Xã Phước Hậu",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2526\",\"properties\":{\"matinhxa\":\"30.2540\",\"maxa\":2540},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Phước Long (xã)",
- "truocsn": "Xã Long Mỹ (huyện Giồng Trôm), Xã Hưng Phong, Xã Phước Long",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2466\",\"properties\":{\"matinhxa\":\"30.2480\",\"maxa\":2480},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Phước Mỹ Trung (xã)",
- "truocsn": "Thị trấn Phước Mỹ Trung, Xã Phú Mỹ, Xã Thạnh Ngãi, Xã Tân Phú Tây",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2455\",\"properties\":{\"matinhxa\":\"30.2469\",\"maxa\":2469},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quới An (xã)",
- "truocsn": "Xã Trung Thành Tây, Xã Tân Quới Trung, Xã Quới An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2543\",\"properties\":{\"matinhxa\":\"30.2557\",\"maxa\":2557},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Quới Điền (xã)",
- "truocsn": "Xã Hòa Lợi (huyện Thạnh Phú), Xã Mỹ Hưng, Xã Quới Điền",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2485\",\"properties\":{\"matinhxa\":\"30.2499\",\"maxa\":2499},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Quới Thiện (xã)",
- "truocsn": "Xã Thanh Bình, Xã Quới Thiện",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2542\",\"properties\":{\"matinhxa\":\"30.2556\",\"maxa\":2556},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Sơn Đông (phường)",
- "truocsn": "Phường 6, Xã Sơn Đông, Xã Tam Phước",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2444\",\"properties\":{\"matinhxa\":\"30.2458\",\"maxa\":2458},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Song Lộc (xã)",
- "truocsn": "Xã Lương Hòa (huyện Châu Thành), Xã Lương Hòa A, Xã Song Lộc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2509\",\"properties\":{\"matinhxa\":\"30.2523\",\"maxa\":2523},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Song Phú (xã)",
- "truocsn": "Xã Tân Phú (huyện Tam Bình), Xã Long Phú, Xã Phú Thịnh, Xã Song Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2551\",\"properties\":{\"matinhxa\":\"30.2565\",\"maxa\":2565},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tam Bình (xã)",
- "truocsn": "Xã Mỹ Thạnh Trung, Thị trấn Tam Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2549\",\"properties\":{\"matinhxa\":\"30.2563\",\"maxa\":2563},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tam Ngãi (xã)",
- "truocsn": "Xã Thông Hòa, Xã Thạnh Phú, Xã Tam Ngãi",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2497\",\"properties\":{\"matinhxa\":\"30.2511\",\"maxa\":2511},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Huyền Hội, Xã Tân An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2495\",\"properties\":{\"matinhxa\":\"30.2509\",\"maxa\":2509},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tân Hạnh (phường)",
- "truocsn": "Phường 8 (thành phố Vĩnh Long), Xã Tân Hạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2525\",\"properties\":{\"matinhxa\":\"30.2539\",\"maxa\":2539},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Tân Hào (xã)",
- "truocsn": "Xã Tân Lợi Thạnh, Xã Thạnh Phú Đông, Xã Tân Hào",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2467\",\"properties\":{\"matinhxa\":\"30.2481\",\"maxa\":2481},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tân Hoà (xã)",
- "truocsn": "Xã Long Thới (huyện Tiểu Cần), Xã Tân Hòa, Thị trấn Cầu Quan",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2503\",\"properties\":{\"matinhxa\":\"30.2517\",\"maxa\":2517},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Tân Long Hội (xã)",
- "truocsn": "Xã Tân An Hội, Xã Tân Long, Xã Tân Long Hội",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2541\",\"properties\":{\"matinhxa\":\"30.2555\",\"maxa\":2555},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Tân Lược (xã)",
- "truocsn": "Xã Tân Thành, Xã Tân An Thạnh, Xã Tân Lược",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2582\",\"properties\":{\"matinhxa\":\"30.2596\",\"maxa\":2596},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tân Ngãi (phường)",
- "truocsn": "Phường Tân Hòa, Phường Tân Hội, Phường Tân Ngãi",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2521\",\"properties\":{\"matinhxa\":\"30.2535\",\"maxa\":2535},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tân Phú (xã)",
- "truocsn": "Xã Tân Phú (huyện Châu Thành), Xã Tiên Long, Xã Phú Đức",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2447\",\"properties\":{\"matinhxa\":\"30.2461\",\"maxa\":2461},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Tân Quới (xã)",
- "truocsn": "Xã Tân Bình (huyện Bình Tân), Xã Thành Lợi, Thị trấn Tân Quới",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2584\",\"properties\":{\"matinhxa\":\"30.2598\",\"maxa\":2598},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tân Thành Bình (xã)",
- "truocsn": "Xã Tân Bình (huyện Mỏ Cày Bắc), Xã Thành An, Xã Hòa Lộc, Xã Tân Thành Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2456\",\"properties\":{\"matinhxa\":\"30.2470\",\"maxa\":2470},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Tân Thủy (xã)",
- "truocsn": "Thị trấn Tiệm Tôm, Xã An Hòa Tây, Xã Tân Thủy",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2482\",\"properties\":{\"matinhxa\":\"30.2496\",\"maxa\":2496},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Tân Xuân (xã)",
- "truocsn": "Xã Phú Lễ, Xã Phước Ngãi, Xã Tân Xuân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2477\",\"properties\":{\"matinhxa\":\"30.2491\",\"maxa\":2491},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tập Ngãi (xã)",
- "truocsn": "Xã Hiếu Tử, Xã Tập Ngãi",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2501\",\"properties\":{\"matinhxa\":\"30.2515\",\"maxa\":2515},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tập Sơn (xã)",
- "truocsn": "Xã Tân Sơn, Xã Phước Hưng, Xã Tập Sơn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2511\",\"properties\":{\"matinhxa\":\"30.2525\",\"maxa\":2525},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Thanh Đức (phường)",
- "truocsn": "Phường 5 (thành phố Vĩnh Long), Xã Thanh Đức",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2524\",\"properties\":{\"matinhxa\":\"30.2538\",\"maxa\":2538},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Thạnh Hải (xã)",
- "truocsn": "Xã An Điền, Xã Thạnh Hải",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2487\",\"properties\":{\"matinhxa\":\"30.2501\",\"maxa\":2501},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Thạnh Phong (xã)",
- "truocsn": "Xã Giao Thạnh, Xã Thạnh Phong",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2488\",\"properties\":{\"matinhxa\":\"30.2502\",\"maxa\":2502},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Thạnh Phú (xã)",
- "truocsn": "Thị trấn Thạnh Phú, Xã An Thạnh (huyện Thạnh Phú), Xã Bình Thạnh, Xã Mỹ An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2483\",\"properties\":{\"matinhxa\":\"30.2497\",\"maxa\":2497},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Thạnh Phước (xã)",
- "truocsn": "Xã Đại Hòa Lộc, Xã Thạnh Phước",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2474\",\"properties\":{\"matinhxa\":\"30.2488\",\"maxa\":2488},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Thành Thới (xã)",
- "truocsn": "Xã An Thới, Xã Thành Thới A, Xã Thành Thới B",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2460\",\"properties\":{\"matinhxa\":\"30.2474\",\"maxa\":2474},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Thạnh Trị (xã)",
- "truocsn": "Xã Định Trung, Xã Phú Long, Xã Thạnh Trị",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2473\",\"properties\":{\"matinhxa\":\"30.2487\",\"maxa\":2487},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Thới Thuận (xã)",
- "truocsn": "Xã Thừa Đức, Xã Thới Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2475\",\"properties\":{\"matinhxa\":\"30.2489\",\"maxa\":2489},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Tiên Thủy (xã)",
- "truocsn": "Thị trấn Tiên Thủy, Xã Thành Triệu, Xã Quới Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2448\",\"properties\":{\"matinhxa\":\"30.2462\",\"maxa\":2462},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Tiểu Cần (xã)",
- "truocsn": "Thị trấn Tiểu Cần, Xã Phú Cần, Xã Hiếu Trung",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2500\",\"properties\":{\"matinhxa\":\"30.2514\",\"maxa\":2514},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Trà Côn (xã)",
- "truocsn": "Xã Nhơn Bình, Xã Trà Côn, Xã Tân Mỹ, Thị trấn Tam Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2589\",\"properties\":{\"matinhxa\":\"30.2603\",\"maxa\":2603},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Trà Cú (xã)",
- "truocsn": "Thị trấn Trà Cú, Xã Ngãi Xuyên, Xã Thanh Sơn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2510\",\"properties\":{\"matinhxa\":\"30.2524\",\"maxa\":2524},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Trà Ôn (xã)",
- "truocsn": "Xã Tích Thiện, Thị trấn Trà Ôn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2587\",\"properties\":{\"matinhxa\":\"30.2601\",\"maxa\":2601},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Trà Vinh (phường)",
- "truocsn": "Phường 1, Phường 3, Phường 9 (thành phố Trà Vinh)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2489\",\"properties\":{\"matinhxa\":\"30.2503\",\"maxa\":2503},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Trung Hiệp (xã)",
- "truocsn": "Xã Tân An Luông, Xã Trung Chánh, Xã Trung Hiệp",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2544\",\"properties\":{\"matinhxa\":\"30.2558\",\"maxa\":2558},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Trung Ngãi (xã)",
- "truocsn": "Xã Trung Thành Đông, Xã Trung Nghĩa, Xã Trung Ngãi",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2547\",\"properties\":{\"matinhxa\":\"30.2561\",\"maxa\":2561},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Trung Thành (xã)",
- "truocsn": "Thị trấn Vũng Liêm, Xã Trung Hiếu, Xã Trung Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2546\",\"properties\":{\"matinhxa\":\"30.2560\",\"maxa\":2560},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Trường Long Hoà (phường)",
- "truocsn": "Phường 2 (thị xã Duyên Hải), Xã Trường Long Hòa",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2515\",\"properties\":{\"matinhxa\":\"30.2529\",\"maxa\":2529},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Vinh Kim (xã)",
- "truocsn": "Xã Kim Hòa, Xã Vinh Kim",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2532\",\"properties\":{\"matinhxa\":\"30.2546\",\"maxa\":2546},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Vĩnh Thành (xã)",
- "truocsn": "Xã Phú Sơn, Xã Tân Thiềng, Xã Vĩnh Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2451\",\"properties\":{\"matinhxa\":\"30.2465\",\"maxa\":2465},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Vĩnh Xuân (xã)",
- "truocsn": "Xã Hựu Thành, Xã Thuận Thới, Xã Vĩnh Xuân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2590\",\"properties\":{\"matinhxa\":\"30.2604\",\"maxa\":2604},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Bình (phường)",
- "truocsn": "Phường An Lộc, Phường An Bình A, Phường An Bình B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.424\",\"properties\":{\"matinhxa\":\"31.424\",\"maxa\":424},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Hòa (xã)",
- "truocsn": "Xã Phú Thành B, Xã An Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.428\",\"properties\":{\"matinhxa\":\"31.428\",\"maxa\":428},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Hữu (xã)",
- "truocsn": "Xã Hòa Hưng, Xã Mỹ Lương, Xã An Hữu",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.534\",\"properties\":{\"matinhxa\":\"31.534\",\"maxa\":534},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Long (xã)",
- "truocsn": "Xã An Phong, Xã Phú Ninh, Xã An Long",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.430\",\"properties\":{\"matinhxa\":\"31.430\",\"maxa\":430},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Phước (xã)",
- "truocsn": "Xã Tân Phước (huyện Tân Hồng), Xã An Phước",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.419\",\"properties\":{\"matinhxa\":\"31.3374\",\"maxa\":3374},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Thạnh Thủy (xã)",
- "truocsn": "Xã Bình Phan, Xã Bình Phục Nhứt, Xã An Thạnh Thủy",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.530\",\"properties\":{\"matinhxa\":\"31.530\",\"maxa\":530},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Ba Sao (xã)",
- "truocsn": "Xã Phương Trà, Xã Ba Sao",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.506\",\"properties\":{\"matinhxa\":\"31.506\",\"maxa\":506},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Hàng Trung (xã)",
- "truocsn": "Xã Tân Hội Trung, Xã Bình Hàng Tây, Xã Bình Hàng Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.457\",\"properties\":{\"matinhxa\":\"31.457\",\"maxa\":457},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Ninh (xã)",
- "truocsn": "Xã Xuân Đông, Xã Hòa Định, Xã Bình Ninh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.535\",\"properties\":{\"matinhxa\":\"31.535\",\"maxa\":535},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Phú (xã)",
- "truocsn": "Thị trấn Bình Phú, Xã Phú An, Xã Cẩm Sơn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.542\",\"properties\":{\"matinhxa\":\"31.543\",\"maxa\":543},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Thành (xã)",
- "truocsn": "Xã Bình Thành (huyện Thanh Bình), Xã Bình Tấn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.460\",\"properties\":{\"matinhxa\":\"31.460\",\"maxa\":460},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Trưng (xã)",
- "truocsn": "Xã Điềm Hy, Xã Bình Trưng",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.522\",\"properties\":{\"matinhxa\":\"31.522\",\"maxa\":522},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bình Xuân (phường)",
- "truocsn": "Phường Long Chánh, Xã Bình Xuân",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.90\",\"properties\":{\"matinhxa\":\"31.90\",\"maxa\":90},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cái Bè (xã)",
- "truocsn": "Thị trấn Cái Bè, Xã Đông Hòa Hiệp, Xã Hòa Khánh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.486\",\"properties\":{\"matinhxa\":\"31.486\",\"maxa\":486},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cai Lậy (phường)",
- "truocsn": "Phường 4 (thị xã Cai Lậy), Phường 5 (thị xã Cai Lậy), Xã Long Khánh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3355\",\"properties\":{\"matinhxa\":\"31.541\",\"maxa\":541},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cao Lãnh (phường)",
- "truocsn": "Phường 1 (thành phố Cao Lãnh), Phường 3, Phường 4, Phường 6, Phường Hòa Thuận, Xã Hòa An, Xã Tịnh Thới, Xã Tân Thuận Tây, Xã Tân Thuận Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.414\",\"properties\":{\"matinhxa\":\"31.414\",\"maxa\":414},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Tân Hiệp, Xã Thân Cửu Nghĩa, Xã Long An",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.548\",\"properties\":{\"matinhxa\":\"31.550\",\"maxa\":550},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Chợ Gạo (xã)",
- "truocsn": "Thị trấn Chợ Gạo, Xã Long Bình Điền, Xã Song Bình",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.526\",\"properties\":{\"matinhxa\":\"31.526\",\"maxa\":526},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đạo Thạnh (phường)",
- "truocsn": "Phường 4 (thành phố Mỹ Tho), Phường 5 (thành phố Mỹ Tho), Xã Đạo Thạnh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.511\",\"properties\":{\"matinhxa\":\"31.511\",\"maxa\":511},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đốc Binh Kiều (xã)",
- "truocsn": "Xã Tân Kiều, Xã Đốc Binh Kiều",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.437\",\"properties\":{\"matinhxa\":\"31.437\",\"maxa\":437},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đồng Sơn (xã)",
- "truocsn": "Xã Bình Nhì, Xã Đồng Thạnh, Xã Đồng Sơn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.537\",\"properties\":{\"matinhxa\":\"31.537\",\"maxa\":537},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Gia Thuận (xã)",
- "truocsn": "Thị trấn Vàm Láng, Xã Kiểng Phước, Xã Gia Thuận",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.89\",\"properties\":{\"matinhxa\":\"31.89\",\"maxa\":89},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Gò Công (phường)",
- "truocsn": "Phường 1 (thành phố Gò Công), Phường 5 (thành phố Gò Công), Phường Long Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.514\",\"properties\":{\"matinhxa\":\"31.514\",\"maxa\":514},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Gò Công Đông (xã)",
- "truocsn": "Xã Tân Thành (huyện Gò Công Đông), Xã Tăng Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.88\",\"properties\":{\"matinhxa\":\"31.88\",\"maxa\":88},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hậu Mỹ (xã)",
- "truocsn": "Xã Hậu Mỹ Bắc A, Xã Hậu Mỹ Bắc B, Xã Hậu Mỹ Trinh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.519\",\"properties\":{\"matinhxa\":\"31.519\",\"maxa\":519},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hiệp Đức (xã)",
- "truocsn": "Xã Tân Phong, Xã Hội Xuân, Xã Hiệp Đức",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.546\",\"properties\":{\"matinhxa\":\"31.548\",\"maxa\":548},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hòa Long (xã)",
- "truocsn": "Thị trấn Lai Vung, Xã Long Hậu, Xã Long Thắng, Xã Hòa Long",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.467\",\"properties\":{\"matinhxa\":\"31.467\",\"maxa\":467},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hội Cư (xã)",
- "truocsn": "Xã Mỹ Hội (huyện Cái Bè), Xã An Cư, Xã Hậu Thành, Xã Hậu Mỹ Phú",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.520\",\"properties\":{\"matinhxa\":\"31.520\",\"maxa\":520},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hồng Ngự (phường)",
- "truocsn": "Phường An Thạnh, Xã Bình Thạnh, Xã Tân Hội (thành phố Hồng Ngự)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.420\",\"properties\":{\"matinhxa\":\"31.420\",\"maxa\":420},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hưng Thạnh (xã)",
- "truocsn": "Xã Hưng Thạnh (huyện Tân Phước), Xã Phú Mỹ, Xã Tân Hòa Thành",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.479\",\"properties\":{\"matinhxa\":\"31.479\",\"maxa\":479},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Kim Sơn (xã)",
- "truocsn": "Xã Song Thuận, Xã Bình Đức, Xã Kim Sơn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.524\",\"properties\":{\"matinhxa\":\"31.524\",\"maxa\":524},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Lai Vung (xã)",
- "truocsn": "Xã Tân Thành, Xã Tân Phước (huyện Lai Vung), Xã Định An, Xã Định Yên",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.465\",\"properties\":{\"matinhxa\":\"31.465\",\"maxa\":465},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Lấp Vò (xã)",
- "truocsn": "Thị trấn Lấp Vò, Xã Bình Thành (huyện Lấp Vò), Xã Vĩnh Thạnh, Xã Bình Thạnh Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.462\",\"properties\":{\"matinhxa\":\"31.462\",\"maxa\":462},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Long Bình (xã)",
- "truocsn": "Xã Bình Tân, Xã Long Bình",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.84\",\"properties\":{\"matinhxa\":\"31.84\",\"maxa\":84},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Long Định (xã)",
- "truocsn": "Xã Nhị Bình, Xã Đông Hòa, Xã Long Định",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.550\",\"properties\":{\"matinhxa\":\"31.552\",\"maxa\":552},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Long Hưng (xã)",
- "truocsn": "Xã Tam Hiệp, Xã Thạnh Phú, Xã Long Hưng",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.551\",\"properties\":{\"matinhxa\":\"31.553\",\"maxa\":553},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Long Khánh (xã)",
- "truocsn": "Xã Long Khánh A, Xã Long Khánh B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.423\",\"properties\":{\"matinhxa\":\"31.423\",\"maxa\":423},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Long Phú Thuận (xã)",
- "truocsn": "Xã Long Thuận, Xã Phú Thuận A, Xã Phú Thuận B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.425\",\"properties\":{\"matinhxa\":\"31.425\",\"maxa\":425},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Long Thuận (phường)",
- "truocsn": "Phường 2 (thành phố Gò Công), Phường Long Thuận",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.516\",\"properties\":{\"matinhxa\":\"31.516\",\"maxa\":516},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Long Tiên (xã)",
- "truocsn": "Xã Mỹ Long (huyện Cai Lậy), Xã Long Trung, Xã Long Tiên",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.545\",\"properties\":{\"matinhxa\":\"31.547\",\"maxa\":547},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lương Hòa Lạc (xã)",
- "truocsn": "Xã Thanh Bình, Xã Phú Kiết, Xã Lương Hòa Lạc",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.528\",\"properties\":{\"matinhxa\":\"31.528\",\"maxa\":528},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Mỹ An Hưng (xã)",
- "truocsn": "Xã Tân Mỹ (huyện Lấp Vò), Xã Hội An Đông, Xã Mỹ An Hưng A, Xã Mỹ An Hưng B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.463\",\"properties\":{\"matinhxa\":\"31.463\",\"maxa\":463},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mỹ Đức Tây (xã)",
- "truocsn": "Xã Thiện Trí, Xã Mỹ Đức Đông, Xã Mỹ Đức Tây",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.532\",\"properties\":{\"matinhxa\":\"31.532\",\"maxa\":532},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Mỹ Hiệp (xã)",
- "truocsn": "Xã Mỹ Long, Xã Bình Thạnh (huyện Cao Lãnh), Xã Mỹ Hiệp",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.509\",\"properties\":{\"matinhxa\":\"31.509\",\"maxa\":509},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Mỹ Lợi (xã)",
- "truocsn": "Xã An Thái Đông, Xã Mỹ Lợi A, Xã Mỹ Lợi B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.521\",\"properties\":{\"matinhxa\":\"31.521\",\"maxa\":521},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Mỹ Ngãi (phường)",
- "truocsn": "Phường Mỹ Ngãi, Xã Mỹ Tân (thành phố Cao Lãnh), Xã Tân Nghĩa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.415\",\"properties\":{\"matinhxa\":\"31.415\",\"maxa\":415},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Mỹ Phong (phường)",
- "truocsn": "Phường 9 (thành phố Mỹ Tho), Xã Tân Mỹ Chánh, Xã Mỹ Phong",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.513\",\"properties\":{\"matinhxa\":\"31.513\",\"maxa\":513},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Mỹ Phước Tây (phường)",
- "truocsn": "Phường 1 (thị xã Cai Lậy), Phường 3 (thị xã Cai Lậy), Xã Mỹ Hạnh Trung, Xã Mỹ Phước Tây",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3359\",\"properties\":{\"matinhxa\":\"31.3376\",\"maxa\":3376},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mỹ Quí (xã)",
- "truocsn": "Xã Láng Biển, Xã Mỹ Đông, Xã Mỹ Quí",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.436\",\"properties\":{\"matinhxa\":\"31.436\",\"maxa\":436},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Mỹ Thành (xã)",
- "truocsn": "Xã Phú Nhuận, Xã Mỹ Thành Bắc, Xã Mỹ Thành Nam",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.540\",\"properties\":{\"matinhxa\":\"31.540\",\"maxa\":540},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Mỹ Thiện (xã)",
- "truocsn": "Xã Mỹ Tân (huyện Cái Bè), Xã Mỹ Trung, Xã Thiện Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.531\",\"properties\":{\"matinhxa\":\"31.531\",\"maxa\":531},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Mỹ Tho (phường)",
- "truocsn": "Phường 1 (thành phố Mỹ Tho), Phường 2 (thành phố Mỹ Tho), Phường Tân Long",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.510\",\"properties\":{\"matinhxa\":\"31.510\",\"maxa\":510},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Mỹ Thọ (xã)",
- "truocsn": "Thị trấn Mỹ Thọ, Xã Mỹ Hội (huyện Cao Lãnh), Xã Mỹ Xương, Xã Mỹ Thọ",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.508\",\"properties\":{\"matinhxa\":\"31.508\",\"maxa\":508},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Mỹ Tịnh An (xã)",
- "truocsn": "Xã Trung Hòa, Xã Hòa Tịnh, Xã Tân Bình Thạnh, Xã Mỹ Tịnh An",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.527\",\"properties\":{\"matinhxa\":\"31.527\",\"maxa\":527},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Mỹ Trà (phường)",
- "truocsn": "Phường Mỹ Phú, Xã Nhị Mỹ, Xã An Bình, Xã Mỹ Trà",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.416\",\"properties\":{\"matinhxa\":\"31.416\",\"maxa\":416},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Ngũ Hiệp (xã)",
- "truocsn": "Xã Tam Bình, Xã Ngũ Hiệp",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.547\",\"properties\":{\"matinhxa\":\"31.549\",\"maxa\":549},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Nhị Quý (phường)",
- "truocsn": "Phường Nhị Mỹ, Xã Phú Quý, Xã Nhị Quý",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.543\",\"properties\":{\"matinhxa\":\"31.544\",\"maxa\":544},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phong Hòa (xã)",
- "truocsn": "Xã Tân Hòa (huyện Lai Vung), Xã Định Hòa, Xã Vĩnh Thới, Xã Phong Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.468\",\"properties\":{\"matinhxa\":\"31.468\",\"maxa\":468},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Phong Mỹ (xã)",
- "truocsn": "Xã Phong Mỹ, Xã Gáo Giồng (phần còn lại sau khi sáp nhập vào xã Phú Cường)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.507\",\"properties\":{\"matinhxa\":\"31.507\",\"maxa\":507},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Phú Cường (xã)",
- "truocsn": "Xã Phú Cường (huyện Tam Nông), Xã Hòa Bình, Xã Gáo Giồng",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.431\",\"properties\":{\"matinhxa\":\"31.431\",\"maxa\":431},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phú Hựu (xã)",
- "truocsn": "Thị trấn Cái Tàu Hạ, Xã An Phú Thuận, Xã An Hiệp, Xã An Nhơn, Xã Phú Hựu",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.471\",\"properties\":{\"matinhxa\":\"31.471\",\"maxa\":471},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phú Thành (xã)",
- "truocsn": "Xã Bình Phú (huyện Gò Công Tây), Xã Thành Công, Xã Yên Luông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.538\",\"properties\":{\"matinhxa\":\"31.538\",\"maxa\":538},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phú Thọ (xã)",
- "truocsn": "Xã Phú Thành A, Xã Phú Thọ",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.432\",\"properties\":{\"matinhxa\":\"31.432\",\"maxa\":432},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Phương Thịnh (xã)",
- "truocsn": "Xã Hưng Thạnh (huyện Tháp Mười), Xã Phương Thịnh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.505\",\"properties\":{\"matinhxa\":\"31.505\",\"maxa\":505},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Sa Đéc (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3, Phường 4 (thành phố Sa Đéc), Phường An Hòa, Phường Tân Quy Đông, Xã Tân Khánh Đông, Xã Tân Quy Tây",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.417\",\"properties\":{\"matinhxa\":\"31.417\",\"maxa\":417},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Sơn Qui (phường)",
- "truocsn": "Phường Long Hưng, Xã Tân Trung, Xã Bình Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.515\",\"properties\":{\"matinhxa\":\"31.515\",\"maxa\":515},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tam Nông (xã)",
- "truocsn": "Xã Phú Đức, Xã Phú Hiệp",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.427\",\"properties\":{\"matinhxa\":\"31.427\",\"maxa\":427},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tân Điền (xã)",
- "truocsn": "Xã Bình Ân, Xã Tân Điền",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.121\",\"properties\":{\"matinhxa\":\"31.121\",\"maxa\":121},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Đông (xã)",
- "truocsn": "Xã Tân Phước (huyện Gò Công Đông), Xã Tân Tây, Xã Tân Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.120\",\"properties\":{\"matinhxa\":\"31.120\",\"maxa\":120},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Dương (xã)",
- "truocsn": "Xã Tân Phú Đông, Xã Hòa Thành, Xã Tân Dương",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.466\",\"properties\":{\"matinhxa\":\"31.466\",\"maxa\":466},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Hộ Cơ (xã)",
- "truocsn": "Xã Tân Thành B, Xã Tân Hộ Cơ",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3358\",\"properties\":{\"matinhxa\":\"31.419\",\"maxa\":419},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tân Hòa (xã)",
- "truocsn": "Thị trấn Tân Hòa, Xã Phước Trung, Xã Bình Nghị",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.87\",\"properties\":{\"matinhxa\":\"31.87\",\"maxa\":87},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tân Hồng (xã)",
- "truocsn": "Thị trấn Sa Rài, Xã Bình Phú (huyện Tân Hồng), Xã Tân Công Chí",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.418\",\"properties\":{\"matinhxa\":\"31.418\",\"maxa\":418},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tân Hương (xã)",
- "truocsn": "Xã Tân Lý Đông, Xã Tân Hội Đông, Xã Tân Hương",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.549\",\"properties\":{\"matinhxa\":\"31.551\",\"maxa\":551},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Tân Khánh Trung (xã)",
- "truocsn": "Xã Long Hưng A, Xã Long Hưng B, Xã Tân Khánh Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.464\",\"properties\":{\"matinhxa\":\"31.464\",\"maxa\":464},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tân Long (xã)",
- "truocsn": "Xã Tân Bình, Xã Tân Hòa (huyện Thanh Bình), Xã Tân Quới, Xã Tân Huề, Xã Tân Long, Xã Phú Thuận B (phần còn lại sau khi sáp nhập vào xã Long Phú Thuận)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.461\",\"properties\":{\"matinhxa\":\"31.461\",\"maxa\":461},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tân Nhuận Đông (xã)",
- "truocsn": "Xã Hòa Tân, Xã An Khánh, Xã Tân Nhuận Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.469\",\"properties\":{\"matinhxa\":\"31.469\",\"maxa\":469},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Tân Phú (xã)",
- "truocsn": "Xã Tân Hội, Xã Tân Phú (thị xã Cai Lậy), Xã Mỹ Hạnh Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.541\",\"properties\":{\"matinhxa\":\"31.542\",\"maxa\":542},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Tân Phú Đông (xã)",
- "truocsn": "Xã Phú Thạnh, Xã Phú Đông, Xã Phú Tân",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.86\",\"properties\":{\"matinhxa\":\"31.86\",\"maxa\":86},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Tân Phú Trung (xã)",
- "truocsn": "Xã Tân Bình, Xã Tân Phú (huyện Châu Thành), Xã Phú Long, Xã Tân Phú Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.470\",\"properties\":{\"matinhxa\":\"31.470\",\"maxa\":470},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Tân Phước 1 (xã)",
- "truocsn": "Thị trấn Mỹ Phước, Xã Thạnh Mỹ, Xã Tân Hòa Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.517\",\"properties\":{\"matinhxa\":\"31.517\",\"maxa\":517},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tân Phước 2 (xã)",
- "truocsn": "Xã Thạnh Tân, Xã Thạnh Hòa, Xã Tân Hòa Tây",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.518\",\"properties\":{\"matinhxa\":\"31.518\",\"maxa\":518},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tân Phước 3 (xã)",
- "truocsn": "Xã Phước Lập, Xã Tân Lập 1, Xã Tân Lập 2",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.480\",\"properties\":{\"matinhxa\":\"31.480\",\"maxa\":480},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Thông Bình, Xã Tân Thành A",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3360\",\"properties\":{\"matinhxa\":\"31.3377\",\"maxa\":3377},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tân Thạnh (xã)",
- "truocsn": "Xã Phú Lợi, Xã Tân Thạnh (huyện Thanh Bình) (phần còn lại sau khi sáp nhập vào xã Thanh Bình)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.459\",\"properties\":{\"matinhxa\":\"31.459\",\"maxa\":459},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tân Thới (xã)",
- "truocsn": "Xã Tân Phú, Xã Tân Thạnh (huyện Tân Phú Đông), Xã Tân Thới",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.85\",\"properties\":{\"matinhxa\":\"31.85\",\"maxa\":85},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tân Thuận Bình (xã)",
- "truocsn": "Xã Đăng Hưng Phước, Xã Quơn Long, Xã Tân Thuận Bình",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.529\",\"properties\":{\"matinhxa\":\"31.529\",\"maxa\":529},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Thanh Bình (xã)",
- "truocsn": "Xã Tân Mỹ, Xã Tân Phú (huyện Thanh Bình), Thị trấn Thanh Bình, Xã Tân Thạnh (huyện Thanh Bình)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.458\",\"properties\":{\"matinhxa\":\"31.458\",\"maxa\":458},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Thanh Hòa (phường)",
- "truocsn": "Phường 2 (thị xã Cai Lậy), Xã Tân Bình (thị xã Cai Lậy), Xã Thanh Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.544\",\"properties\":{\"matinhxa\":\"31.545\",\"maxa\":545},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Thanh Hưng (xã)",
- "truocsn": "Xã Tân Thanh, Xã Tân Hưng, Xã An Thái Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.533\",\"properties\":{\"matinhxa\":\"31.533\",\"maxa\":533},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Thanh Mỹ (xã)",
- "truocsn": "Xã Phú Điền, Xã Thanh Mỹ",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.504\",\"properties\":{\"matinhxa\":\"31.504\",\"maxa\":504},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Thạnh Phú (xã)",
- "truocsn": "Xã Phú Cường (huyện Cai Lậy), Xã Thạnh Lộc",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.539\",\"properties\":{\"matinhxa\":\"31.539\",\"maxa\":539},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tháp Mười (xã)",
- "truocsn": "Thị trấn Mỹ An, Xã Mỹ An, Xã Mỹ Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.433\",\"properties\":{\"matinhxa\":\"31.433\",\"maxa\":433},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Thới Sơn (phường)",
- "truocsn": "Phường 6 (thành phố Mỹ Tho), Xã Thới Sơn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.525\",\"properties\":{\"matinhxa\":\"31.525\",\"maxa\":525},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Thường Lạc (phường)",
- "truocsn": "Phường An Lạc, Xã Thường Thới Hậu A, Xã Thường Lạc",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.422\",\"properties\":{\"matinhxa\":\"31.422\",\"maxa\":422},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Thường Phước (xã)",
- "truocsn": "Thị trấn Thường Thới Tiền, Xã Thường Phước 1, Xã Thường Phước 2",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.421\",\"properties\":{\"matinhxa\":\"31.421\",\"maxa\":421},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tràm Chim (xã)",
- "truocsn": "Thị trấn Tràm Chim, Xã Tân Công Sính",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.426\",\"properties\":{\"matinhxa\":\"31.426\",\"maxa\":426},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Trung An (phường)",
- "truocsn": "Phường 10, Xã Phước Thạnh, Xã Trung An",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.512\",\"properties\":{\"matinhxa\":\"31.512\",\"maxa\":512},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Trường Xuân (xã)",
- "truocsn": "Xã Thạnh Lợi, Xã Trường Xuân",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.434\",\"properties\":{\"matinhxa\":\"31.434\",\"maxa\":434},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Vĩnh Bình (xã)",
- "truocsn": "Thị trấn Vĩnh Bình, Xã Thạnh Nhựt, Xã Thạnh Trị",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.536\",\"properties\":{\"matinhxa\":\"31.536\",\"maxa\":536},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Vĩnh Hựu (xã)",
- "truocsn": "Xã Long Vĩnh, Xã Vĩnh Hựu",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.79\",\"properties\":{\"matinhxa\":\"31.79\",\"maxa\":79},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Vĩnh Kim (xã)",
- "truocsn": "Xã Phú Phong, Xã Bàn Long, Xã Vĩnh Kim",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.523\",\"properties\":{\"matinhxa\":\"31.523\",\"maxa\":523},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Biên (xã)",
- "truocsn": "Thị trấn Thứ Ba, Xã Đông Yên, Xã Hưng Yên",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.399\",\"properties\":{\"matinhxa\":\"32.399\",\"maxa\":399},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Châu (xã)",
- "truocsn": "Thị trấn An Châu, Xã Hòa Bình Thạnh, Xã Vĩnh Thành",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.350\",\"properties\":{\"matinhxa\":\"32.350\",\"maxa\":350},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Cư (xã)",
- "truocsn": "Xã Văn Giáo, Xã Vĩnh Trung, Xã An Cư",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.498\",\"properties\":{\"matinhxa\":\"32.498\",\"maxa\":498},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Minh (xã)",
- "truocsn": "Thị trấn Thứ Mười Một, Xã Đông Hưng, Xã Đông Hưng B",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.402\",\"properties\":{\"matinhxa\":\"32.402\",\"maxa\":402},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Phú (xã)",
- "truocsn": "Thị trấn An Phú, Xã Vĩnh Hội Đông, Xã Phú Hội, Xã Phước Hưng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.341\",\"properties\":{\"matinhxa\":\"32.341\",\"maxa\":341},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Ba Chúc (xã)",
- "truocsn": "Thị trấn Ba Chúc, Xã Lạc Quới, Xã Lê Trì",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.501\",\"properties\":{\"matinhxa\":\"32.501\",\"maxa\":501},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Bình An (huyện Châu Thành), Xã Vĩnh Hòa Hiệp, Xã Vĩnh Hòa Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.386\",\"properties\":{\"matinhxa\":\"32.386\",\"maxa\":386},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Đức (phường)",
- "truocsn": "Phường Bình Khánh, Phường Bình Đức, Xã Mỹ Khánh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.174\",\"properties\":{\"matinhxa\":\"32.174\",\"maxa\":174},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Giang (xã)",
- "truocsn": "xã Bình Giang (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.379\",\"properties\":{\"matinhxa\":\"32.379\",\"maxa\":379},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Hòa (xã)",
- "truocsn": "Xã Bình Thạnh, Xã An Hòa, Xã Bình Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.353\",\"properties\":{\"matinhxa\":\"32.353\",\"maxa\":353},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Mỹ (xã)",
- "truocsn": "Xã Bình Thủy, Xã Bình Chánh, Xã Bình Mỹ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.494\",\"properties\":{\"matinhxa\":\"32.494\",\"maxa\":494},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Sơn (xã)",
- "truocsn": "xã Bình Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.377\",\"properties\":{\"matinhxa\":\"32.377\",\"maxa\":377},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bình Thạnh Đông (xã)",
- "truocsn": "Xã Hiệp Xương, Xã Phú Bình, Xã Bình Thạnh Đông",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.484\",\"properties\":{\"matinhxa\":\"32.484\",\"maxa\":484},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cần Đăng (xã)",
- "truocsn": "Xã Vĩnh Lợi, Xã Cần Đăng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.351\",\"properties\":{\"matinhxa\":\"32.351\",\"maxa\":351},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Châu Đốc (phường)",
- "truocsn": "Phường Vĩnh Nguơn, Phường Châu Phú A, Phường Châu Phú B, Phường Vĩnh Mỹ, Xã Vĩnh Châu",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.340\",\"properties\":{\"matinhxa\":\"32.340\",\"maxa\":340},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Châu Phong (xã)",
- "truocsn": "Xã Phú Vĩnh, Xã Lê Chánh, Xã Châu Phong",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.476\",\"properties\":{\"matinhxa\":\"32.476\",\"maxa\":476},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Châu Phú (xã)",
- "truocsn": "Thị trấn Cái Dầu, Xã Bình Long, Xã Bình Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.485\",\"properties\":{\"matinhxa\":\"32.485\",\"maxa\":485},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Minh Lương, Xã Minh Hòa, Xã Giục Tượng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.385\",\"properties\":{\"matinhxa\":\"32.385\",\"maxa\":385},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Chi Lăng (phường)",
- "truocsn": "Phường Núi Voi, Phường Chi Lăng, Xã Tân Lợi",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.495\",\"properties\":{\"matinhxa\":\"32.495\",\"maxa\":495},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Chợ Mới (xã)",
- "truocsn": "Thị trấn Chợ Mới, Xã Kiến An, Xã Kiến Thành",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.355\",\"properties\":{\"matinhxa\":\"32.355\",\"maxa\":355},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Chợ Vàm (xã)",
- "truocsn": "Thị trấn Chợ Vàm, Xã Phú Thạnh, Xã Phú Thành",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.477\",\"properties\":{\"matinhxa\":\"32.477\",\"maxa\":477},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Cô Tô (xã)",
- "truocsn": "Thị trấn Cô Tô, Xã Tà Đảnh, Xã Tân Tuyến",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.503\",\"properties\":{\"matinhxa\":\"32.503\",\"maxa\":503},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Cù Lao Giêng (xã)",
- "truocsn": "Xã Tấn Mỹ, Xã Mỹ Hiệp, Xã Bình Phước Xuân",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.357\",\"properties\":{\"matinhxa\":\"32.357\",\"maxa\":357},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Định Hòa (xã)",
- "truocsn": "Xã Thới Quản, Xã Thủy Liễu, Xã Định Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.397\",\"properties\":{\"matinhxa\":\"32.397\",\"maxa\":397},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Định Mỹ (xã)",
- "truocsn": "Xã Vĩnh Phú (huyện Thoại Sơn), Xã Định Thành, Xã Định Mỹ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.366\",\"properties\":{\"matinhxa\":\"32.366\",\"maxa\":366},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đông Hòa (xã)",
- "truocsn": "Xã Đông Thạnh, Xã Đông Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.404\",\"properties\":{\"matinhxa\":\"32.404\",\"maxa\":404},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đông Hưng (xã)",
- "truocsn": "Xã Vân Khánh Đông, Xã Đông Hưng A",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.406\",\"properties\":{\"matinhxa\":\"32.406\",\"maxa\":406},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đông Thái (xã)",
- "truocsn": "Xã Nam Thái, Xã Nam Thái A, Xã Đông Thái",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.401\",\"properties\":{\"matinhxa\":\"32.401\",\"maxa\":401},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Giang Thành (xã)",
- "truocsn": "Xã Tân Khánh Hòa, Xã Phú Lợi, Xã Phú Mỹ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.374\",\"properties\":{\"matinhxa\":\"32.374\",\"maxa\":374},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Giồng Riềng (xã)",
- "truocsn": "Thị trấn Giồng Riềng, Xã Bàn Tân Định, Xã Thạnh Hòa, Xã Bàn Thạch, Xã Thạnh Bình",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.389\",\"properties\":{\"matinhxa\":\"32.389\",\"maxa\":389},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Gò Quao (xã)",
- "truocsn": "Thị trấn Gò Quao, Xã Vĩnh Phước B, Xã Định An",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.395\",\"properties\":{\"matinhxa\":\"32.395\",\"maxa\":395},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hà Tiên (phường)",
- "truocsn": "Phường Pháo Đài, Phường Bình San, Phường Mỹ Đức, Phường Đông Hồ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.371\",\"properties\":{\"matinhxa\":\"32.371\",\"maxa\":371},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hòa Điền (xã)",
- "truocsn": "Xã Kiên Bình, Xã Hòa Điền",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.375\",\"properties\":{\"matinhxa\":\"32.375\",\"maxa\":375},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hòa Hưng (xã)",
- "truocsn": "Xã Hòa An (huyện Giồng Riềng), Xã Hòa Lợi, Xã Hòa Hưng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.392\",\"properties\":{\"matinhxa\":\"32.392\",\"maxa\":392},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hòa Lạc (xã)",
- "truocsn": "Xã Phú Hiệp, Xã Hòa Lạc",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.481\",\"properties\":{\"matinhxa\":\"32.481\",\"maxa\":481},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hòa Thuận (xã)",
- "truocsn": "Xã Ngọc Hòa, Xã Hòa Thuận",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.394\",\"properties\":{\"matinhxa\":\"32.394\",\"maxa\":394},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hội An (xã)",
- "truocsn": "Thị trấn Hội An, Xã Hòa An (huyện Chợ Mới), Xã Hòa Bình",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.360\",\"properties\":{\"matinhxa\":\"32.360\",\"maxa\":360},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hòn Đất (xã)",
- "truocsn": "Thị trấn Hòn Đất, Xã Lình Huỳnh, Xã Thổ Sơn, Xã Nam Thái Sơn",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.376\",\"properties\":{\"matinhxa\":\"32.376\",\"maxa\":376},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hòn Nghệ (xã)",
- "truocsn": "xã Hòn Nghệ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3303\",\"properties\":{\"matinhxa\":\"32.3319\",\"maxa\":3319},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Khánh Bình (xã)",
- "truocsn": "Thị trấn Long Bình, Xã Khánh An, Xã Khánh Bình",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.361\",\"properties\":{\"matinhxa\":\"32.361\",\"maxa\":361},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Kiên Hải (đặc khu)",
- "truocsn": "Huyện Kiên Hải",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3302\",\"properties\":{\"matinhxa\":\"32.3318\",\"maxa\":3318},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Kiên Lương (xã)",
- "truocsn": "Thị trấn Kiên Lương, Xã Bình An (huyện Kiên Lương), Xã Bình Trị",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.372\",\"properties\":{\"matinhxa\":\"32.372\",\"maxa\":372},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Long Điền (xã)",
- "truocsn": "Thị trấn Mỹ Luông, Xã Long Điền A, Xã Long Điền B",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.356\",\"properties\":{\"matinhxa\":\"32.356\",\"maxa\":356},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Long Kiến (xã)",
- "truocsn": "Xã An Thạnh Trung, Xã Mỹ An, Xã Long Kiến",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.359\",\"properties\":{\"matinhxa\":\"32.359\",\"maxa\":359},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Long Phú (phường)",
- "truocsn": "Phường Long Hưng, Phường Long Châu, Phường Long Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.475\",\"properties\":{\"matinhxa\":\"32.475\",\"maxa\":475},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Long Thạnh (xã)",
- "truocsn": "Xã Vĩnh Phú (huyện Giồng Riềng), Xã Vĩnh Thạnh, Xã Long Thạnh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.393\",\"properties\":{\"matinhxa\":\"32.393\",\"maxa\":393},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Long Xuyên (phường)",
- "truocsn": "Phường Mỹ Bình, Phường Mỹ Long, Phường Mỹ Xuyên, Phường Mỹ Phước, Phường Mỹ Quý, Phường Mỹ Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.171\",\"properties\":{\"matinhxa\":\"32.171\",\"maxa\":171},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Mỹ Đức (xã)",
- "truocsn": "Xã Khánh Hòa, Xã Mỹ Đức",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.491\",\"properties\":{\"matinhxa\":\"32.491\",\"maxa\":491},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mỹ Hòa Hưng (xã)",
- "truocsn": "xã Mỹ Hòa Hưng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.176\",\"properties\":{\"matinhxa\":\"32.176\",\"maxa\":176},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Mỹ Thới (phường)",
- "truocsn": "Phường Mỹ Thạnh, Phường Mỹ Thới",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.175\",\"properties\":{\"matinhxa\":\"32.175\",\"maxa\":175},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Mỹ Thuận (xã)",
- "truocsn": "Thị trấn Sóc Sơn, Xã Mỹ Hiệp Sơn, Xã Mỹ Phước, Xã Mỹ Thuận",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.381\",\"properties\":{\"matinhxa\":\"32.381\",\"maxa\":381},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Ngọc Chúc (xã)",
- "truocsn": "Xã Ngọc Thuận, Xã Ngọc Thành, Xã Ngọc Chúc",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.391\",\"properties\":{\"matinhxa\":\"32.391\",\"maxa\":391},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Nhơn Hội (xã)",
- "truocsn": "Xã Quốc Thái, Xã Nhơn Hội, Xã Phước Hưng, Xã Phú Hội (phần còn lại sau khi sáp nhập vào xã An Phú)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.378\",\"properties\":{\"matinhxa\":\"32.378\",\"maxa\":378},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Nhơn Mỹ (xã)",
- "truocsn": "Xã Mỹ Hội Đông, Xã Long Giang, Xã Nhơn Mỹ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.358\",\"properties\":{\"matinhxa\":\"32.358\",\"maxa\":358},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Núi Cấm (xã)",
- "truocsn": "Xã Tân Lập, Xã An Hảo",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.499\",\"properties\":{\"matinhxa\":\"32.499\",\"maxa\":499},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Ô Lâm (xã)",
- "truocsn": "Xã An Tức, Xã Lương Phi, Xã Ô Lâm",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.349\",\"properties\":{\"matinhxa\":\"32.349\",\"maxa\":349},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Óc Eo (xã)",
- "truocsn": "Thị trấn Óc Eo, Xã Vọng Thê, Xã Vọng Đông",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.363\",\"properties\":{\"matinhxa\":\"32.363\",\"maxa\":363},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phú An (xã)",
- "truocsn": "Xã Phú Thọ, Xã Phú Xuân, Xã Phú An",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.482\",\"properties\":{\"matinhxa\":\"32.482\",\"maxa\":482},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Phú Hòa (xã)",
- "truocsn": "Thị trấn Phú Hòa, Xã Phú Thuận, Xã Vĩnh Chánh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.362\",\"properties\":{\"matinhxa\":\"32.362\",\"maxa\":362},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Phú Hữu (xã)",
- "truocsn": "Xã Phú Hữu, Xã Vĩnh Lộc, Xã Phước Hưng (phần còn lại sau khi sáp nhập vào xã An Phú và Nhơn Hội)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.388\",\"properties\":{\"matinhxa\":\"32.388\",\"maxa\":388},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phú Lâm (xã)",
- "truocsn": "Xã Long Hòa, Xã Phú Long, Xã Phú Lâm",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.478\",\"properties\":{\"matinhxa\":\"32.478\",\"maxa\":478},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phú Quốc (đặc khu)",
- "truocsn": "Phường Dương Đông, Phường An Thới, Xã Dương Tơ, Xã Hàm Ninh, Xã Cửa Dương, Xã Bãi Thơm, Xã Gành Dầu, Xã Cửa Cạn",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.413\",\"properties\":{\"matinhxa\":\"32.413\",\"maxa\":413},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phú Tân (xã)",
- "truocsn": "Thị trấn Phú Mỹ, Xã Tân Hòa (huyện Phú Tân), Xã Tân Trung, Xã Phú Hưng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.483\",\"properties\":{\"matinhxa\":\"32.483\",\"maxa\":483},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Rạch Giá (phường)",
- "truocsn": "Phường Vĩnh Quang, Phường Vĩnh Thanh, Phường Vĩnh Thanh Vân, Phường Vĩnh Lạc, Phường An Hòa, Phường Vĩnh Hiệp, Phường An Bình, Phường Rạch Sỏi, Phường Vĩnh Lợi",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.368\",\"properties\":{\"matinhxa\":\"32.368\",\"maxa\":368},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Sơn Hải (xã)",
- "truocsn": "xã Sơn Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3304\",\"properties\":{\"matinhxa\":\"32.3320\",\"maxa\":3320},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Sơn Kiên (xã)",
- "truocsn": "Xã Sơn Bình, Xã Mỹ Thái, Xã Sơn Kiên",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.380\",\"properties\":{\"matinhxa\":\"32.380\",\"maxa\":380},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Tân An, Xã Tân Thạnh (thị xã Tân Châu), Xã Long An",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.456\",\"properties\":{\"matinhxa\":\"32.456\",\"maxa\":456},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tân Châu (phường)",
- "truocsn": "Phường Long Thạnh, Phường Long Sơn",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.429\",\"properties\":{\"matinhxa\":\"32.429\",\"maxa\":429},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Hiệp (xã)",
- "truocsn": "Thị trấn Tân Hiệp, Xã Tân Hiệp B, Xã Thạnh Đông B, Xã Thạnh Đông",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.383\",\"properties\":{\"matinhxa\":\"32.383\",\"maxa\":383},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Hội (xã)",
- "truocsn": "Xã Tân Hòa, Xã Tân An (huyện Tân Hiệp), Xã Tân Thành, Xã Tân Hội",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.382\",\"properties\":{\"matinhxa\":\"32.382\",\"maxa\":382},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Thạnh (xã)",
- "truocsn": "Xã Tân Thạnh (huyện An Minh), Xã Thuận Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.405\",\"properties\":{\"matinhxa\":\"32.405\",\"maxa\":405},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tây Phú (xã)",
- "truocsn": "Xã An Bình, Xã Mỹ Phú Đông, Xã Tây Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.364\",\"properties\":{\"matinhxa\":\"32.364\",\"maxa\":364},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tây Yên (xã)",
- "truocsn": "Xã Tây Yên A, Xã Nam Yên, Xã Tây Yên",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.400\",\"properties\":{\"matinhxa\":\"32.400\",\"maxa\":400},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Thạnh Đông (xã)",
- "truocsn": "Xã Tân Hiệp A, Xã Thạnh Trị, Xã Thạnh Đông A",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.384\",\"properties\":{\"matinhxa\":\"32.384\",\"maxa\":384},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thạnh Hưng (xã)",
- "truocsn": "Xã Thạnh Lộc (huyện Giồng Riềng), Xã Thạnh Phước, Xã Thạnh Hưng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.390\",\"properties\":{\"matinhxa\":\"32.390\",\"maxa\":390},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Thạnh Lộc (xã)",
- "truocsn": "Xã Thạnh Lộc (huyện Châu Thành), Xã Mong Thọ, Xã Mong Thọ A, Xã Mong Thọ B",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.387\",\"properties\":{\"matinhxa\":\"32.387\",\"maxa\":387},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thạnh Mỹ Tây (xã)",
- "truocsn": "Xã Đào Hữu Cảnh, Xã Ô Long Vĩ, Xã Thạnh Mỹ Tây",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.493\",\"properties\":{\"matinhxa\":\"32.493\",\"maxa\":493},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thổ Châu (đặc khu)",
- "truocsn": "Xã Thổ Châu",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3301\",\"properties\":{\"matinhxa\":\"32.3317\",\"maxa\":3317},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thoại Sơn (xã)",
- "truocsn": "Thị trấn Núi Sập, Xã Thoại Giang, Xã Bình Thành",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.367\",\"properties\":{\"matinhxa\":\"32.367\",\"maxa\":367},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thới Sơn (phường)",
- "truocsn": "Phường Nhơn Hưng, Phường Nhà Bàng, Phường Thới Sơn",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.497\",\"properties\":{\"matinhxa\":\"32.497\",\"maxa\":497},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Tiên Hải (xã)",
- "truocsn": "xã Tiên Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3309\",\"properties\":{\"matinhxa\":\"32.3325\",\"maxa\":3325},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tịnh Biên (phường)",
- "truocsn": "Phường An Phú, Phường Tịnh Biên, Xã An Nông",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.496\",\"properties\":{\"matinhxa\":\"32.496\",\"maxa\":496},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tô Châu (phường)",
- "truocsn": "Phường Tô Châu, Xã Thuận Yên, Xã Dương Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.370\",\"properties\":{\"matinhxa\":\"32.370\",\"maxa\":370},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tri Tôn (xã)",
- "truocsn": "Thị trấn Tri Tôn, Xã Núi Tô, Xã Châu Lăng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.500\",\"properties\":{\"matinhxa\":\"32.500\",\"maxa\":500},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "U Minh Thượng (xã)",
- "truocsn": "Xã An Minh Bắc, Xã Minh Thuận",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.403\",\"properties\":{\"matinhxa\":\"32.403\",\"maxa\":403},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Vân Khánh (xã)",
- "truocsn": "Xã Vân Khánh Tây, Xã Vân Khánh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.408\",\"properties\":{\"matinhxa\":\"32.408\",\"maxa\":408},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Vĩnh An (xã)",
- "truocsn": "Thị trấn Vĩnh Bình, Xã Tân Phú, Xã Vĩnh An",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.354\",\"properties\":{\"matinhxa\":\"32.354\",\"maxa\":354},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Vĩnh Bình (xã)",
- "truocsn": "Xã Vĩnh Bình Bắc, Xã Vĩnh Bình Nam, Xã Bình Minh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.410\",\"properties\":{\"matinhxa\":\"32.410\",\"maxa\":410},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Vĩnh Điều (xã)",
- "truocsn": "Xã Vĩnh Phú (huyện Giang Thành), Xã Vĩnh Điều",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.373\",\"properties\":{\"matinhxa\":\"32.373\",\"maxa\":373},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Vĩnh Gia (xã)",
- "truocsn": "Xã Vĩnh Phước, Xã Lương An Trà, Xã Vĩnh Gia",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.502\",\"properties\":{\"matinhxa\":\"32.502\",\"maxa\":502},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Vĩnh Hanh (xã)",
- "truocsn": "Xã Vĩnh Nhuận, Xã Vĩnh Hanh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.352\",\"properties\":{\"matinhxa\":\"32.352\",\"maxa\":352},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Vĩnh Hậu (xã)",
- "truocsn": "Thị trấn Đa Phước, Xã Vĩnh Trường, Xã Vĩnh Hậu",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.407\",\"properties\":{\"matinhxa\":\"32.407\",\"maxa\":407},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vĩnh Hòa (xã)",
- "truocsn": "Xã Vĩnh Hòa (huyện U Minh Thượng), Xã Thạnh Yên A, Xã Hòa Chánh, Xã Thạnh Yên",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.409\",\"properties\":{\"matinhxa\":\"32.409\",\"maxa\":409},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vĩnh Hòa Hưng (xã)",
- "truocsn": "Xã Vĩnh Hòa Hưng Bắc, Xã Vĩnh Hòa Hưng Nam",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.396\",\"properties\":{\"matinhxa\":\"32.396\",\"maxa\":396},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Vĩnh Phong (xã)",
- "truocsn": "Thị trấn Vĩnh Thuận, Xã Phong Đông, Xã Vĩnh Phong",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.412\",\"properties\":{\"matinhxa\":\"32.412\",\"maxa\":412},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Vĩnh Tế (phường)",
- "truocsn": "Phường Núi Sam, Xã Vĩnh Tế, Xã Vĩnh Châu (phần còn lại sau khi sáp nhập vào phường Châu Đốc)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.348\",\"properties\":{\"matinhxa\":\"32.348\",\"maxa\":348},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Vĩnh Thạnh Trung (xã)",
- "truocsn": "Thị trấn Vĩnh Thạnh Trung, Xã Mỹ Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.492\",\"properties\":{\"matinhxa\":\"32.492\",\"maxa\":492},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Vĩnh Thông (phường)",
- "truocsn": "Phường Vĩnh Thông, Xã Phi Thông, Xã Mỹ Lâm",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.369\",\"properties\":{\"matinhxa\":\"32.369\",\"maxa\":369},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Vĩnh Thuận (xã)",
- "truocsn": "Xã Tân Thuận, Xã Vĩnh Thuận",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.411\",\"properties\":{\"matinhxa\":\"32.411\",\"maxa\":411},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Vĩnh Trạch (xã)",
- "truocsn": "Xã Vĩnh Khánh, Xã Vĩnh Trạch",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.365\",\"properties\":{\"matinhxa\":\"32.365\",\"maxa\":365},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Vĩnh Tuy (xã)",
- "truocsn": "Xã Vĩnh Thắng, Xã Vĩnh Phước A, Xã Vĩnh Tuy",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.398\",\"properties\":{\"matinhxa\":\"32.398\",\"maxa\":398},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Vĩnh Xương (xã)",
- "truocsn": "Xã Vĩnh Hòa (thị xã Tân Châu), Xã Phú Lộc, Xã Vĩnh Xương",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.435\",\"properties\":{\"matinhxa\":\"32.435\",\"maxa\":435},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Bình (phường)",
- "truocsn": "Phường An Bình, Xã Mỹ Khánh, Phường Long Tuyền",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.281\",\"properties\":{\"matinhxa\":\"33.281\",\"maxa\":281},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Lạc Thôn (xã)",
- "truocsn": "Thị trấn An Lạc Thôn, Xã Xuân Hòa, Xã Trinh Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.155\",\"properties\":{\"matinhxa\":\"33.155\",\"maxa\":155},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Ninh (xã)",
- "truocsn": "Xã An Hiệp, Xã An Ninh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.323\",\"properties\":{\"matinhxa\":\"33.323\",\"maxa\":323},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Thạnh (xã)",
- "truocsn": "Thị trấn Cù Lao Dung, Xã An Thạnh 1, Xã An Thạnh Tây, Xã An Thạnh Đông",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.325\",\"properties\":{\"matinhxa\":\"33.325\",\"maxa\":325},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bình Thủy (phường)",
- "truocsn": "Phường An Thới, Phường Bình Thủy, Phường Bùi Hữu Nghĩa (phần còn lại sau khi sáp nhập vào phường Cái Khế)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.282\",\"properties\":{\"matinhxa\":\"33.282\",\"maxa\":282},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cái Khế (phường)",
- "truocsn": "Phường An Hòa, Phường Cái Khế, Phường Bùi Hữu Nghĩa",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.271\",\"properties\":{\"matinhxa\":\"33.271\",\"maxa\":271},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Cái Răng (phường)",
- "truocsn": "Phường Lê Bình, Phường Thường Thạnh, Phường Ba Láng, Phường Hưng Thạnh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.285\",\"properties\":{\"matinhxa\":\"33.285\",\"maxa\":285},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Mái Dầm, Thị trấn Ngã Sáu, Xã Đông Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.302\",\"properties\":{\"matinhxa\":\"33.302\",\"maxa\":302},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cờ Đỏ (xã)",
- "truocsn": "Thị trấn Cờ Đỏ, Xã Thới Đông, Xã Thới Xuân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.102\",\"properties\":{\"matinhxa\":\"33.102\",\"maxa\":102},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cù Lao Dung (xã)",
- "truocsn": "Xã An Thạnh 2, Xã Đại Ân 1, Xã An Thạnh 3, Xã An Thạnh Nam",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.326\",\"properties\":{\"matinhxa\":\"33.326\",\"maxa\":326},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đại Hải (xã)",
- "truocsn": "Xã Ba Trinh, Xã Đại Hải",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.316\",\"properties\":{\"matinhxa\":\"33.316\",\"maxa\":316},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đại Ngãi (xã)",
- "truocsn": "Thị trấn Đại Ngãi, Xã Long Đức",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.327\",\"properties\":{\"matinhxa\":\"33.327\",\"maxa\":327},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đại Thành (phường)",
- "truocsn": "Phường Hiệp Lợi, Xã Tân Thành, Xã Đại Thành",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.137\",\"properties\":{\"matinhxa\":\"33.137\",\"maxa\":137},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đông Hiệp (xã)",
- "truocsn": "Xã Đông Thắng, Xã Xuân Thắng, Xã Đông Hiệp",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.104\",\"properties\":{\"matinhxa\":\"33.104\",\"maxa\":104},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông Phước (xã)",
- "truocsn": "Thị trấn Cái Tắc, Xã Đông Thạnh, Xã Đông Phước A",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.125\",\"properties\":{\"matinhxa\":\"33.125\",\"maxa\":125},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đông Thuận (xã)",
- "truocsn": "Xã Đông Bình, Xã Đông Thuận",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.105\",\"properties\":{\"matinhxa\":\"33.105\",\"maxa\":105},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Gia Hòa (xã)",
- "truocsn": "Xã Thạnh Quới, Xã Gia Hòa 2",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.157\",\"properties\":{\"matinhxa\":\"33.157\",\"maxa\":157},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hiệp Hưng (xã)",
- "truocsn": "Thị trấn Cây Dương, Xã Hiệp Hưng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.304\",\"properties\":{\"matinhxa\":\"33.304\",\"maxa\":304},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hồ Đắc Kiện (xã)",
- "truocsn": "Xã Thiện Mỹ, Xã Hồ Đắc Kiện",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.317\",\"properties\":{\"matinhxa\":\"33.317\",\"maxa\":317},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hòa An (xã)",
- "truocsn": "Thị trấn Kinh Cùng, Xã Hòa An",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.139\",\"properties\":{\"matinhxa\":\"33.139\",\"maxa\":139},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hỏa Lựu (xã)",
- "truocsn": "Xã Tân Tiến, Xã Hỏa Tiến, Xã Hỏa Lựu",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.119\",\"properties\":{\"matinhxa\":\"33.119\",\"maxa\":119},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hòa Tú (xã)",
- "truocsn": "Xã Hòa Tú 1, Xã Hòa Tú 2",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.338\",\"properties\":{\"matinhxa\":\"33.338\",\"maxa\":338},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hưng Phú (phường)",
- "truocsn": "Phường Tân Phú, Phường Phú Thứ, Phường Hưng Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.286\",\"properties\":{\"matinhxa\":\"33.286\",\"maxa\":286},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Kế Sách (xã)",
- "truocsn": "Thị trấn Kế Sách, Xã Kế An, Xã Kế Thành",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.154\",\"properties\":{\"matinhxa\":\"33.154\",\"maxa\":154},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Khánh Hòa (phường)",
- "truocsn": "Phường Khánh Hòa, Xã Vĩnh Hiệp, Xã Hòa Đông",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.167\",\"properties\":{\"matinhxa\":\"33.167\",\"maxa\":167},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Lai Hòa (xã)",
- "truocsn": "xã Lai Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.170\",\"properties\":{\"matinhxa\":\"33.170\",\"maxa\":170},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Lâm Tân (xã)",
- "truocsn": "Xã Tuân Tức, Xã Lâm Kiết, Xã Lâm Tân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.162\",\"properties\":{\"matinhxa\":\"33.162\",\"maxa\":162},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Lịch Hội Thượng (xã)",
- "truocsn": "Thị trấn Lịch Hội Thượng, Xã Lịch Hội Thượng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.333\",\"properties\":{\"matinhxa\":\"33.333\",\"maxa\":333},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Liêu Tú (xã)",
- "truocsn": "Xã Viên Bình, Xã Liêu Tú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.332\",\"properties\":{\"matinhxa\":\"33.332\",\"maxa\":332},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Long Bình (phường)",
- "truocsn": "Phường Bình Thạnh, Phường Vĩnh Tường, Xã Long Bình",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.310\",\"properties\":{\"matinhxa\":\"33.310\",\"maxa\":310},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Long Hưng (xã)",
- "truocsn": "Xã Hưng Phú, Xã Long Hưng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.319\",\"properties\":{\"matinhxa\":\"33.319\",\"maxa\":319},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Long Mỹ (phường)",
- "truocsn": "Phường Thuận An (thị xã Long Mỹ), Xã Long Trị, Xã Long Trị A",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.309\",\"properties\":{\"matinhxa\":\"33.309\",\"maxa\":309},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Long Phú (xã)",
- "truocsn": "Thị trấn Long Phú, Xã Long Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.330\",\"properties\":{\"matinhxa\":\"33.330\",\"maxa\":330},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Long Phú 1 (phường)",
- "truocsn": "Phường Trà Lồng, Xã Tân Phú, Xã Long Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.311\",\"properties\":{\"matinhxa\":\"33.311\",\"maxa\":311},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Long Tuyền (phường)",
- "truocsn": "Phường Long Hòa, Phường Long Tuyền (phần còn lại sau khi sáp nhập vào phường An Bình)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.284\",\"properties\":{\"matinhxa\":\"33.284\",\"maxa\":284},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Lương Tâm (xã)",
- "truocsn": "Xã Lương Nghĩa, Xã Lương Tâm",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.149\",\"properties\":{\"matinhxa\":\"33.149\",\"maxa\":149},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Mỹ Hương (xã)",
- "truocsn": "Xã Thuận Hưng, Xã Phú Mỹ, Xã Mỹ Hương",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.321\",\"properties\":{\"matinhxa\":\"33.321\",\"maxa\":321},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Mỹ Phước (xã)",
- "truocsn": "xã Mỹ Phước (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.324\",\"properties\":{\"matinhxa\":\"33.324\",\"maxa\":324},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Mỹ Quới (phường)",
- "truocsn": "Phường 3 (thị xã Ngã Năm), Xã Mỹ Bình, Xã Mỹ Quới",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.160\",\"properties\":{\"matinhxa\":\"33.160\",\"maxa\":160},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Mỹ Tú (xã)",
- "truocsn": "Thị trấn Huỳnh Hữu Nghĩa, Xã Mỹ Thuận, Xã Mỹ Tú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.322\",\"properties\":{\"matinhxa\":\"33.322\",\"maxa\":322},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Mỹ Xuyên (phường)",
- "truocsn": "Phường 10, Thị trấn Mỹ Xuyên, Xã Đại Tâm",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.334\",\"properties\":{\"matinhxa\":\"33.334\",\"maxa\":334},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Ngã Bảy (phường)",
- "truocsn": "Phường Lái Hiếu, Phường Hiệp Thành, Phường Ngã Bảy",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.298\",\"properties\":{\"matinhxa\":\"33.298\",\"maxa\":298},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Ngã Năm (phường)",
- "truocsn": "Phường 1 (thị xã Ngã Năm), Phường 2 (thị xã Ngã Năm), Xã Vĩnh Quới",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.158\",\"properties\":{\"matinhxa\":\"33.158\",\"maxa\":158},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Ngọc Tố (xã)",
- "truocsn": "Xã Tham Đôn, Xã Ngọc Đông, Xã Ngọc Tố",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.339\",\"properties\":{\"matinhxa\":\"33.339\",\"maxa\":339},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Nhơn Ái (xã)",
- "truocsn": "Xã Nhơn Nghĩa, Xã Nhơn Ái",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.107\",\"properties\":{\"matinhxa\":\"33.107\",\"maxa\":107},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nhơn Mỹ (xã)",
- "truocsn": "Xã An Mỹ, Xã Song Phụng, Xã Nhơn Mỹ",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.315\",\"properties\":{\"matinhxa\":\"33.315\",\"maxa\":315},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nhu Gia (xã)",
- "truocsn": "Xã Thạnh Phú, Xã Gia Hòa 1",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.337\",\"properties\":{\"matinhxa\":\"33.337\",\"maxa\":337},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Ninh Kiều (phường)",
- "truocsn": "Phường Tân An, Phường Thới Bình, Phường Xuân Khánh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.272\",\"properties\":{\"matinhxa\":\"33.272\",\"maxa\":272},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Ô Môn (phường)",
- "truocsn": "Phường Châu Văn Liêm, Phường Thới Hòa, Phường Thới An, Xã Thới Thạnh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.81\",\"properties\":{\"matinhxa\":\"33.81\",\"maxa\":81},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Phong Điền (phường)",
- "truocsn": "Thị trấn Phong Điền, Xã Tân Thới, Xã Giai Xuân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.106\",\"properties\":{\"matinhxa\":\"33.106\",\"maxa\":106},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phong Nẫm (xã)",
- "truocsn": "xã Phong Nẫm (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.313\",\"properties\":{\"matinhxa\":\"33.313\",\"maxa\":313},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phú Hữu (xã)",
- "truocsn": "Xã Phú Tân, Xã Đông Phước, Xã Phú Hữu",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.303\",\"properties\":{\"matinhxa\":\"33.303\",\"maxa\":303},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phú Lộc (xã)",
- "truocsn": "Thị trấn Hưng Lợi, Thị trấn Phú Lộc, Xã Thạnh Trị",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.161\",\"properties\":{\"matinhxa\":\"33.161\",\"maxa\":161},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phú Lợi (phường)",
- "truocsn": "Phường 1 (thành phố Sóc Trăng), Phường 2 (thành phố Sóc Trăng), Phường 3 (thành phố Sóc Trăng), Phường 4",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.153\",\"properties\":{\"matinhxa\":\"33.153\",\"maxa\":153},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phú Tâm (xã)",
- "truocsn": "Thị trấn Châu Thành, Xã Phú Tâm",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.318\",\"properties\":{\"matinhxa\":\"33.318\",\"maxa\":318},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phụng Hiệp (xã)",
- "truocsn": "Xã Hòa Mỹ, Xã Phụng Hiệp",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.138\",\"properties\":{\"matinhxa\":\"33.138\",\"maxa\":138},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Phước Thới (phường)",
- "truocsn": "Phường Trường Lạc, Phường Phước Thới",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.83\",\"properties\":{\"matinhxa\":\"33.83\",\"maxa\":83},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phương Bình (xã)",
- "truocsn": "Xã Phương Phú, Xã Phương Bình",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.142\",\"properties\":{\"matinhxa\":\"33.142\",\"maxa\":142},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Sóc Trăng (phường)",
- "truocsn": "Phường 5, Phường 6, Phường 7, Phường 8",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.152\",\"properties\":{\"matinhxa\":\"33.152\",\"maxa\":152},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Tài Văn (xã)",
- "truocsn": "Xã Viên An, Xã Tài Văn",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.335\",\"properties\":{\"matinhxa\":\"33.335\",\"maxa\":335},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Tân An (phường)",
- "truocsn": "Phường An Khánh, Phường Hưng Lợi",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.280\",\"properties\":{\"matinhxa\":\"33.280\",\"maxa\":280},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Tân Bình (xã)",
- "truocsn": "Xã Bình Thành, Xã Tân Bình",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.126\",\"properties\":{\"matinhxa\":\"33.126\",\"maxa\":126},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Tân Hòa (xã)",
- "truocsn": "Thị trấn Một Ngàn, Thị trấn Bảy Ngàn, Xã Nhơn Nghĩa A, Xã Tân Hòa",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.299\",\"properties\":{\"matinhxa\":\"33.299\",\"maxa\":299},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tân Lộc (xã)",
- "truocsn": "xã Tân Lộc (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.289\",\"properties\":{\"matinhxa\":\"33.289\",\"maxa\":289},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tân Long (xã)",
- "truocsn": "Xã Thạnh Tân, Xã Long Bình, Xã Tân Long",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.159\",\"properties\":{\"matinhxa\":\"33.159\",\"maxa\":159},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tân Phước Hưng (xã)",
- "truocsn": "Thị trấn Búng Tàu, Xã Tân Phước Hưng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.305\",\"properties\":{\"matinhxa\":\"33.305\",\"maxa\":305},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tân Thạnh (xã)",
- "truocsn": "Xã Tân Hưng, Xã Châu Khánh, Xã Tân Thạnh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.329\",\"properties\":{\"matinhxa\":\"33.329\",\"maxa\":329},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Thạnh An (xã)",
- "truocsn": "Thị trấn Thạnh An, Xã Thạnh Lợi, Xã Thạnh Thắng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.292\",\"properties\":{\"matinhxa\":\"33.292\",\"maxa\":292},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Thạnh Hòa (xã)",
- "truocsn": "Xã Long Thạnh, Xã Tân Long, Xã Thạnh Hòa",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.136\",\"properties\":{\"matinhxa\":\"33.136\",\"maxa\":136},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Thạnh Phú (xã)",
- "truocsn": "xã Thạnh Phú (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.296\",\"properties\":{\"matinhxa\":\"33.296\",\"maxa\":296},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Thạnh Quới (xã)",
- "truocsn": "Xã Thạnh Tiến, Xã Thạnh An, Xã Thạnh Quới",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.295\",\"properties\":{\"matinhxa\":\"33.295\",\"maxa\":295},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Thạnh Thới An (xã)",
- "truocsn": "Xã Thạnh Thới Thuận, Xã Thạnh Thới An",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.336\",\"properties\":{\"matinhxa\":\"33.336\",\"maxa\":336},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Thạnh Xuân (xã)",
- "truocsn": "Thị trấn Rạch Gòi, Xã Tân Phú Thạnh, Xã Thạnh Xuân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.301\",\"properties\":{\"matinhxa\":\"33.301\",\"maxa\":301},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Thới An Đông (phường)",
- "truocsn": "Phường Trà An, Phường Trà Nóc, Phường Thới An Đông",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.283\",\"properties\":{\"matinhxa\":\"33.283\",\"maxa\":283},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thới An Hội (xã)",
- "truocsn": "Xã An Lạc Tây, Xã Thới An Hội",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.314\",\"properties\":{\"matinhxa\":\"33.314\",\"maxa\":314},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Thới Hưng (xã)",
- "truocsn": "xã Thới Hưng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.103\",\"properties\":{\"matinhxa\":\"33.103\",\"maxa\":103},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thới Lai (xã)",
- "truocsn": "Thị trấn Thới Lai, Xã Thới Tân, Xã Trường Thắng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.100\",\"properties\":{\"matinhxa\":\"33.100\",\"maxa\":100},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thới Long (phường)",
- "truocsn": "Phường Long Hưng, Phường Tân Hưng, Phường Thới Long",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.82\",\"properties\":{\"matinhxa\":\"33.82\",\"maxa\":82},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thốt Nốt (phường)",
- "truocsn": "Phường Thuận An (quận Thốt Nốt), Phường Thới Thuận, Phường Thốt Nốt (phần còn lại sau khi sáp nhập vào phường Thuận Hưng)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.287\",\"properties\":{\"matinhxa\":\"33.287\",\"maxa\":287},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thuận Hòa (xã)",
- "truocsn": "Xã Thuận Hòa (huyện Châu Thành), Xã Phú Tân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.320\",\"properties\":{\"matinhxa\":\"33.320\",\"maxa\":320},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thuận Hưng (phường)",
- "truocsn": "Phường Trung Kiên, Phường Thuận Hưng, Phường Thốt Nốt",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.291\",\"properties\":{\"matinhxa\":\"33.291\",\"maxa\":291},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Trần Đề (xã)",
- "truocsn": "Thị trấn Trần Đề, Xã Đại Ân 2, Xã Trung Bình",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.331\",\"properties\":{\"matinhxa\":\"33.331\",\"maxa\":331},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trung Hưng (xã)",
- "truocsn": "Xã Trung Thạnh, Xã Trung Hưng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.297\",\"properties\":{\"matinhxa\":\"33.297\",\"maxa\":297},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Trung Nhứt (phường)",
- "truocsn": "Phường Thạnh Hòa, Phường Trung Nhứt, Xã Trung An",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.290\",\"properties\":{\"matinhxa\":\"33.290\",\"maxa\":290},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Trường Khánh (xã)",
- "truocsn": "Xã Hậu Thạnh, Xã Phú Hữu, Xã Trường Khánh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.328\",\"properties\":{\"matinhxa\":\"33.328\",\"maxa\":328},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Trường Long (xã)",
- "truocsn": "xã Trường Long (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.108\",\"properties\":{\"matinhxa\":\"33.108\",\"maxa\":108},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Trường Long Tây (xã)",
- "truocsn": "Xã Trường Long A, Xã Trường Long Tây",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.300\",\"properties\":{\"matinhxa\":\"33.300\",\"maxa\":300},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Trường Thành (xã)",
- "truocsn": "Xã Tân Thạnh, Xã Định Môn, Xã Trường Thành",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.110\",\"properties\":{\"matinhxa\":\"33.110\",\"maxa\":110},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Trường Xuân (xã)",
- "truocsn": "Xã Trường Xuân A, Xã Trường Xuân B, Xã Trường Xuân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.109\",\"properties\":{\"matinhxa\":\"33.109\",\"maxa\":109},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Vị Tân (phường)",
- "truocsn": "Phường IV, Phường V, Xã Vị Tân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.118\",\"properties\":{\"matinhxa\":\"33.118\",\"maxa\":118},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Vị Thanh (phường)",
- "truocsn": "Phường I, Phường III, Phường VII",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.111\",\"properties\":{\"matinhxa\":\"33.111\",\"maxa\":111},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Vị Thanh 1 (xã)",
- "truocsn": "Xã Vị Đông, Xã Vị Bình, Xã Vị Thanh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.308\",\"properties\":{\"matinhxa\":\"33.308\",\"maxa\":308},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vị Thủy (xã)",
- "truocsn": "Thị trấn Nàng Mau, Xã Vị Thắng, Xã Vị Trung",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.306\",\"properties\":{\"matinhxa\":\"33.306\",\"maxa\":306},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vĩnh Châu (phường)",
- "truocsn": "Phường 1 (thị xã Vĩnh Châu), Phường 2 (thị xã Vĩnh Châu), Xã Lạc Hòa",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.164\",\"properties\":{\"matinhxa\":\"33.164\",\"maxa\":164},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Vĩnh Hải (xã)",
- "truocsn": "xã Vĩnh Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.168\",\"properties\":{\"matinhxa\":\"33.168\",\"maxa\":168},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Vĩnh Lợi (xã)",
- "truocsn": "Xã Châu Hưng, Xã Vĩnh Thành, Xã Vĩnh Lợi",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.163\",\"properties\":{\"matinhxa\":\"33.163\",\"maxa\":163},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Vĩnh Phước (phường)",
- "truocsn": "Phường Vĩnh Phước, Xã Vĩnh Tân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.169\",\"properties\":{\"matinhxa\":\"33.169\",\"maxa\":169},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Vĩnh Thạnh (xã)",
- "truocsn": "Thị trấn Vĩnh Thạnh, Xã Thạnh Lộc, Xã Thạnh Mỹ",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.293\",\"properties\":{\"matinhxa\":\"33.293\",\"maxa\":293},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Vĩnh Thuận Đông (xã)",
- "truocsn": "Xã Vĩnh Thuận Tây, Xã Vị Thủy, Xã Vĩnh Thuận Đông",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.312\",\"properties\":{\"matinhxa\":\"33.312\",\"maxa\":312},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Vĩnh Trinh (xã)",
- "truocsn": "Xã Vĩnh Bình, Xã Vĩnh Trinh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.294\",\"properties\":{\"matinhxa\":\"33.294\",\"maxa\":294},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Vĩnh Tường (xã)",
- "truocsn": "Xã Vĩnh Trung, Xã Vĩnh Tường",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.307\",\"properties\":{\"matinhxa\":\"33.307\",\"maxa\":307},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Vĩnh Viễn (xã)",
- "truocsn": "Thị trấn Vĩnh Viễn, Xã Vĩnh Viễn A",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.151\",\"properties\":{\"matinhxa\":\"33.151\",\"maxa\":151},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Xà Phiên (xã)",
- "truocsn": "Xã Thuận Hòa (huyện Long Mỹ), Xã Thuận Hưng, Xã Xà Phiên",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.150\",\"properties\":{\"matinhxa\":\"33.150\",\"maxa\":150},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Trạch (xã)",
- "truocsn": "Xã An Trạch A, Xã An Trạch",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.245\",\"properties\":{\"matinhxa\":\"34.245\",\"maxa\":245},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Xuyên (phường)",
- "truocsn": "Phường 1 (thành phố Cà Mau), Phường 2 (thành phố Cà Mau), Phường 9, Phường Tân Xuyên, Xã An Xuyên",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.247\",\"properties\":{\"matinhxa\":\"34.247\",\"maxa\":247},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bạc Liêu (phường)",
- "truocsn": "Phường 1 (thành phố Bạc Liêu), Phường 2 (thành phố Bạc Liêu), Phường 7 (thành phố Bạc Liêu), Phường 8 (thành phố Bạc Liêu), Phường 3",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.218\",\"properties\":{\"matinhxa\":\"34.218\",\"maxa\":218},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Biển Bạch (xã)",
- "truocsn": "Xã Tân Bằng, Xã Biển Bạch Đông, Xã Biển Bạch",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.255\",\"properties\":{\"matinhxa\":\"34.255\",\"maxa\":255},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Cái Đôi Vàm (xã)",
- "truocsn": "Thị trấn Cái Đôi Vàm, Xã Nguyễn Việt Khái",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.59\",\"properties\":{\"matinhxa\":\"34.59\",\"maxa\":59},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cái Nước (xã)",
- "truocsn": "Thị trấn Cái Nước, Xã Trần Thới, Xã Đông Hưng (phần còn lại), Xã Đông Thới (phần còn lại), Xã Tân Hưng Đông (phần còn lại)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.265\",\"properties\":{\"matinhxa\":\"34.265\",\"maxa\":265},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Châu Thới (xã)",
- "truocsn": "Xã Vĩnh Hưng, Xã Vĩnh Hưng A, Xã Châu Thới",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.235\",\"properties\":{\"matinhxa\":\"34.235\",\"maxa\":235},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Đá Bạc (xã)",
- "truocsn": "Xã Khánh Bình Tây (bao gồm Hòn Đá Bạc), Xã Khánh Bình Tây Bắc, Xã Trần Hợi (một phần)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.262\",\"properties\":{\"matinhxa\":\"34.262\",\"maxa\":262},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Đầm Dơi (xã)",
- "truocsn": "Thị trấn Đầm Dơi, Xã Tân Duyệt, Xã Tân Dân, Xã Tạ An Khương (phần còn lại sau khi sáp nhập vào xã Tạ An Khương mới)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.39\",\"properties\":{\"matinhxa\":\"34.39\",\"maxa\":39},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Đất Mới (xã)",
- "truocsn": "Xã Lâm Hải, Xã Đất Mới, Thị trấn Năm Căn, Xã Hàm Rồng, Xã Viên An (phần còn lại sau khi sáp nhập vào xã Đất Mũi)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.57\",\"properties\":{\"matinhxa\":\"34.57\",\"maxa\":57},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đất Mũi (xã)",
- "truocsn": "Xã Đất Mũi, Xã Viên An, Xã Tân Ân (phần còn lại sau khi sáp nhập vào xã Phan Ngọc Hiển)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.69\",\"properties\":{\"matinhxa\":\"34.69\",\"maxa\":69},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Định Thành (xã)",
- "truocsn": "Xã An Phúc, Xã Định Thành A, Xã Định Thành",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.246\",\"properties\":{\"matinhxa\":\"34.246\",\"maxa\":246},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đông Hải (xã)",
- "truocsn": "Xã Long Điền Đông, Xã Long Điền Đông A",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.242\",\"properties\":{\"matinhxa\":\"34.242\",\"maxa\":242},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Gành Hào (xã)",
- "truocsn": "Thị trấn Gành Hào, Xã Long Điền Tây",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.241\",\"properties\":{\"matinhxa\":\"34.241\",\"maxa\":241},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Giá Rai (phường)",
- "truocsn": "Phường 1 (thị xã Giá Rai), Phường Hộ Phòng, Xã Phong Thạnh, Xã Phong Thạnh A",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.238\",\"properties\":{\"matinhxa\":\"34.238\",\"maxa\":238},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Hiệp Thành (phường)",
- "truocsn": "Phường Nhà Mát, Xã Vĩnh Trạch Đông, Xã Hiệp Thành",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.220\",\"properties\":{\"matinhxa\":\"34.220\",\"maxa\":220},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Hồ Thị Kỷ (xã)",
- "truocsn": "xã Hồ Thị Kỷ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.259\",\"properties\":{\"matinhxa\":\"34.259\",\"maxa\":259},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hoà Bình (xã)",
- "truocsn": "Thị trấn Hòa Bình, Xã Vĩnh Mỹ A, Xã Long Thạnh",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.232\",\"properties\":{\"matinhxa\":\"34.232\",\"maxa\":232},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hoà Thành (phường)",
- "truocsn": "Xã Hòa Tân, Xã Hòa Thành, Phường 7 (thành phố Cà Mau) (phần còn lại sau khi sáp nhập vào phường Tân Thành), Phường 6 (phần còn lại sau khi sáp nhập vào phường Tân Thành), Xã Định Bình (phần còn lại sau khi sáp nhập vào phường Tân Thành), Xã Tắc Vân (phần còn lại sau khi sáp nhập vào phường Tân Thành)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.250\",\"properties\":{\"matinhxa\":\"34.250\",\"maxa\":250},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hồng Dân (xã)",
- "truocsn": "Thị trấn Ngan Dừa, Xã Lộc Ninh, Xã Ninh Hòa",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.225\",\"properties\":{\"matinhxa\":\"34.225\",\"maxa\":225},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hưng Hội (xã)",
- "truocsn": "Xã Hưng Thành, Xã Hưng Hội",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.234\",\"properties\":{\"matinhxa\":\"34.234\",\"maxa\":234},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hưng Mỹ (xã)",
- "truocsn": "Xã Hưng Mỹ, Xã Tân Hưng Đông, Xã Hòa Mỹ (phần còn lại sau khi sáp nhập vào xã Phú Mỹ, xã Tân Hưng)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.270\",\"properties\":{\"matinhxa\":\"34.270\",\"maxa\":270},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Khánh An (xã)",
- "truocsn": "Xã Khánh An, Xã Nguyễn Phích (phần còn lại sau khi sáp nhập vào xã Nguyễn Phích, xã Khánh Lâm)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.253\",\"properties\":{\"matinhxa\":\"34.253\",\"maxa\":253},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Khánh Bình (xã)",
- "truocsn": "Xã Khánh Bình Đông, Xã Khánh Bình",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.263\",\"properties\":{\"matinhxa\":\"34.263\",\"maxa\":263},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Khánh Hưng (xã)",
- "truocsn": "Xã Khánh Hải, Xã Khánh Hưng",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.264\",\"properties\":{\"matinhxa\":\"34.264\",\"maxa\":264},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Khánh Lâm (xã)",
- "truocsn": "Xã Khánh Hội, Xã Nguyễn Phích, Xã Khánh Lâm (phần còn lại sau khi sáp nhập vào xã U Minh)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.252\",\"properties\":{\"matinhxa\":\"34.252\",\"maxa\":252},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Láng Tròn (phường)",
- "truocsn": "Phường Láng Tròn, Xã Phong Tân, Xã Phong Thạnh Đông",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.239\",\"properties\":{\"matinhxa\":\"34.239\",\"maxa\":239},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Long Điền (xã)",
- "truocsn": "Xã Điền Hải, Xã Long Điền",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.243\",\"properties\":{\"matinhxa\":\"34.243\",\"maxa\":243},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Lương Thế Trân (xã)",
- "truocsn": "Xã Thạnh Phú, Xã Phú Hưng, Xã Lương Thế Trân, Xã Lợi An",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.266\",\"properties\":{\"matinhxa\":\"34.266\",\"maxa\":266},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Lý Văn Lâm (phường)",
- "truocsn": "Phường 8 (thành phố Cà Mau), Xã Lý Văn Lâm, Xã Lợi An (phần còn lại sau khi sáp nhập vào xã Trần Văn Thời, xã Lương Thế Trân)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.249\",\"properties\":{\"matinhxa\":\"34.249\",\"maxa\":249},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Năm Căn (xã)",
- "truocsn": "Xã Hàng Vịnh, Thị trấn Năm Căn (phần còn lại), Xã Hàm Rồng (phần còn lại)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.56\",\"properties\":{\"matinhxa\":\"34.56\",\"maxa\":56},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Nguyễn Phích (xã)",
- "truocsn": "Thị trấn U Minh, Xã Nguyễn Phích, Xã Khánh Thuận (phần còn lại sau khi sáp nhập vào xã U Minh)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.78\",\"properties\":{\"matinhxa\":\"34.78\",\"maxa\":78},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Nguyễn Việt Khái (xã)",
- "truocsn": "Xã Tân Hưng Tây, Xã Rạch Chèo, Xã Việt Thắng",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.64\",\"properties\":{\"matinhxa\":\"34.64\",\"maxa\":64},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Ninh Quới (xã)",
- "truocsn": "Xã Ninh Quới A, Xã Ninh Quới",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.221\",\"properties\":{\"matinhxa\":\"34.221\",\"maxa\":221},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Ninh Thạnh Lợi (xã)",
- "truocsn": "Xã Ninh Thạnh Lợi A, Xã Ninh Thạnh Lợi",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.227\",\"properties\":{\"matinhxa\":\"34.227\",\"maxa\":227},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Phan Ngọc Hiển (xã)",
- "truocsn": "Thị trấn Rạch Gốc, Xã Viên An Đông, Xã Tân Ân",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.68\",\"properties\":{\"matinhxa\":\"34.68\",\"maxa\":68},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Phong Hiệp (xã)",
- "truocsn": "Xã Phong Thạnh Tây A, Xã Phong Thạnh Tây B",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.231\",\"properties\":{\"matinhxa\":\"34.231\",\"maxa\":231},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Phong Thạnh (xã)",
- "truocsn": "Xã Tân Thạnh, Xã Phong Thạnh Tây, Xã Tân Phong",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.240\",\"properties\":{\"matinhxa\":\"34.240\",\"maxa\":240},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Phú Mỹ (xã)",
- "truocsn": "Xã Phú Thuận, Xã Phú Mỹ, Xã Hòa Mỹ",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.60\",\"properties\":{\"matinhxa\":\"34.60\",\"maxa\":60},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Phú Tân (xã)",
- "truocsn": "Xã Tân Hải, Xã Phú Tân",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.63\",\"properties\":{\"matinhxa\":\"34.63\",\"maxa\":63},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Phước Long (xã)",
- "truocsn": "Thị trấn Phước Long, Xã Vĩnh Phú Đông",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.228\",\"properties\":{\"matinhxa\":\"34.228\",\"maxa\":228},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Quách Phẩm (xã)",
- "truocsn": "Xã Quách Phẩm Bắc, Xã Quách Phẩm",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.54\",\"properties\":{\"matinhxa\":\"34.54\",\"maxa\":54},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Sông Đốc (xã)",
- "truocsn": "Thị trấn Sông Đốc (bao gồm cụm đảo Hòn Chuối), Xã Phong Điền",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.261\",\"properties\":{\"matinhxa\":\"34.261\",\"maxa\":261},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Tạ An Khương (xã)",
- "truocsn": "Xã Tạ An Khương Đông, Xã Tạ An Khương Nam, Xã Tạ An Khương",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.40\",\"properties\":{\"matinhxa\":\"34.40\",\"maxa\":40},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Tam Giang (xã)",
- "truocsn": "Xã Hiệp Tùng, Xã Tam Giang Đông, Xã Tam Giang",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.58\",\"properties\":{\"matinhxa\":\"34.58\",\"maxa\":58},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Tân Ân (xã)",
- "truocsn": "Xã Tam Giang Tây, Xã Tân Ân Tây",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.67\",\"properties\":{\"matinhxa\":\"34.67\",\"maxa\":67},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Tân Hưng (xã)",
- "truocsn": "Xã Tân Hưng, Xã Đông Hưng, Xã Đông Thới, Xã Hòa Mỹ",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.269\",\"properties\":{\"matinhxa\":\"34.269\",\"maxa\":269},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Tân Lộc (xã)",
- "truocsn": "Xã Tân Lộc Bắc, Xã Tân Lộc Đông, Xã Tân Lộc",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.258\",\"properties\":{\"matinhxa\":\"34.258\",\"maxa\":258},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Tân Thành (phường)",
- "truocsn": "Phường 5 (thành phố Cà Mau), Phường Tân Thành, Xã Tân Thành, Phường 7 (thành phố Cà Mau), Phường 6, Xã Định Bình, Xã Tắc Vân",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.248\",\"properties\":{\"matinhxa\":\"34.248\",\"maxa\":248},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Tân Thuận (xã)",
- "truocsn": "Xã Tân Đức, Xã Tân Thuận",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.52\",\"properties\":{\"matinhxa\":\"34.52\",\"maxa\":52},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Nguyễn Huân, Xã Tân Tiến",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.53\",\"properties\":{\"matinhxa\":\"34.53\",\"maxa\":53},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Thanh Tùng (xã)",
- "truocsn": "Xã Ngọc Chánh, Xã Thanh Tùng",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.55\",\"properties\":{\"matinhxa\":\"34.55\",\"maxa\":55},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Thới Bình (xã)",
- "truocsn": "Thị trấn Thới Bình, Xã Thới Bình",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.257\",\"properties\":{\"matinhxa\":\"34.257\",\"maxa\":257},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Trần Phán (xã)",
- "truocsn": "Xã Tân Trung, Xã Trần Phán",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.51\",\"properties\":{\"matinhxa\":\"34.51\",\"maxa\":51},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Trần Văn Thời (xã)",
- "truocsn": "Thị trấn Trần Văn Thời, Xã Khánh Lộc, Xã Phong Lạc, Xã Lợi An, Xã Trần Hợi (phần còn lại sau khi sáp nhập vào xã Đá Bạc), Xã Phong Điền (phần còn lại sau khi sáp nhập vào xã Sông Đốc)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.260\",\"properties\":{\"matinhxa\":\"34.260\",\"maxa\":260},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Trí Phải (xã)",
- "truocsn": "Xã Trí Lực, Xã Tân Phú, Xã Trí Phải",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.256\",\"properties\":{\"matinhxa\":\"34.256\",\"maxa\":256},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "U Minh (xã)",
- "truocsn": "Xã Khánh Tiến, Xã Khánh Hòa, Xã Khánh Thuận, Xã Khánh Lâm",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.251\",\"properties\":{\"matinhxa\":\"34.251\",\"maxa\":251},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Vĩnh Hậu (xã)",
- "truocsn": "Xã Vĩnh Thịnh, Xã Vĩnh Hậu A, Xã Vĩnh Hậu",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.237\",\"properties\":{\"matinhxa\":\"34.237\",\"maxa\":237},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Vĩnh Lộc (xã)",
- "truocsn": "Xã Vĩnh Lộc A, Xã Vĩnh Lộc",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.226\",\"properties\":{\"matinhxa\":\"34.226\",\"maxa\":226},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Vĩnh Lợi (xã)",
- "truocsn": "Thị trấn Châu Hưng, Xã Châu Hưng A",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.233\",\"properties\":{\"matinhxa\":\"34.233\",\"maxa\":233},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Vĩnh Mỹ (xã)",
- "truocsn": "Xã Minh Diệu, Xã Vĩnh Bình, Xã Vĩnh Mỹ B",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.236\",\"properties\":{\"matinhxa\":\"34.236\",\"maxa\":236},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Vĩnh Phước (xã)",
- "truocsn": "Xã Phước Long, Xã Vĩnh Phú Tây",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.229\",\"properties\":{\"matinhxa\":\"34.229\",\"maxa\":229},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Vĩnh Thanh (xã)",
- "truocsn": "Xã Hưng Phú, Xã Vĩnh Thanh",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.230\",\"properties\":{\"matinhxa\":\"34.230\",\"maxa\":230},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Vĩnh Trạch (phường)",
- "truocsn": "Phường 5 (thành phố Bạc Liêu), Xã Vĩnh Trạch",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.219\",\"properties\":{\"matinhxa\":\"34.219\",\"maxa\":219},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- }
- ],
- "totalRequests": 3355,
- "errors": [],
- "startTime": "2025-08-17T14:27:09.412Z",
- "endTime": "2025-08-17T19:46:58.536Z",
- "duration": 19189124
-}
\ No newline at end of file
diff --git a/dataset-generation-scripts/resources/gis/bando_gisserver/provinces.json b/dataset-generation-scripts/resources/gis/bando_gisserver/provinces.json
deleted file mode 100644
index 488ce17e..00000000
--- a/dataset-generation-scripts/resources/gis/bando_gisserver/provinces.json
+++ /dev/null
@@ -1,206 +0,0 @@
-[
- {
- "stt": "1",
- "ten": "Thủ đô Hà Nội",
- "truocsn": "Thủ đô Hà Nội (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.7\",\"properties\":{\"matinh\":\"1\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "tỉnh Cao Bằng",
- "truocsn": "tỉnh Cao Bằng (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.11\",\"properties\":{\"matinh\":\"7\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "tỉnh Tuyên Quang",
- "truocsn": "tỉnh Hà Giang và tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.32\",\"properties\":{\"matinh\":\"8\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "tỉnh Lào Cai",
- "truocsn": "tỉnh Yên Bái và tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.29\",\"properties\":{\"matinh\":\"9\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "tỉnh Điện Biên",
- "truocsn": "tỉnh Điện Biên (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.8\",\"properties\":{\"matinh\":\"13\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "tỉnh Lai Châu",
- "truocsn": "tỉnh Lai Châu (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.10\",\"properties\":{\"matinh\":\"14\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "tỉnh Sơn La",
- "truocsn": "tỉnh Sơn La (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.9\",\"properties\":{\"matinh\":\"15\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "tỉnh Thái Nguyên",
- "truocsn": "tỉnh Bắc Kạn và tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.30\",\"properties\":{\"matinh\":\"10\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "tỉnh Lạng Sơn",
- "truocsn": "tỉnh Lạng Sơn (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.5\",\"properties\":{\"matinh\":\"11\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "tỉnh Quảng Ninh",
- "truocsn": "tỉnh Quảng Ninh (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.6\",\"properties\":{\"matinh\":\"3\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "tỉnh Phú Thọ",
- "truocsn": "tỉnh Vĩnh Phúc, tỉnh Hòa Bình và tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.33\",\"properties\":{\"matinh\":\"12\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "tỉnh Bắc Ninh",
- "truocsn": "tỉnh Bắc Giang và tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.31\",\"properties\":{\"matinh\":\"2\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "thành phố Hải Phòng",
- "truocsn": "thành phố Hải Phòng và tỉnh Hải Dương",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.28\",\"properties\":{\"matinh\":\"4\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "tỉnh Hưng Yên",
- "truocsn": "tỉnh Thái Bình và tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.26\",\"properties\":{\"matinh\":\"5\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "tỉnh Ninh Bình",
- "truocsn": "tỉnh Hà Nam, tỉnh Nam Định và tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.27\",\"properties\":{\"matinh\":\"6\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "tỉnh Thanh Hóa",
- "truocsn": "tỉnh Thanh Hóa (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.1\",\"properties\":{\"matinh\":\"16\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "tỉnh Nghệ An",
- "truocsn": "tỉnh Nghệ An (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.4\",\"properties\":{\"matinh\":\"17\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "tỉnh Hà Tĩnh",
- "truocsn": "tỉnh Hà Tĩnh (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.3\",\"properties\":{\"matinh\":\"18\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "tỉnh Quảng Trị",
- "truocsn": "tỉnh Quảng Bình và tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.25\",\"properties\":{\"matinh\":\"19\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "thành phố Huế",
- "truocsn": "thành phố Huế (Giữ nguyên, không sáp nhập)",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.2\",\"properties\":{\"matinh\":\"20\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "thành phố Đà Nẵng",
- "truocsn": "thành phố Đà Nẵng và tỉnh Quảng Nam",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.15\",\"properties\":{\"matinh\":\"21\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "tỉnh Quảng Ngãi",
- "truocsn": "tỉnh Kon Tum và tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.13\",\"properties\":{\"matinh\":\"22\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "tỉnh Khánh Hòa",
- "truocsn": "tỉnh Ninh Thuận và tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.16\",\"properties\":{\"matinh\":\"23\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "tỉnh Gia Lai",
- "truocsn": "tỉnh Bình Định và tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.24\",\"properties\":{\"matinh\":\"24\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "tỉnh Đắk Lắk",
- "truocsn": "tỉnh Phú Yên và tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.20\",\"properties\":{\"matinh\":\"25\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "tỉnh Lâm Đồng",
- "truocsn": "tỉnh Đắk Nông, tỉnh Bình Thuận và tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.21\",\"properties\":{\"matinh\":\"26\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "tỉnh Tây Ninh",
- "truocsn": "tỉnh Long An và tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.18\",\"properties\":{\"matinh\":\"27\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "tỉnh Đồng Nai",
- "truocsn": "tỉnh Bình Phước và tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.23\",\"properties\":{\"matinh\":\"28\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "thành phố Hồ Chí Minh",
- "truocsn": "TPHCM, tỉnh Bà Rịa - Vũng Tàu và tỉnh Bình Dương",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.22\",\"properties\":{\"matinh\":\"29\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "tỉnh Vĩnh Long",
- "truocsn": "tỉnh Bến Tre, tỉnh Trà Vinh và tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.19\",\"properties\":{\"matinh\":\"30\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "tỉnh Đồng Tháp",
- "truocsn": "tỉnh Tiền Giang và tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.34\",\"properties\":{\"matinh\":\"31\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "tỉnh An Giang",
- "truocsn": "tỉnh Kiên Giang và tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.14\",\"properties\":{\"matinh\":\"32\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "thành phố Cần Thơ",
- "truocsn": "thành phố Cần Thơ, tỉnh Sóc Trăng và tỉnh Hậu Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.12\",\"properties\":{\"matinh\":\"33\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "tỉnh Cà Mau",
- "truocsn": "tỉnh Bạc Liêu và tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"tinh34.17\",\"properties\":{\"matinh\":\"34\"},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- }
-]
\ No newline at end of file
diff --git a/dataset-generation-scripts/resources/gis/bando_gisserver/wards.json b/dataset-generation-scripts/resources/gis/bando_gisserver/wards.json
deleted file mode 100644
index e603779e..00000000
--- a/dataset-generation-scripts/resources/gis/bando_gisserver/wards.json
+++ /dev/null
@@ -1,23249 +0,0 @@
-[
- {
- "stt": "1",
- "ten": "An Khánh (xã)",
- "truocsn": "Xã Đông La, Phường Dương Nội (phần còn lại sau khi sáp nhập vào phường Tây Mỗ, phường Đại Mỗ, phường Dương Nội), Xã An Khánh (phần còn lại sau khi sáp nhập vào phường Tây Mỗ, xã Sơn Đồng), Xã La Phù (phần còn lại sau khi sáp nhập vào phường Dương Nội), Xã Song Phương (phần còn lại sau khi sáp nhập vào xã Sơn Đồng), Xã Vân Côn (phần còn lại sau khi sáp nhập vào xã Sơn Đồng), Xã An Thượng (phần còn lại sau khi sáp nhập vào xã Sơn Đồng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3285\",\"properties\":{\"matinhxa\":\"1.3301\",\"maxa\":3301},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Đình (phường)",
- "truocsn": "Phường Quán Thánh, Phường Trúc Bạch, Phường Cửa Nam, Phường Điện Biên, Phường Đội Cấn, Phường Kim Mã, Phường Ngọc Hà, Phường Thụy Khuê, Phường Cửa Đông (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm), Phường Đồng Xuân (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3260\",\"properties\":{\"matinhxa\":\"1.3276\",\"maxa\":3276},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ba Vì (xã)",
- "truocsn": "Xã Ba Vì, Xã Khánh Thượng, Xã Minh Quang (phần còn lại sau khi sáp nhập vào xã Bất Bạt)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3203\",\"properties\":{\"matinhxa\":\"1.3219\",\"maxa\":3219},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bạch Mai (phường)",
- "truocsn": "Phường Bạch Mai, Phường Bách Khoa, Phường Quỳnh Mai, Phường Minh Khai (quận Hai Bà Trưng), Phường Đồng Tâm, Phường Lê Đại Hành, Phường Phương Mai, Phường Trương Định, Phường Thanh Nhàn (phần còn lại sau khi sáp nhập vào phường Hai Bà Trưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3250\",\"properties\":{\"matinhxa\":\"1.3266\",\"maxa\":3266},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bất Bạt (xã)",
- "truocsn": "Xã Thuần Mỹ, Xã Tòng Bạt, Xã Sơn Đà, Xã Cẩm Lĩnh, Xã Minh Quang",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3220\",\"properties\":{\"matinhxa\":\"1.3236\",\"maxa\":3236},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bát Tràng (xã)",
- "truocsn": "Xã Kim Đức, Phường Cự Khối (phần còn lại sau khi sáp nhập vào phường Long Biên), Phường Thạch Bàn (phần còn lại sau khi sáp nhập vào phường Long Biên, phường Phúc Lợi, xã Gia Lâm), Thị trấn Trâu Quỳ (phần còn lại sau khi sáp nhập vào xã Gia Lâm), Xã Đa Tốn (phần còn lại sau khi sáp nhập vào xã Gia Lâm), Xã Bát Tràng (phần còn lại sau khi sáp nhập vào phường Long Biên, xã Gia Lâm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3232\",\"properties\":{\"matinhxa\":\"1.3248\",\"maxa\":3248},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Minh (xã)",
- "truocsn": "Xã Bích Hòa, Xã Bình Minh, Xã Cao Viên, Xã Thanh Cao, Xã Lam Điền, Xã Cự Khê (phần còn lại sau khi sáp nhập vào phường Phú Lương), Phường Phú Lương (phần còn lại sau khi sáp nhập vào phường Phú Lương, phường Kiến Hưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3168\",\"properties\":{\"matinhxa\":\"1.3184\",\"maxa\":3184},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bồ Đề (phường)",
- "truocsn": "Phường Ngọc Lâm, Phường Đức Giang, Phường Gia Thụy, Phường Thượng Thanh, Phường Phúc Đồng, Phường Ngọc Thụy (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Bồ Đề (phần còn lại sau khi sáp nhập vào phường Hồng Hà, phường Long Biên), Phường Long Biên (phần còn lại sau khi sáp nhập vào phường Long Biên)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3214\",\"properties\":{\"matinhxa\":\"1.3230\",\"maxa\":3230},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cầu Giấy (phường)",
- "truocsn": "Phường Dịch Vọng, Phường Dịch Vọng Hậu, Phường Quan Hoa, Phường Mỹ Đình 1, Phường Mỹ Đình 2, Phường Yên Hòa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3261\",\"properties\":{\"matinhxa\":\"1.3277\",\"maxa\":3277},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Chương Dương (xã)",
- "truocsn": "Xã Chương Dương, Xã Lê Lợi, Xã Thắng Lợi, Xã Tự Nhiên, Xã Tô Hiệu, Xã Vạn Nhất",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3171\",\"properties\":{\"matinhxa\":\"1.3187\",\"maxa\":3187},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Chương Mỹ (phường)",
- "truocsn": "Phường Biên Giang, Thị trấn Chúc Sơn, Xã Đại Yên, Xã Ngọc Hòa, Xã Phụng Châu, Xã Tiên Phương, Xã Thuỵ Hương, Phường Đồng Mai (phần còn lại sau khi sáp nhập vào phường Yên Nghĩa)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3188\",\"properties\":{\"matinhxa\":\"1.3204\",\"maxa\":3204},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Chuyên Mỹ (xã)",
- "truocsn": "Xã Tân Dân (huyện Phú Xuyên), Xã Châu Can, Xã Phú Yên, Xã Vân Từ, Xã Chuyên Mỹ",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3163\",\"properties\":{\"matinhxa\":\"1.3179\",\"maxa\":3179},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cổ Đô (xã)",
- "truocsn": "Xã Phú Cường (huyện Ba Vì), Xã Cổ Đô, Xã Phong Vân, Xã Phú Hồng, Xã Phú Đông, Xã Vạn Thắng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3223\",\"properties\":{\"matinhxa\":\"1.3239\",\"maxa\":3239},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cửa Nam (phường)",
- "truocsn": "Phường Hàng Bài, Phường Phan Chu Trinh, Phường Trần Hưng Đạo, Phường Cửa Nam, Phường Nguyễn Du, Phường Phạm Đình Hổ, Phường Hàng Bông (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm), Phường Hàng Trống (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm), Phường Tràng Tiền (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3243\",\"properties\":{\"matinhxa\":\"1.3259\",\"maxa\":3259},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đa Phúc (xã)",
- "truocsn": "Xã Bắc Phú, Xã Đức Hoà, Xã Kim Lũ, Xã Tân Hưng, Xã Việt Long, Xã Xuân Giang, Xã Xuân Thu",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3248\",\"properties\":{\"matinhxa\":\"1.3264\",\"maxa\":3264},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đại Mỗ (phường)",
- "truocsn": "Phường Đại Mỗ, Phường Dương Nội, Phường Mộ Lao, Phường Mễ Trì (phần còn lại sau khi sáp nhập vào phường Yên Hòa, phường Từ Liêm), Phường Nhân Chính (phần còn lại sau khi sáp nhập vào phường Thanh Xuân, phường Yên Hòa), Phường Trung Hòa (phần còn lại sau khi sáp nhập vào phường Thanh Xuân, phường Yên Hòa), Phường Phú Đô (phần còn lại sau khi sáp nhập vào phường Từ Liêm), Phường Trung Văn (phần còn lại sau khi sáp nhập vào phường Thanh Xuân)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3271\",\"properties\":{\"matinhxa\":\"1.3287\",\"maxa\":3287},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đại Thanh (xã)",
- "truocsn": "Xã Tam Hiệp (huyện Thanh Trì) (phần còn lại sau khi sáp nhập vào phường Hoàng Liệt), Xã Hữu Hòa (phần còn lại sau khi sáp nhập vào phường Phú Lương), Phường Kiến Hưng (phần còn lại sau khi sáp nhập vào phường Phú Lương, phường Kiến Hưng), Thị trấn Văn Điển (phần còn lại sau khi sáp nhập vào phường Hoàng Liệt, xã Thanh Trì), Xã Tả Thanh Oai (phần còn lại sau khi sáp nhập vào phường Thanh Liệt), Xã Vĩnh Quỳnh (phần còn lại sau khi sáp nhập vào xã Thanh Trì)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3196\",\"properties\":{\"matinhxa\":\"1.3212\",\"maxa\":3212},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đại Xuyên (xã)",
- "truocsn": "Xã Bạch Hạ, Xã Khai Thái, Xã Minh Tân, Xã Phúc Tiến, Xã Quang Lãng, Xã Tri Thủy, Xã Đại Xuyên",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3288\",\"properties\":{\"matinhxa\":\"1.3304\",\"maxa\":3304},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Dân Hòa (xã)",
- "truocsn": "Xã Cao Xuân Dương, Xã Hồng Dương, Xã Liên Châu, Xã Tân Ước, Xã Dân Hòa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3165\",\"properties\":{\"matinhxa\":\"1.3181\",\"maxa\":3181},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đan Phượng (xã)",
- "truocsn": "Thị trấn Phùng, Xã Đồng Tháp, Xã Song Phượng, Xã Thượng Mỗ, Xã Đan Phượng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3274\",\"properties\":{\"matinhxa\":\"1.3290\",\"maxa\":3290},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Định Công (phường)",
- "truocsn": "Phường Định Công, Phường Hoàng Liệt, Phường Thịnh Liệt, Xã Tân Triều, Xã Thanh Liệt, Phường Đại Kim, Phường Giáp Bát (phần còn lại sau khi sáp nhập vào phường Hoàng Mai, phường Tương Mai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3219\",\"properties\":{\"matinhxa\":\"1.3235\",\"maxa\":3235},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đoài Phương (xã)",
- "truocsn": "Xã Kim Sơn, Xã Sơn Đông, Xã Cổ Đông",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3201\",\"properties\":{\"matinhxa\":\"1.3217\",\"maxa\":3217},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đông Anh (xã)",
- "truocsn": "Xã Cổ Loa, Xã Đông Hội, Xã Mai Lâm, Thị trấn Đông Anh, Xã Tàm Xá, Xã Tiên Dương, Xã Vĩnh Ngọc, Xã Xuân Canh, Xã Liên Hà (huyện Đông Anh) (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Dục Tú (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Uy Nỗ (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Việt Hùng (phần còn lại sau khi sáp nhập vào xã Thư Lâm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3236\",\"properties\":{\"matinhxa\":\"1.3252\",\"maxa\":3252},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đống Đa (phường)",
- "truocsn": "Phường Thịnh Quang, Phường Quang Trung (quận Đống Đa), Phường Láng Hạ, Phường Nam Đồng, Phường Ô Chợ Dừa, Phường Trung Liệt",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3169\",\"properties\":{\"matinhxa\":\"1.3185\",\"maxa\":3185},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đông Ngạc (phường)",
- "truocsn": "Phường Đức Thắng, Phường Cổ Nhuế 2, Phường Thụy Phương, Phường Minh Khai (quận Bắc Từ Liêm), Phường Đông Ngạc (phần còn lại sau khi sáp nhập vào phường Phú Thượng), Phường Xuân Đỉnh (phần còn lại sau khi sáp nhập vào phường Phú Thượng, phường Xuân Đỉnh)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3280\",\"properties\":{\"matinhxa\":\"1.3296\",\"maxa\":3296},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Dương Hòa (xã)",
- "truocsn": "Xã Cát Quế, Xã Dương Liễu, Xã Đắc Sở, Xã Minh Khai, Xã Yên Sở",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3228\",\"properties\":{\"matinhxa\":\"1.3244\",\"maxa\":3244},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Dương Nội (phường)",
- "truocsn": "Phường Dương Nội, Phường Phú La, Phường Yên Nghĩa, Xã La Phù, Phường Đại Mỗ (phần còn lại sau khi sáp nhập vào phường Xuân Phương, phường Tây Mỗ, phường Đại Mỗ, phường Hà Đông), Phường La Khê (phần còn lại sau khi sáp nhập vào phường Hà Đông)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3199\",\"properties\":{\"matinhxa\":\"1.3215\",\"maxa\":3215},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Gia Lâm (xã)",
- "truocsn": "Xã Dương Xá, Xã Kiêu Kỵ, Thị trấn Trâu Quỳ, Phường Thạch Bàn, Xã Phú Sơn (huyện Gia Lâm), Xã Cổ Bi, Xã Đa Tốn, Xã Bát Tràng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3233\",\"properties\":{\"matinhxa\":\"1.3249\",\"maxa\":3249},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Giảng Võ (phường)",
- "truocsn": "Phường Giảng Võ, Phường Cát Linh, Phường Láng Hạ, Phường Ngọc Khánh, Phường Thành Công, Phường Cống Vị (phần còn lại sau khi sáp nhập vào phường Ngọc Hà), Phường Kim Mã (phần còn lại sau khi sáp nhập vào phường Ba Đình, phường Ngọc Hà)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3264\",\"properties\":{\"matinhxa\":\"1.3280\",\"maxa\":3280},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hạ Bằng (xã)",
- "truocsn": "Xã Cần Kiệm, Xã Đồng Trúc, Xã Bình Yên, Xã Hạ Bằng, Xã Tân Xã, Xã Phú Cát",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3279\",\"properties\":{\"matinhxa\":\"1.3295\",\"maxa\":3295},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hà Đông (phường)",
- "truocsn": "Phường Phúc La, Phường Vạn Phúc, Phường Quang Trung (quận Hà Đông), Phường Đại Mỗ, Phường Hà Cầu, Phường La Khê, Phường Văn Quán, Xã Tân Triều, Phường Mộ Lao (phần còn lại sau khi sáp nhập vào phường Đại Mỗ)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3195\",\"properties\":{\"matinhxa\":\"1.3211\",\"maxa\":3211},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hai Bà Trưng (phường)",
- "truocsn": "Phường Đồng Nhân, Phường Phố Huế, Phường Bạch Đằng, Phường Lê Đại Hành, Phường Nguyễn Du, Phường Thanh Nhàn, Phường Phạm Đình Hổ (phần còn lại sau khi sáp nhập vào phường Cửa Nam)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3254\",\"properties\":{\"matinhxa\":\"1.3270\",\"maxa\":3270},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hát Môn (xã)",
- "truocsn": "Xã Tam Hiệp (huyện Phúc Thọ), Xã Hiệp Thuận, Xã Liên Hiệp, Xã Ngọc Tảo, Xã Tam Thuấn, Xã Thanh Đa, Xã Hát Môn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3209\",\"properties\":{\"matinhxa\":\"1.3225\",\"maxa\":3225},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hòa Lạc (xã)",
- "truocsn": "Xã Tiến Xuân, Xã Thạch Hòa, Xã Cổ Đông (phần còn lại sau khi sáp nhập vào xã Đoài Phương), Xã Bình Yên (phần còn lại sau khi sáp nhập vào xã Hạ Bằng), Xã Hạ Bằng (phần còn lại sau khi sáp nhập vào xã Hạ Bằng), Xã Tân Xã (phần còn lại sau khi sáp nhập vào xã Hạ Bằng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3278\",\"properties\":{\"matinhxa\":\"1.3294\",\"maxa\":3294},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hòa Phú (xã)",
- "truocsn": "Xã Hòa Phú (huyện Chương Mỹ), Xã Đồng Lạc, Xã Hồng Phú, Xã Thượng Vực, Xã Văn Võ, Xã Kim Thư (phần còn lại sau khi sáp nhập vào xã Thanh Oai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3185\",\"properties\":{\"matinhxa\":\"1.3201\",\"maxa\":3201},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hòa Xá (xã)",
- "truocsn": "Xã Hòa Phú, Xã Thái Hòa (huyện Ứng Hòa), Xã Bình Lưu Quang, Xã Phù Lưu",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3256\",\"properties\":{\"matinhxa\":\"1.3272\",\"maxa\":3272},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hoài Đức (xã)",
- "truocsn": "Thị trấn Trạm Trôi, Xã Di Trạch, Xã Đức Giang, Xã Đức Thượng, Phường Tây Tựu, Xã Tân Lập, Xã Kim Chung (huyện Hoài Đức) (phần còn lại sau khi sáp nhập vào phường Tây Tựu)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3275\",\"properties\":{\"matinhxa\":\"1.3291\",\"maxa\":3291},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hoàn Kiếm (phường)",
- "truocsn": "Phường Hàng Bạc, Phường Hàng Bồ, Phường Hàng Buồm, Phường Hàng Đào, Phường Hàng Gai, Phường Hàng Mã, Phường Lý Thái Tổ, Phường Cửa Đông, Phường Cửa Nam, Phường Điện Biên, Phường Đồng Xuân, Phường Hàng Bông, Phường Hàng Trống, Phường Tràng Tiền",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3216\",\"properties\":{\"matinhxa\":\"1.3232\",\"maxa\":3232},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hoàng Liệt (phường)",
- "truocsn": "Phường Hoàng Liệt, Thị trấn Văn Điển, Xã Tam Hiệp (huyện Thanh Trì), Xã Thanh Liệt, Phường Đại Kim",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3227\",\"properties\":{\"matinhxa\":\"1.3243\",\"maxa\":3243},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hoàng Mai (phường)",
- "truocsn": "Phường Giáp Bát, Phường Hoàng Liệt, Phường Hoàng Văn Thụ, Phường Lĩnh Nam, Phường Tân Mai, Phường Thịnh Liệt, Phường Tương Mai, Phường Trần Phú, Phường Vĩnh Hưng, Phường Yên Sở",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3176\",\"properties\":{\"matinhxa\":\"1.3192\",\"maxa\":3192},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hồng Hà (phường)",
- "truocsn": "Phường Chương Dương, Phường Phúc Tân, Phường Phúc Xá, Phường Nhật Tân, Phường Phú Thượng, Phường Quảng An, Phường Thanh Lương, Phường Tứ Liên, Phường Yên Phụ, Phường Bồ Đề, Phường Ngọc Thụy, Phường Bạch Đằng (phần còn lại sau khi sáp nhập vào phường Hai Bà Trưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3175\",\"properties\":{\"matinhxa\":\"1.3191\",\"maxa\":3191},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hồng Sơn (xã)",
- "truocsn": "Xã Phùng Xá (huyện Mỹ Đức), Xã An Mỹ, Xã Hợp Tiến, Xã Lê Thanh, Xã Xuy Xá, Xã Hồng Sơn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3179\",\"properties\":{\"matinhxa\":\"1.3195\",\"maxa\":3195},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hồng Vân (xã)",
- "truocsn": "Xã Hà Hồi, Xã Hồng Vân, Xã Liên Phương, Xã Vân Tảo, Xã Duyên Thái (phần còn lại sau khi sáp nhập vào xã Nam Phù, xã Ngọc Hồi), Xã Ninh Sở (phần còn lại sau khi sáp nhập vào xã Nam Phù), Xã Đông Mỹ (phần còn lại sau khi sáp nhập vào xã Nam Phù)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3174\",\"properties\":{\"matinhxa\":\"1.3190\",\"maxa\":3190},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hưng Đạo (xã)",
- "truocsn": "Xã Cộng Hoà, Xã Đồng Quang, Xã Hưng Đạo",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3192\",\"properties\":{\"matinhxa\":\"1.3208\",\"maxa\":3208},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hương Sơn (xã)",
- "truocsn": "Xã An Tiến, Xã Hùng Tiến, Xã Vạn Tín, Xã Hương Sơn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3257\",\"properties\":{\"matinhxa\":\"1.3273\",\"maxa\":3273},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Khương Đình (phường)",
- "truocsn": "Phường Hạ Đình, Phường Khương Đình, Phường Khương Trung, Phường Đại Kim, Xã Tân Triều, Phường Thanh Xuân Trung (phần còn lại sau khi sáp nhập vào phường Thanh Xuân), Phường Thượng Đình (phần còn lại sau khi sáp nhập vào phường Thanh Xuân)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3218\",\"properties\":{\"matinhxa\":\"1.3234\",\"maxa\":3234},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Kiến Hưng (phường)",
- "truocsn": "Phường Kiến Hưng, Phường Phú Lương, Phường Quang Trung (quận Hà Đông) (phần còn lại sau khi sáp nhập vào phường Hà Đông), Phường Hà Cầu (phần còn lại sau khi sáp nhập vào phường Hà Đông), Phường Phú La (phần còn lại sau khi sáp nhập vào phường Dương Nội)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3200\",\"properties\":{\"matinhxa\":\"1.3216\",\"maxa\":3216},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Kiều Phú (xã)",
- "truocsn": "Xã Cấn Hữu, Xã Liệp Nghĩa, Xã Tuyết Nghĩa, Xã Ngọc Liệp (phần còn lại sau khi sáp nhập vào xã Tây Phương), Xã Quang Trung (phần còn lại sau khi sáp nhập vào xã Tây Phương), Xã Ngọc Mỹ (phần còn lại sau khi sáp nhập vào xã Quốc Oai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3191\",\"properties\":{\"matinhxa\":\"1.3207\",\"maxa\":3207},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Kim Anh (xã)",
- "truocsn": "Xã Tân Dân (huyện Sóc Sơn), Xã Minh Phú, Xã Minh Trí",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3251\",\"properties\":{\"matinhxa\":\"1.3267\",\"maxa\":3267},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Kim Liên (phường)",
- "truocsn": "Phường Kim Liên, Phường Khương Thượng, Phường Nam Đồng, Phường Phương Liên Trung Tự, Phường Trung Liệt, Phường Phương Mai (phần còn lại sau khi sáp nhập vào phường Bạch Mai), Phường Quang Trung (quận Đống Đa) (phần còn lại sau khi sáp nhập vào phường Đống Đa)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3259\",\"properties\":{\"matinhxa\":\"1.3275\",\"maxa\":3275},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Láng (phường)",
- "truocsn": "Phường Láng Thượng, Phường Láng Hạ (phần còn lại sau khi sáp nhập vào phường Giảng Võ, phường Đống Đa), Phường Ngọc Khánh (phần còn lại sau khi sáp nhập vào phường Ngọc Hà, phường Giảng Võ)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3255\",\"properties\":{\"matinhxa\":\"1.3271\",\"maxa\":3271},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Liên Minh (xã)",
- "truocsn": "Xã Phương Đình, Xã Trung Châu, Xã Thọ Xuân, Xã Thọ An, Xã Hồng Hà, Xã Tiến Thịnh",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3287\",\"properties\":{\"matinhxa\":\"1.3303\",\"maxa\":3303},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Lĩnh Nam (phường)",
- "truocsn": "Phường Lĩnh Nam, Phường Thanh Trì, Phường Trần Phú, Phường Yên Sở, Phường Thanh Lương (phần còn lại sau khi sáp nhập vào phường Vĩnh Tuy, phường Hồng Hà)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3177\",\"properties\":{\"matinhxa\":\"1.3193\",\"maxa\":3193},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Long Biên (phường)",
- "truocsn": "Phường Cự Khối, Phường Phúc Đồng, Phường Thạch Bàn, Xã Bát Tràng, Phường Long Biên, Phường Bồ Đề, Phường Gia Thụy",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3181\",\"properties\":{\"matinhxa\":\"1.3197\",\"maxa\":3197},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Mê Linh (xã)",
- "truocsn": "Xã Tráng Việt, Xã Tiền Phong (huyện Mê Linh), Xã Văn Khê, Xã Mê Linh, Xã Đại Thịnh, Xã Hồng Hà, Xã Liên Hà (huyện Đan Phượng) (phần còn lại sau khi sáp nhập vào xã Ô Diên), Xã Liên Hồng (phần còn lại sau khi sáp nhập vào xã Ô Diên), Xã Liên Trung (phần còn lại sau khi sáp nhập vào xã Ô Diên), Xã Đại Mạch (phần còn lại sau khi sáp nhập vào xã Thiên Lộc)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3240\",\"properties\":{\"matinhxa\":\"1.3256\",\"maxa\":3256},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Minh Châu (xã)",
- "truocsn": "Xã Minh Châu, Thị trấn Tây Đằng, Xã Chu Minh",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3272\",\"properties\":{\"matinhxa\":\"1.3288\",\"maxa\":3288},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Mỹ Đức (xã)",
- "truocsn": "Thị trấn Đại Nghĩa, Xã An Phú, Xã Đại Hưng, Xã Hợp Thanh, Xã Phù Lưu Tế",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3170\",\"properties\":{\"matinhxa\":\"1.3186\",\"maxa\":3186},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Nam Phù (xã)",
- "truocsn": "Xã Vạn Phúc, Xã Liên Ninh, Xã Ninh Sở, Xã Đông Mỹ, Xã Duyên Thái, Xã Ngũ Hiệp (phần còn lại sau khi sáp nhập vào xã Thanh Trì), Xã Yên Mỹ (phần còn lại sau khi sáp nhập vào xã Thanh Trì), Xã Duyên Hà (phần còn lại sau khi sáp nhập vào xã Thanh Trì)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3197\",\"properties\":{\"matinhxa\":\"1.3213\",\"maxa\":3213},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Nghĩa Đô (phường)",
- "truocsn": "Phường Nghĩa Tân, Phường Cổ Nhuế 1, Phường Mai Dịch, Phường Nghĩa Đô, Phường Xuân La, Phường Xuân Tảo, Phường Dịch Vọng (phần còn lại sau khi sáp nhập vào phường Cầu Giấy), Phường Dịch Vọng Hậu (phần còn lại sau khi sáp nhập vào phường Cầu Giấy), Phường Quan Hoa (phần còn lại sau khi sáp nhập vào phường Cầu Giấy)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3268\",\"properties\":{\"matinhxa\":\"1.3284\",\"maxa\":3284},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Ngọc Hà (phường)",
- "truocsn": "Phường Vĩnh Phúc, Phường Liễu Giai, Phường Cống Vị, Phường Kim Mã, Phường Ngọc Khánh, Phường Nghĩa Đô, Phường Đội Cấn (phần còn lại sau khi sáp nhập vào phường Ba Đình), Phường Ngọc Hà (phần còn lại sau khi sáp nhập vào phường Ba Đình)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3262\",\"properties\":{\"matinhxa\":\"1.3278\",\"maxa\":3278},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Ngọc Hồi (xã)",
- "truocsn": "Xã Ngọc Hồi, Xã Duyên Thái, Xã Đại Áng, Xã Khánh Hà, Xã Liên Ninh (phần còn lại sau khi sáp nhập vào xã Nam Phù)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3198\",\"properties\":{\"matinhxa\":\"1.3214\",\"maxa\":3214},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Nội Bài (xã)",
- "truocsn": "Xã Phú Cường (huyện Sóc Sơn), Xã Hiền Ninh, Xã Thanh Xuân, Xã Mai Đình (phần còn lại sau khi sáp nhập vào xã Sóc Sơn), Xã Phú Minh (phần còn lại sau khi sáp nhập vào xã Sóc Sơn), Xã Quang Tiến (phần còn lại sau khi sáp nhập vào xã Sóc Sơn)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3249\",\"properties\":{\"matinhxa\":\"1.3265\",\"maxa\":3265},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Ô Chợ Dừa (phường)",
- "truocsn": "Phường Cát Linh (phần còn lại sau khi sáp nhập vào phường Giảng Võ), Phường Điện Biên (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm, phường Ba Đình, phường Văn Miếu Quốc Tử Giám), Phường Thành Công (phần còn lại sau khi sáp nhập vào phường Giảng Võ), Phường Ô Chợ Dừa (phần còn lại sau khi sáp nhập vào phường Đống Đa), Phường Trung Liệt (phần còn lại sau khi sáp nhập vào phường Đống Đa, phường Kim Liên), Phường Hàng Bột (phần còn lại sau khi sáp nhập vào phường Văn Miếu Quốc Tử Giám), Phường Văn Miếu Quốc Tử Giám (phần còn lại sau khi sáp nhập vào phường Văn Miếu Quốc Tử Giám)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3245\",\"properties\":{\"matinhxa\":\"1.3261\",\"maxa\":3261},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Ô Diên (xã)",
- "truocsn": "Xã Hạ Mỗ, Xã Tân Hội, Xã Liên Hà (huyện Đan Phượng), Xã Hồng Hà, Xã Liên Hồng, Xã Liên Trung, Phường Tây Tựu (phần còn lại sau khi sáp nhập vào phường Tây Tựu, phường Đông Ngạc, phường Thượng Cát, xã Hoài Đức), Xã Tân Lập (phần còn lại sau khi sáp nhập vào xã Hoài Đức)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3229\",\"properties\":{\"matinhxa\":\"1.3245\",\"maxa\":3245},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Phú Cát (xã)",
- "truocsn": "Xã Đông Yên, Xã Hoà Thạch, Xã Phú Mãn, Xã Phú Cát (phần còn lại sau khi sáp nhập vào xã Hạ Bằng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3190\",\"properties\":{\"matinhxa\":\"1.3206\",\"maxa\":3206},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Phú Diễn (phường)",
- "truocsn": "Phường Phú Diễn, Phường Cổ Nhuế 1, Phường Mai Dịch, Phường Phúc Diễn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3284\",\"properties\":{\"matinhxa\":\"1.3300\",\"maxa\":3300},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Phù Đổng (xã)",
- "truocsn": "Thị trấn Yên Viên, Xã Ninh Hiệp, Xã Phù Đổng, Xã Thiên Đức, Xã Yên Thường, Xã Yên Viên, Xã Cổ Bi (phần còn lại sau khi sáp nhập vào phường Phúc Lợi, xã Gia Lâm), Xã Đặng Xá (phần còn lại sau khi sáp nhập vào xã Thuận An)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3182\",\"properties\":{\"matinhxa\":\"1.3198\",\"maxa\":3198},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Phú Lương (phường)",
- "truocsn": "Phường Phú Lãm, Phường Kiến Hưng, Phường Phú Lương, Xã Cự Khê, Xã Hữu Hòa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3206\",\"properties\":{\"matinhxa\":\"1.3222\",\"maxa\":3222},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Phú Nghĩa (xã)",
- "truocsn": "Xã Đông Phương Yên, Xã Đông Sơn, Xã Thanh Bình, Xã Trung Hòa, Xã Trường Yên, Xã Phú Nghĩa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3189\",\"properties\":{\"matinhxa\":\"1.3205\",\"maxa\":3205},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Phú Thượng (phường)",
- "truocsn": "Phường Đông Ngạc, Phường Xuân La, Phường Xuân Đỉnh, Phường Xuân Tảo, Phường Phú Thượng (phần còn lại sau khi sáp nhập vào phường Hồng Hà, phường Tây Hồ)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3265\",\"properties\":{\"matinhxa\":\"1.3281\",\"maxa\":3281},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Phú Xuyên (xã)",
- "truocsn": "Thị trấn Phú Minh, Thị trấn Phú Xuyên, Xã Hồng Thái, Xã Minh Cường, Xã Nam Phong, Xã Nam Tiến, Xã Quang Hà, Xã Văn Tự, Xã Tô Hiệu (phần còn lại sau khi sáp nhập vào xã Chương Dương), Xã Vạn Nhất (phần còn lại sau khi sáp nhập vào xã Chương Dương)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3162\",\"properties\":{\"matinhxa\":\"1.3178\",\"maxa\":3178},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Phúc Lộc (xã)",
- "truocsn": "Xã Nam Hà, Xã Sen Phương, Xã Vân Phúc, Xã Võng Xuyên, Xã Xuân Đình",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3217\",\"properties\":{\"matinhxa\":\"1.3233\",\"maxa\":3233},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Phúc Lợi (phường)",
- "truocsn": "Phường Thạch Bàn, Xã Cổ Bi, Phường Giang Biên (phần còn lại sau khi sáp nhập vào phường Việt Hưng), Phường Việt Hưng (phần còn lại sau khi sáp nhập vào phường Việt Hưng), Phường Phúc Lợi (phần còn lại sau khi sáp nhập vào phường Việt Hưng), Phường Phúc Đồng (phần còn lại sau khi sáp nhập vào phường Long Biên, phường Bồ Đề, phường Việt Hưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3244\",\"properties\":{\"matinhxa\":\"1.3260\",\"maxa\":3260},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Phúc Sơn (xã)",
- "truocsn": "Xã Mỹ Xuyên, Xã Phúc Lâm, Xã Thượng Lâm, Xã Tuy Lai, Xã Đồng Tâm",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3184\",\"properties\":{\"matinhxa\":\"1.3200\",\"maxa\":3200},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Phúc Thịnh (xã)",
- "truocsn": "Xã Bắc Hồng, Xã Nam Hồng, Xã Vân Nội, Xã Vĩnh Ngọc, Xã Nguyên Khê (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Xuân Nộn (phần còn lại sau khi sáp nhập vào xã Thư Lâm), Xã Tiên Dương (phần còn lại sau khi sáp nhập vào xã Đông Anh), Thị trấn Đông Anh (phần còn lại sau khi sáp nhập vào xã Thư Lâm, xã Đông Anh)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3239\",\"properties\":{\"matinhxa\":\"1.3255\",\"maxa\":3255},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Phúc Thọ (xã)",
- "truocsn": "Thị trấn Phúc Thọ, Xã Long Thượng, Xã Phúc Hòa, Xã Phụng Thượng, Xã Tích Lộc, Xã Trạch Mỹ Lộc",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3210\",\"properties\":{\"matinhxa\":\"1.3226\",\"maxa\":3226},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Phượng Dực (xã)",
- "truocsn": "Xã Hoàng Long, Xã Hồng Minh, Xã Phú Túc, Xã Văn Hoàng, Xã Phượng Dực",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3164\",\"properties\":{\"matinhxa\":\"1.3180\",\"maxa\":3180},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Phương Liệt (phường)",
- "truocsn": "Phường Khương Mai, Phường Thịnh Liệt (phần còn lại sau khi sáp nhập vào phường Hoàng Mai, phường Định Công, phường Yên Sở), Phường Phương Liệt (phần còn lại sau khi sáp nhập vào phường Tương Mai), Phường Định Công (phần còn lại sau khi sáp nhập vào phường Định Công), Phường Khương Đình (phần còn lại sau khi sáp nhập vào phường Khương Đình), Phường Khương Trung (phần còn lại sau khi sáp nhập vào phường Khương Đình)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3213\",\"properties\":{\"matinhxa\":\"1.3229\",\"maxa\":3229},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Quảng Bị (xã)",
- "truocsn": "Xã Hoàng Diệu, Xã Hợp Đồng, Xã Quảng Bị, Xã Tốt Động, Xã Lam Điền (phần còn lại sau khi sáp nhập vào xã Bình Minh)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3187\",\"properties\":{\"matinhxa\":\"1.3203\",\"maxa\":3203},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Quang Minh (xã)",
- "truocsn": "Thị trấn Chi Đông, Thị trấn Quang Minh, Xã Mê Linh (phần còn lại sau khi sáp nhập vào xã Mê Linh), Xã Tiền Phong (huyện Mê Linh) (phần còn lại sau khi sáp nhập vào xã Thiên Lộc, xã Mê Linh), Xã Đại Thịnh (phần còn lại sau khi sáp nhập vào xã Mê Linh, xã Tiến Thắng), Xã Kim Hoa (phần còn lại sau khi sáp nhập vào xã Tiến Thắng), Xã Thanh Lâm (phần còn lại sau khi sáp nhập vào xã Tiến Thắng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3241\",\"properties\":{\"matinhxa\":\"1.3257\",\"maxa\":3257},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Quảng Oai (xã)",
- "truocsn": "Xã Cam Thượng, Xã Đông Quang, Xã Tiên Phong, Xã Thụy An, Thị trấn Tây Đằng (phần còn lại sau khi sáp nhập vào xã Minh Châu), Xã Chu Minh (phần còn lại sau khi sáp nhập vào xã Minh Châu)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3221\",\"properties\":{\"matinhxa\":\"1.3237\",\"maxa\":3237},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quốc Oai (xã)",
- "truocsn": "Xã Thạch Thán, Xã Sài Sơn, Xã Ngọc Mỹ, Thị trấn Quốc Oai (phần còn lại sau khi sáp nhập vào xã Tây Phương), Xã Phượng Sơn (phần còn lại sau khi sáp nhập vào xã Tây Phương)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3225\",\"properties\":{\"matinhxa\":\"1.3241\",\"maxa\":3241},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Sóc Sơn (xã)",
- "truocsn": "Thị trấn Sóc Sơn, Xã Tân Minh, Xã Đông Xuân (huyện Sóc Sơn), Xã Phù Lỗ, Xã Phù Linh, Xã Tiên Dược, Xã Mai Đình, Xã Phú Minh, Xã Quang Tiến",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3247\",\"properties\":{\"matinhxa\":\"1.3263\",\"maxa\":3263},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Sơn Đồng (xã)",
- "truocsn": "Xã Lại Yên, Xã Sơn Đồng, Xã Tiền Yên, Xã An Khánh, Xã Song Phương, Xã Vân Côn, Xã An Thượng, Xã Vân Canh (phần còn lại sau khi sáp nhập vào phường Xuân Phương)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3226\",\"properties\":{\"matinhxa\":\"1.3242\",\"maxa\":3242},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Sơn Tây (phường)",
- "truocsn": "Phường Ngô Quyền, Phường Phú Thịnh, Phường Viên Sơn, Xã Đường Lâm, Phường Trung Hưng, Phường Sơn Lộc, Xã Thanh Mỹ",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3224\",\"properties\":{\"matinhxa\":\"1.3240\",\"maxa\":3240},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Suối Hai (xã)",
- "truocsn": "Xã Ba Trại, Xã Tản Lĩnh, Xã Thụy An (phần còn lại sau khi sáp nhập vào xã Quảng Oai), Xã Cẩm Lĩnh (phần còn lại sau khi sáp nhập vào xã Bất Bạt)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3212\",\"properties\":{\"matinhxa\":\"1.3228\",\"maxa\":3228},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tam Hưng (xã)",
- "truocsn": "Xã Mỹ Hưng, Xã Thanh Thùy, Xã Thanh Văn, Xã Tam Hưng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3172\",\"properties\":{\"matinhxa\":\"1.3188\",\"maxa\":3188},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tây Hồ (phường)",
- "truocsn": "Phường Bưởi, Phường Phú Thượng, Phường Xuân La, Phường Nhật Tân (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Quảng An (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Tứ Liên (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Yên Phụ (phần còn lại sau khi sáp nhập vào phường Hồng Hà), Phường Nghĩa Đô (phần còn lại sau khi sáp nhập vào phường Ngọc Hà, phường Nghĩa Đô), Phường Thụy Khuê (phần còn lại sau khi sáp nhập vào phường Ba Đình)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3266\",\"properties\":{\"matinhxa\":\"1.3282\",\"maxa\":3282},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tây Mỗ (phường)",
- "truocsn": "Phường Đại Mỗ, Phường Dương Nội, Xã An Khánh, Phường Tây Mỗ (phần còn lại sau khi sáp nhập vào phường Xuân Phương)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3286\",\"properties\":{\"matinhxa\":\"1.3302\",\"maxa\":3302},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tây Phương (xã)",
- "truocsn": "Xã Phùng Xá (huyện Thạch Thất), Xã Hương Ngải, Xã Lam Sơn, Xã Thạch Xá, Xã Quang Trung, Thị trấn Quốc Oai, Xã Ngọc Liệp, Xã Phượng Sơn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3202\",\"properties\":{\"matinhxa\":\"1.3218\",\"maxa\":3218},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tây Tựu (phường)",
- "truocsn": "Phường Minh Khai (quận Bắc Từ Liêm), Phường Tây Tựu, Xã Kim Chung (huyện Hoài Đức)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3281\",\"properties\":{\"matinhxa\":\"1.3297\",\"maxa\":3297},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Thạch Thất (xã)",
- "truocsn": "Thị trấn Liên Quan, Xã Cẩm Yên, Xã Đại Đồng, Xã Kim Quan, Xã Lại Thượng, Xã Phú Kim",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3204\",\"properties\":{\"matinhxa\":\"1.3220\",\"maxa\":3220},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Thanh Liệt (phường)",
- "truocsn": "Xã Tả Thanh Oai, Phường Đại Kim (phần còn lại sau khi sáp nhập vào phường Định Công, phường Hoàng Liệt, phường Khương Đình), Phường Thanh Xuân Bắc (phần còn lại sau khi sáp nhập vào phường Thanh Xuân), Phường Hạ Đình (phần còn lại sau khi sáp nhập vào phường Khương Đình), Phường Văn Quán (phần còn lại sau khi sáp nhập vào phường Hà Đông), Xã Thanh Liệt (phần còn lại sau khi sáp nhập vào phường Định Công, phường Hoàng Liệt), Xã Tân Triều (phần còn lại sau khi sáp nhập vào phường Định Công, phường Khương Đình, phường Hà Đông)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3207\",\"properties\":{\"matinhxa\":\"1.3223\",\"maxa\":3223},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Thanh Oai (xã)",
- "truocsn": "Thị trấn Kim Bài, Xã Đỗ Động, Xã Kim An, Xã Phương Trung, Xã Thanh Mai, Xã Kim Thư",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3167\",\"properties\":{\"matinhxa\":\"1.3183\",\"maxa\":3183},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Thanh Trì (xã)",
- "truocsn": "Thị trấn Văn Điển, Xã Ngũ Hiệp, Xã Vĩnh Quỳnh, Xã Yên Mỹ, Xã Duyên Hà, Xã Tứ Hiệp (phần còn lại sau khi sáp nhập vào phường Yên Sở), Phường Yên Sở (phần còn lại sau khi sáp nhập vào phường Lĩnh Nam, phường Hoàng Mai, phường Yên Sở)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3208\",\"properties\":{\"matinhxa\":\"1.3224\",\"maxa\":3224},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Thanh Xuân (phường)",
- "truocsn": "Phường Nhân Chính, Phường Thanh Xuân Bắc, Phường Thanh Xuân Trung, Phường Thượng Đình, Phường Trung Hoà, Phường Trung Văn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3215\",\"properties\":{\"matinhxa\":\"1.3231\",\"maxa\":3231},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Thiên Lộc (xã)",
- "truocsn": "Xã Võng La, Xã Kim Chung (huyện Đông Anh), Xã Đại Mạch, Xã Kim Nỗ, Xã Tiền Phong (huyện Mê Linh), Xã Hải Bối",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3237\",\"properties\":{\"matinhxa\":\"1.3253\",\"maxa\":3253},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Thư Lâm (xã)",
- "truocsn": "Xã Thụy Lâm, Xã Vân Hà, Xã Xuân Nộn, Thị trấn Đông Anh, Xã Liên Hà (huyện Đông Anh), Xã Dục Tú, Xã Nguyên Khê, Xã Uy Nỗ, Xã Việt Hùng",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3238\",\"properties\":{\"matinhxa\":\"1.3254\",\"maxa\":3254},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Thuận An (xã)",
- "truocsn": "Xã Dương Quang, Xã Lệ Chi, Xã Đặng Xá, Xã Phú Sơn (huyện Gia Lâm) (phần còn lại sau khi sáp nhập vào xã Gia Lâm)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3234\",\"properties\":{\"matinhxa\":\"1.3250\",\"maxa\":3250},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Thượng Cát (phường)",
- "truocsn": "Phường Liên Mạc, Phường Thượng Cát, Phường Minh Khai (quận Bắc Từ Liêm), Phường Tây Tựu, Phường Cổ Nhuế 2 (phần còn lại sau khi sáp nhập vào phường Đông Ngạc), Phường Thụy Phương (phần còn lại sau khi sáp nhập vào phường Đông Ngạc)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3273\",\"properties\":{\"matinhxa\":\"1.3289\",\"maxa\":3289},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Thượng Phúc (xã)",
- "truocsn": "Xã Tân Minh (huyện Thường Tín), Xã Dũng Tiến, Xã Quất Động, Xã Nghiêm Xuyên, Xã Nguyễn Trãi",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3166\",\"properties\":{\"matinhxa\":\"1.3182\",\"maxa\":3182},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Thường Tín (xã)",
- "truocsn": "Thị trấn Thường Tín, Xã Tiền Phong (huyện Thường Tín), Xã Hiền Giang, Xã Hòa Bình, Xã Nhị Khê, Xã Văn Bình, Xã Văn Phú, Xã Đại Áng (phần còn lại sau khi sáp nhập vào xã Ngọc Hồi), Xã Khánh Hà (phần còn lại sau khi sáp nhập vào xã Ngọc Hồi)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3173\",\"properties\":{\"matinhxa\":\"1.3189\",\"maxa\":3189},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tiến Thắng (xã)",
- "truocsn": "Xã Tam Đồng, Xã Tiến Thắng, Xã Tự Lập, Xã Đại Thịnh, Xã Kim Hoa, Xã Thanh Lâm, Xã Văn Khê (phần còn lại sau khi sáp nhập vào xã Ô Diên, xã Mê Linh, xã Yên Lãng), Xã Thạch Đà (phần còn lại sau khi sáp nhập vào xã Yên Lãng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3246\",\"properties\":{\"matinhxa\":\"1.3262\",\"maxa\":3262},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Trần Phú (xã)",
- "truocsn": "Xã Hoàng Văn Thụ, Xã Hữu Văn, Xã Mỹ Lương, Xã Trần Phú, Xã Đồng Tâm (phần còn lại sau khi sáp nhập vào xã Phúc Sơn), Xã Tân Tiến (phần còn lại sau khi sáp nhập vào xã Xuân Mai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3289\",\"properties\":{\"matinhxa\":\"1.3305\",\"maxa\":3305},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Trung Giã (xã)",
- "truocsn": "Xã Bắc Sơn, Xã Hồng Kỳ, Xã Nam Sơn, Xã Trung Giã",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3252\",\"properties\":{\"matinhxa\":\"1.3268\",\"maxa\":3268},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Từ Liêm (phường)",
- "truocsn": "Phường Cầu Diễn, Phường Mễ Trì, Phường Phú Đô, Phường Mai Dịch (phần còn lại sau khi sáp nhập vào phường Nghĩa Đô, phường Phú Diễn), Phường Mỹ Đình 1 (phần còn lại sau khi sáp nhập vào phường Cầu Giấy), Phường Mỹ Đình 2 (phần còn lại sau khi sáp nhập vào phường Cầu Giấy)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3269\",\"properties\":{\"matinhxa\":\"1.3285\",\"maxa\":3285},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Tùng Thiện (phường)",
- "truocsn": "Phường Xuân Khanh, Phường Trung Sơn Trầm, Xã Xuân Sơn, Phường Trung Hưng (phần còn lại sau khi sáp nhập vào phường Sơn Tây), Phường Sơn Lộc (phần còn lại sau khi sáp nhập vào phường Sơn Tây), Xã Thanh Mỹ (phần còn lại sau khi sáp nhập vào phường Sơn Tây)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3211\",\"properties\":{\"matinhxa\":\"1.3227\",\"maxa\":3227},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Tương Mai (phường)",
- "truocsn": "Phường Giáp Bát, Phường Phương Liệt, Phường Mai Động (phần còn lại sau khi sáp nhập vào phường Vĩnh Tuy), Phường Minh Khai (quận Hai Bà Trưng) (phần còn lại sau khi sáp nhập vào phường Bạch Mai), Phường Đồng Tâm (phần còn lại sau khi sáp nhập vào phường Bạch Mai), Phường Trương Định (phần còn lại sau khi sáp nhập vào phường Bạch Mai), Phường Hoàng Văn Thụ (phần còn lại sau khi sáp nhập vào phường Hoàng Mai), Phường Tân Mai (phần còn lại sau khi sáp nhập vào phường Hoàng Mai), Phường Tương Mai (phần còn lại sau khi sáp nhập vào phường Hoàng Mai), Phường Vĩnh Hưng (phần còn lại sau khi sáp nhập vào phường Vĩnh Tuy, phường Hoàng Mai, phường Vĩnh Hưng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3194\",\"properties\":{\"matinhxa\":\"1.3210\",\"maxa\":3210},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Ứng Hòa (xã)",
- "truocsn": "Xã Đại Cường, Xã Đại Hùng, Xã Đông Lỗ, Xã Đồng Tân, Xã Kim Đường, Xã Minh Đức, Xã Trầm Lộng, Xã Trung Tú",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3178\",\"properties\":{\"matinhxa\":\"1.3194\",\"maxa\":3194},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Ứng Thiên (xã)",
- "truocsn": "Xã Hoa Viên, Xã Liên Bạt, Xã Quảng Phú Cầu, Xã Trường Thịnh",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3183\",\"properties\":{\"matinhxa\":\"1.3199\",\"maxa\":3199},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Vân Đình (xã)",
- "truocsn": "Thị trấn Vân Đình, Xã Cao Sơn Tiến, Xã Phương Tú, Xã Tảo Dương Văn",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3180\",\"properties\":{\"matinhxa\":\"1.3196\",\"maxa\":3196},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Văn Miếu - Quốc Tử Giám (phường)",
- "truocsn": "Phường Khâm Thiên, Phường Thổ Quan, Phường Văn Chương, Phường Điện Biên, Phường Hàng Bột, Phường Văn Miếu Quốc Tử Giám, Phường Cửa Nam (phần còn lại sau khi sáp nhập vào phường Hoàn Kiếm, phường Cửa Nam, phường Ba Đình), Phường Lê Đại Hành (phần còn lại sau khi sáp nhập vào phường Hai Bà Trưng, phường Bạch Mai), Phường Nam Đồng (phần còn lại sau khi sáp nhập vào phường Đống Đa, phường Kim Liên), Phường Nguyễn Du (phần còn lại sau khi sáp nhập vào phường Cửa Nam, phường Hai Bà Trưng), Phường Phương Liên Trung Tự (phần còn lại sau khi sáp nhập vào phường Kim Liên)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3258\",\"properties\":{\"matinhxa\":\"1.3274\",\"maxa\":3274},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Vật Lại (xã)",
- "truocsn": "Xã Thái Hòa, Xã Phú Sơn (huyện Ba Vì), Xã Đồng Thái, Xã Phú Châu, Xã Vật Lại",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3222\",\"properties\":{\"matinhxa\":\"1.3238\",\"maxa\":3238},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Việt Hưng (phường)",
- "truocsn": "Phường Giang Biên, Phường Phúc Đồng, Phường Việt Hưng, Phường Phúc Lợi, Phường Gia Thụy (phần còn lại sau khi sáp nhập vào phường Long Biên, phường Bồ Đề), Phường Đức Giang (phần còn lại sau khi sáp nhập vào phường Bồ Đề), Phường Thượng Thanh (phần còn lại sau khi sáp nhập vào phường Bồ Đề)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3242\",\"properties\":{\"matinhxa\":\"1.3258\",\"maxa\":3258},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Vĩnh Hưng (phường)",
- "truocsn": "Phường Vĩnh Hưng, Phường Lĩnh Nam (phần còn lại sau khi sáp nhập vào phường Lĩnh Nam, phường Hoàng Mai), Phường Thanh Trì (phần còn lại sau khi sáp nhập vào phường Lĩnh Nam), Phường Vĩnh Tuy (phần còn lại sau khi sáp nhập vào phường Vĩnh Tuy)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3231\",\"properties\":{\"matinhxa\":\"1.3247\",\"maxa\":3247},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Vĩnh Thanh (xã)",
- "truocsn": "Xã Tàm Xá (phần còn lại sau khi sáp nhập vào xã Đông Anh), Xã Xuân Canh (phần còn lại sau khi sáp nhập vào xã Đông Anh), Xã Vĩnh Ngọc (phần còn lại sau khi sáp nhập vào xã Đông Anh, xã Phúc Thịnh), Xã Kim Chung (huyện Đông Anh) (phần còn lại sau khi sáp nhập vào xã Thiên Lộc), Xã Hải Bối (phần còn lại sau khi sáp nhập vào xã Thiên Lộc), Xã Kim Nỗ (phần còn lại sau khi sáp nhập vào xã Thiên Lộc)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3276\",\"properties\":{\"matinhxa\":\"1.3292\",\"maxa\":3292},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Vĩnh Tuy (phường)",
- "truocsn": "Phường Mai Động, Phường Thanh Lương, Phường Vĩnh Hưng, Phường Vĩnh Tuy",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3253\",\"properties\":{\"matinhxa\":\"1.3269\",\"maxa\":3269},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Xuân Đỉnh (phường)",
- "truocsn": "Phường Xuân Đỉnh, Phường Cổ Nhuế 1 (phần còn lại sau khi sáp nhập vào phường Nghĩa Đô, phường Phú Diễn), Phường Xuân La (phần còn lại sau khi sáp nhập vào phường Nghĩa Đô, phường Tây Hồ, phường Phú Thượng), Phường Xuân Tảo (phần còn lại sau khi sáp nhập vào phường Nghĩa Đô, phường Phú Thượng)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3263\",\"properties\":{\"matinhxa\":\"1.3279\",\"maxa\":3279},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Xuân Mai (xã)",
- "truocsn": "Thị trấn Xuân Mai, Xã Nam Phương Tiến, Xã Thủy Xuân Tiên, Xã Tân Tiến",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3186\",\"properties\":{\"matinhxa\":\"1.3202\",\"maxa\":3202},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Xuân Phương (phường)",
- "truocsn": "Phường Phương Canh, Phường Xuân Phương, Phường Đại Mỗ, Phường Tây Mỗ, Xã Vân Canh, Phường Minh Khai (quận Bắc Từ Liêm) (phần còn lại sau khi sáp nhập vào phường Tây Tựu, phường Đông Ngạc, phường Thượng Cát), Phường Phúc Diễn (phần còn lại sau khi sáp nhập vào phường Phú Diễn)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3270\",\"properties\":{\"matinhxa\":\"1.3286\",\"maxa\":3286},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Yên Bài (xã)",
- "truocsn": "Xã Vân Hòa, Xã Yên Bài, Xã Thạch Hòa",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3277\",\"properties\":{\"matinhxa\":\"1.3293\",\"maxa\":3293},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Yên Hòa (phường)",
- "truocsn": "Phường Mễ Trì, Phường Nhân Chính, Phường Trung Hòa, Phường Yên Hòa (phần còn lại sau khi sáp nhập vào phường Cầu Giấy)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3267\",\"properties\":{\"matinhxa\":\"1.3283\",\"maxa\":3283},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Yên Lãng (xã)",
- "truocsn": "Xã Chu Phan, Xã Hoàng Kim, Xã Liên Mạc, Xã Thạch Đà, Xã Văn Khê, Xã Tiến Thịnh (phần còn lại sau khi sáp nhập vào xã Liên Minh), Xã Trung Châu (phần còn lại sau khi sáp nhập vào xã Liên Minh), Xã Thọ Xuân (phần còn lại sau khi sáp nhập vào xã Liên Minh), Xã Thọ An (phần còn lại sau khi sáp nhập vào xã Liên Minh), Xã Hồng Hà (phần còn lại sau khi sáp nhập vào xã Liên Minh, xã Mê Linh)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3235\",\"properties\":{\"matinhxa\":\"1.3251\",\"maxa\":3251},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Yên Nghĩa (phường)",
- "truocsn": "Phường Đồng Mai, Phường Yên Nghĩa (phần còn lại sau khi sáp nhập vào phường Dương Nội)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3205\",\"properties\":{\"matinhxa\":\"1.3221\",\"maxa\":3221},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Yên Sở (phường)",
- "truocsn": "Phường Thịnh Liệt, Phường Yên Sở, Xã Tứ Hiệp, Phường Hoàng Liệt (phần còn lại sau khi sáp nhập vào phường Hoàng Mai, phường Định Công, phường Hoàng Liệt), Phường Trần Phú (phần còn lại sau khi sáp nhập vào phường Lĩnh Nam, phường Hoàng Mai)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3230\",\"properties\":{\"matinhxa\":\"1.3246\",\"maxa\":3246},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Yên Xuân (xã)",
- "truocsn": "Xã Đông Xuân (huyện Quốc Oai), Xã Yên Bình, Xã Yên Trung, Xã Tiến Xuân (phần còn lại sau khi sáp nhập vào xã Hòa Lạc), Xã Thạch Hòa (phần còn lại sau khi sáp nhập vào xã Yên Bài, xã Hòa Lạc)",
- "provinceName": "Thủ đô Hà Nội",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3193\",\"properties\":{\"matinhxa\":\"1.3209\",\"maxa\":3209},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bạch Đằng (xã)",
- "truocsn": "Xã Thịnh Vượng, Xã Bình Dương, Xã Bạch Đằng",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1240\",\"properties\":{\"matinhxa\":\"7.1251\",\"maxa\":1251},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bảo Lạc (xã)",
- "truocsn": "Thị trấn Bảo Lạc, Xã Bảo Toàn, Xã Hồng Trị",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1222\",\"properties\":{\"matinhxa\":\"7.1233\",\"maxa\":1233},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bảo Lâm (xã)",
- "truocsn": "Thị trấn Pác Miầu, Xã Mông Ân, Xã Vĩnh Phong",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1214\",\"properties\":{\"matinhxa\":\"7.1225\",\"maxa\":1225},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bế Văn Đàn (xã)",
- "truocsn": "Xã Hồng Quang, Xã Cách Linh, Xã Bế Văn Đàn",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.679\",\"properties\":{\"matinhxa\":\"7.684\",\"maxa\":684},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Ca Thành (xã)",
- "truocsn": "Xã Yên Lạc, Xã Ca Thành",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1230\",\"properties\":{\"matinhxa\":\"7.1241\",\"maxa\":1241},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cần Yên (xã)",
- "truocsn": "Xã Cần Nông, Xã Lương Thông, Xã Cần Yên",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1244\",\"properties\":{\"matinhxa\":\"7.1255\",\"maxa\":1255},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Canh Tân (xã)",
- "truocsn": "Xã Đức Thông, Xã Canh Tân",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1206\",\"properties\":{\"matinhxa\":\"7.1217\",\"maxa\":1217},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cô Ba (xã)",
- "truocsn": "Xã Thượng Hà, Xã Cô Ba",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.656\",\"properties\":{\"matinhxa\":\"7.658\",\"maxa\":658},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cốc Pàng (xã)",
- "truocsn": "Xã Đức Hạnh, Xã Cốc Pàng",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1229\",\"properties\":{\"matinhxa\":\"7.1240\",\"maxa\":1240},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Đàm Thủy (xã)",
- "truocsn": "Xã Chí Viễn, Xã Phong Châu, Xã Đàm Thủy",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.680\",\"properties\":{\"matinhxa\":\"7.685\",\"maxa\":685},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đình Phong (xã)",
- "truocsn": "Xã Ngọc Côn, Xã Ngọc Khê, Xã Phong Nặm, Xã Đình Phong",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.700\",\"properties\":{\"matinhxa\":\"7.711\",\"maxa\":711},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đoài Dương (xã)",
- "truocsn": "Xã Trung Phúc, Xã Cao Thăng, Xã Đoài Dương",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.706\",\"properties\":{\"matinhxa\":\"7.717\",\"maxa\":717},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Độc Lập (xã)",
- "truocsn": "Xã Quảng Hưng, Xã Cai Bộ, Xã Độc Lập",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.672\",\"properties\":{\"matinhxa\":\"7.675\",\"maxa\":675},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đông Khê (xã)",
- "truocsn": "Thị trấn Đông Khê, Xã Đức Xuân, Xã Trọng Con",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.674\",\"properties\":{\"matinhxa\":\"7.677\",\"maxa\":677},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đức Long (xã)",
- "truocsn": "Xã Đức Long (huyện Thạch An), Xã Thụy Hùng, Xã Lê Lợi",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.673\",\"properties\":{\"matinhxa\":\"7.676\",\"maxa\":676},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Hạ Lang (xã)",
- "truocsn": "Thị trấn Thanh Nhật, Xã Thống Nhất, Xã Thị Hoa",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.686\",\"properties\":{\"matinhxa\":\"7.691\",\"maxa\":691},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Hà Quảng (xã)",
- "truocsn": "Xã Hồng Sỹ, Xã Ngọc Đào, Xã Mã Ba",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1243\",\"properties\":{\"matinhxa\":\"7.1254\",\"maxa\":1254},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hạnh Phúc (xã)",
- "truocsn": "Xã Ngọc Động (huyện Quảng Hòa), Xã Tự Do, Xã Hạnh Phúc",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.707\",\"properties\":{\"matinhxa\":\"7.718\",\"maxa\":718},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hòa An (xã)",
- "truocsn": "Thị trấn Nước Hai, Xã Đại Tiến, Xã Hồng Việt",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1238\",\"properties\":{\"matinhxa\":\"7.1249\",\"maxa\":1249},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hưng Đạo (xã)",
- "truocsn": "Xã Hưng Thịnh, Xã Kim Cúc, Xã Hưng Đạo (huyện Bảo Lạc)",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1227\",\"properties\":{\"matinhxa\":\"7.1238\",\"maxa\":1238},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Huy Giáp (xã)",
- "truocsn": "Xã Đình Phùng, Xã Huy Giáp",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1233\",\"properties\":{\"matinhxa\":\"7.1244\",\"maxa\":1244},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Khánh Xuân (xã)",
- "truocsn": "Xã Phan Thanh (huyện Bảo Lạc), Xã Khánh Xuân",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1235\",\"properties\":{\"matinhxa\":\"7.1246\",\"maxa\":1246},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Kim Đồng (xã)",
- "truocsn": "Xã Hồng Nam, Xã Thái Cường, Xã Kim Đồng",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1207\",\"properties\":{\"matinhxa\":\"7.1218\",\"maxa\":1218},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Lũng Nặm (xã)",
- "truocsn": "Xã Thượng Thôn, Xã Lũng Nặm",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1246\",\"properties\":{\"matinhxa\":\"7.1257\",\"maxa\":1257},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Lý Bôn (xã)",
- "truocsn": "Xã Vĩnh Quang (huyện Bảo Lâm), Xã Lý Bôn",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1215\",\"properties\":{\"matinhxa\":\"7.1226\",\"maxa\":1226},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Lý Quốc (xã)",
- "truocsn": "Xã Minh Long, Xã Đồng Loan, Xã Lý Quốc",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.702\",\"properties\":{\"matinhxa\":\"7.713\",\"maxa\":713},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Minh Khai (xã)",
- "truocsn": "Xã Quang Trọng, Xã Minh Khai",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1208\",\"properties\":{\"matinhxa\":\"7.1219\",\"maxa\":1219},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Minh Tâm (xã)",
- "truocsn": "Xã Trương Lương, Xã Minh Tâm",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1212\",\"properties\":{\"matinhxa\":\"7.1223\",\"maxa\":1223},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Nam Quang (xã)",
- "truocsn": "Xã Nam Cao, Xã Nam Quang",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1216\",\"properties\":{\"matinhxa\":\"7.1227\",\"maxa\":1227},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Nam Tuấn (xã)",
- "truocsn": "Xã Đức Long (huyện Hòa An), Xã Dân Chủ, Xã Nam Tuấn",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1237\",\"properties\":{\"matinhxa\":\"7.1248\",\"maxa\":1248},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Nguyên Bình (xã)",
- "truocsn": "Thị trấn Nguyên Bình, Xã Thể Dục, Xã Vũ Minh",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1210\",\"properties\":{\"matinhxa\":\"7.1221\",\"maxa\":1221},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Nguyễn Huệ (xã)",
- "truocsn": "Xã Quang Trung (huyện Hòa An), Xã Ngũ Lão, Xã Nguyễn Huệ",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1239\",\"properties\":{\"matinhxa\":\"7.1250\",\"maxa\":1250},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Nùng Trí Cao (phường)",
- "truocsn": "Phường Ngọc Xuân, Phường Sông Bằng, Xã Vĩnh Quang (thành phố Cao Bằng)",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1219\",\"properties\":{\"matinhxa\":\"7.1230\",\"maxa\":1230},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Phan Thanh (xã)",
- "truocsn": "Xã Phan Thanh (huyện Nguyên Bình), Xã Mai Long",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1231\",\"properties\":{\"matinhxa\":\"7.1242\",\"maxa\":1242},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Phục Hòa (xã)",
- "truocsn": "Thị trấn Tà Lùng, Thị trấn Hòa Thuận, Xã Mỹ Hưng, Xã Đại Sơn",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.678\",\"properties\":{\"matinhxa\":\"7.683\",\"maxa\":683},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Quang Hán (xã)",
- "truocsn": "Xã Quang Vinh, Xã Quang Hán",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.703\",\"properties\":{\"matinhxa\":\"7.714\",\"maxa\":714},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Quảng Lâm (xã)",
- "truocsn": "Xã Thạch Lâm, Xã Quảng Lâm",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1221\",\"properties\":{\"matinhxa\":\"7.1232\",\"maxa\":1232},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Quang Long (xã)",
- "truocsn": "Xã Đức Quang, Xã Thắng Lợi, Xã Quang Long",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.701\",\"properties\":{\"matinhxa\":\"7.712\",\"maxa\":712},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Quang Trung (xã)",
- "truocsn": "Xã Quang Trung (huyện Trùng Khánh), Xã Tri Phương, Xã Xuân Nội",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.704\",\"properties\":{\"matinhxa\":\"7.715\",\"maxa\":715},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Quảng Uyên (xã)",
- "truocsn": "Thị trấn Quảng Uyên, Xã Phi Hải, Xã Phúc Sen, Xã Chí Thảo",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.671\",\"properties\":{\"matinhxa\":\"7.674\",\"maxa\":674},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Sơn Lộ (xã)",
- "truocsn": "Xã Sơn Lập, Xã Sơn Lộ",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1228\",\"properties\":{\"matinhxa\":\"7.1239\",\"maxa\":1239},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Tam Kim (xã)",
- "truocsn": "Xã Hưng Đạo (huyện Nguyên Bình), Xã Hoa Thám, Xã Tam Kim",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1213\",\"properties\":{\"matinhxa\":\"7.1224\",\"maxa\":1224},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Tân Giang (phường)",
- "truocsn": "Phường Tân Giang, Phường Duyệt Trung, Phường Hòa Chung, Xã Chu Trinh, Xã Lê Chung",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1220\",\"properties\":{\"matinhxa\":\"7.1231\",\"maxa\":1231},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Thạch An (xã)",
- "truocsn": "Xã Tiên Thành, Xã Vân Trình, Xã Lê Lai",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1247\",\"properties\":{\"matinhxa\":\"7.1258\",\"maxa\":1258},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Thành Công (xã)",
- "truocsn": "Xã Quang Thành, Xã Thành Công",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1232\",\"properties\":{\"matinhxa\":\"7.1243\",\"maxa\":1243},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Thanh Long (xã)",
- "truocsn": "Xã Ngọc Động (huyện Hà Quảng), Xã Yên Sơn, Xã Thanh Long",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1209\",\"properties\":{\"matinhxa\":\"7.1220\",\"maxa\":1220},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Thông Nông (xã)",
- "truocsn": "Thị trấn Thông Nông, Xã Đa Thông, Xã Lương Can",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1242\",\"properties\":{\"matinhxa\":\"7.1253\",\"maxa\":1253},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Thục Phán (phường)",
- "truocsn": "Phường Sông Hiến, Phường Đề Thám, Phường Hợp Giang, Xã Hưng Đạo (thành phố Cao Bằng), Xã Hoàng Tung",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1218\",\"properties\":{\"matinhxa\":\"7.1229\",\"maxa\":1229},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Tĩnh Túc (xã)",
- "truocsn": "Thị trấn Tĩnh Túc, Xã Triệu Nguyên, Xã Vũ Nông",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1211\",\"properties\":{\"matinhxa\":\"7.1222\",\"maxa\":1222},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Tổng Cọt (xã)",
- "truocsn": "Xã Nội Thôn, Xã Cải Viên, Xã Tổng Cọt",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1241\",\"properties\":{\"matinhxa\":\"7.1252\",\"maxa\":1252},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Trà Lĩnh (xã)",
- "truocsn": "Thị trấn Trà Lĩnh, Xã Cao Chương, Xã Quốc Toản",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.708\",\"properties\":{\"matinhxa\":\"7.719\",\"maxa\":719},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Trùng Khánh (xã)",
- "truocsn": "Thị trấn Trùng Khánh, Xã Đức Hồng, Xã Lăng Hiếu, Xã Khâm Thành",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.705\",\"properties\":{\"matinhxa\":\"7.716\",\"maxa\":716},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Trường Hà (xã)",
- "truocsn": "Thị trấn Xuân Hòa, Xã Quý Quân, Xã Sóc Hà, Xã Trường Hà",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1245\",\"properties\":{\"matinhxa\":\"7.1256\",\"maxa\":1256},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Vinh Quý (xã)",
- "truocsn": "Xã Cô Ngân, Xã An Lạc, Xã Kim Loan, Xã Vinh Quý",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.687\",\"properties\":{\"matinhxa\":\"7.692\",\"maxa\":692},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Xuân Trường (xã)",
- "truocsn": "Xã Hồng An, Xã Xuân Trường",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1234\",\"properties\":{\"matinhxa\":\"7.1245\",\"maxa\":1245},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Yên Thổ (xã)",
- "truocsn": "Xã Thái Học, Xã Thái Sơn, Xã Yên Thổ",
- "provinceName": "tỉnh Cao Bằng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1217\",\"properties\":{\"matinhxa\":\"7.1228\",\"maxa\":1228},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Tường (phường)",
- "truocsn": "Phường Hưng Thành, Phường An Tường, Xã Lưỡng Vượng, Xã An Khang, Xã Hoàng Khai",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2355\",\"properties\":{\"matinhxa\":\"8.2369\",\"maxa\":2369},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bắc Mê (xã)",
- "truocsn": "Thị trấn Yên Phú, Xã Yên Phong, Xã Lạc Nông",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2405\",\"properties\":{\"matinhxa\":\"8.2419\",\"maxa\":2419},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bắc Quang (xã)",
- "truocsn": "Thị trấn Việt Quang, Xã Quang Minh, Xã Việt Vinh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2419\",\"properties\":{\"matinhxa\":\"8.2433\",\"maxa\":2433},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bạch Đích (xã)",
- "truocsn": "Xã Phú Lũng, Xã Na Khê, Xã Bạch Đích",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2384\",\"properties\":{\"matinhxa\":\"8.2398\",\"maxa\":2398},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bạch Ngọc (xã)",
- "truocsn": "Xã Ngọc Minh, Xã Bạch Ngọc",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2429\",\"properties\":{\"matinhxa\":\"8.2443\",\"maxa\":2443},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bạch Xa (xã)",
- "truocsn": "Xã Yên Thuận, Xã Minh Khương, Xã Bạch Xa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2339\",\"properties\":{\"matinhxa\":\"8.2353\",\"maxa\":2353},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bản Máy (xã)",
- "truocsn": "Xã Bản Phùng, Xã Chiến Phố, Xã Bản Máy",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2408\",\"properties\":{\"matinhxa\":\"8.2422\",\"maxa\":2422},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bằng Hành (xã)",
- "truocsn": "Xã Kim Ngọc, Xã Vô Điếm, Xã Bằng Hành",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2422\",\"properties\":{\"matinhxa\":\"8.2436\",\"maxa\":2436},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bằng Lang (xã)",
- "truocsn": "Xã Yên Hà, Xã Bằng Lang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2426\",\"properties\":{\"matinhxa\":\"8.2440\",\"maxa\":2440},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Thổ Bình, Xã Bình An",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2327\",\"properties\":{\"matinhxa\":\"8.2341\",\"maxa\":2341},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Ca (xã)",
- "truocsn": "Xã Thượng Ấm, Xã Cấp Tiến, Xã Vĩnh Lợi",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2361\",\"properties\":{\"matinhxa\":\"8.2375\",\"maxa\":2375},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Thuận (phường)",
- "truocsn": "Phường Đội Cấn, Xã Thái Long",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2356\",\"properties\":{\"matinhxa\":\"8.2370\",\"maxa\":2370},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bình Xa (xã)",
- "truocsn": "Xã Minh Hương, Xã Bình Xa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2342\",\"properties\":{\"matinhxa\":\"8.2356\",\"maxa\":2356},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cán Tỷ (xã)",
- "truocsn": "Xã Bát Đại Sơn, Xã Cán Tỷ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2389\",\"properties\":{\"matinhxa\":\"8.2403\",\"maxa\":2403},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cao Bồ (xã)",
- "truocsn": "xã Cao Bồ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2399\",\"properties\":{\"matinhxa\":\"8.2413\",\"maxa\":2413},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Chiêm Hóa (xã)",
- "truocsn": "Thị trấn Vĩnh Lộc, Xã Xuân Quang, Xã Phúc Thịnh, Xã Ngọc Hội, Xã Trung Hòa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2326\",\"properties\":{\"matinhxa\":\"8.2340\",\"maxa\":2340},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Côn Lôn (xã)",
- "truocsn": "Xã Sinh Long, Xã Côn Lôn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2322\",\"properties\":{\"matinhxa\":\"8.2336\",\"maxa\":2336},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đồng Tâm (xã)",
- "truocsn": "Xã Đồng Tiến, Xã Tân Phước, Xã Đồng Tâm",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2420\",\"properties\":{\"matinhxa\":\"8.2434\",\"maxa\":2434},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đông Thọ (xã)",
- "truocsn": "Xã Đồng Quý, Xã Quyết Thắng, Xã Đông Thọ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2362\",\"properties\":{\"matinhxa\":\"8.2376\",\"maxa\":2376},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đồng Văn (xã)",
- "truocsn": "Thị trấn Đồng Văn, Xã Tả Lủng (huyện Đồng Văn), Xã Tả Phìn, Xã Thài Phìn Tủng, Xã Pải Lủng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2374\",\"properties\":{\"matinhxa\":\"8.2388\",\"maxa\":2388},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đồng Yên (xã)",
- "truocsn": "Xã Vĩnh Phúc, Xã Đồng Yên",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2434\",\"properties\":{\"matinhxa\":\"8.2448\",\"maxa\":2448},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Du Già (xã)",
- "truocsn": "Xã Du Tiến, Xã Du Già",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2388\",\"properties\":{\"matinhxa\":\"8.2402\",\"maxa\":2402},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đường Hồng (xã)",
- "truocsn": "Xã Đường Âm, Xã Phú Nam, Xã Đường Hồng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2431\",\"properties\":{\"matinhxa\":\"8.2445\",\"maxa\":2445},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đường Thượng (xã)",
- "truocsn": "Xã Lũng Hồ, Xã Đường Thượng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2387\",\"properties\":{\"matinhxa\":\"8.2401\",\"maxa\":2401},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Giáp Trung (xã)",
- "truocsn": "xã Giáp Trung (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2404\",\"properties\":{\"matinhxa\":\"8.2418\",\"maxa\":2418},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hà Giang 1 (phường)",
- "truocsn": "Phường Nguyễn Trãi, Xã Phương Thiện, Xã Phương Độ, Phường Quang Trung",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2370\",\"properties\":{\"matinhxa\":\"8.2384\",\"maxa\":2384},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hà Giang 2 (phường)",
- "truocsn": "Phường Ngọc Hà, Phường Trần Phú, Phường Minh Khai, Phường Quang Trung, Xã Phong Quang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2369\",\"properties\":{\"matinhxa\":\"8.2383\",\"maxa\":2383},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hàm Yên (xã)",
- "truocsn": "Thị trấn Tân Yên, Xã Tân Thành (huyện Hàm Yên), Xã Bằng Cốc, Xã Nhân Mục",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2338\",\"properties\":{\"matinhxa\":\"8.2352\",\"maxa\":2352},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hồ Thầu (xã)",
- "truocsn": "Xã Nậm Khòa, Xã Nam Sơn, Xã Hồ Thầu",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2413\",\"properties\":{\"matinhxa\":\"8.2427\",\"maxa\":2427},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hòa An (xã)",
- "truocsn": "Xã Tân Thịnh, Xã Nhân Lý, Xã Hòa An",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2335\",\"properties\":{\"matinhxa\":\"8.2349\",\"maxa\":2349},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hoàng Su Phì (xã)",
- "truocsn": "Thị trấn Vinh Quang, Xã Bản Luốc, Xã Ngàm Đăng Vài, Xã Tụ Nhân, Xã Đản Ván",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2407\",\"properties\":{\"matinhxa\":\"8.2421\",\"maxa\":2421},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hồng Sơn (xã)",
- "truocsn": "Xã Chi Thiết, Xã Văn Phú, Xã Hồng Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2364\",\"properties\":{\"matinhxa\":\"8.2378\",\"maxa\":2378},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hồng Thái (xã)",
- "truocsn": "Xã Đà Vị, Xã Sơn Phú, Xã Hồng Thái",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2324\",\"properties\":{\"matinhxa\":\"8.2338\",\"maxa\":2338},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hùng An (xã)",
- "truocsn": "Xã Việt Hồng, Xã Tiên Kiều, Xã Hùng An",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2423\",\"properties\":{\"matinhxa\":\"8.2437\",\"maxa\":2437},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hùng Đức (xã)",
- "truocsn": "xã Hùng Đức (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2345\",\"properties\":{\"matinhxa\":\"8.2359\",\"maxa\":2359},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hùng Lợi (xã)",
- "truocsn": "Xã Trung Minh, Xã Hùng Lợi",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2349\",\"properties\":{\"matinhxa\":\"8.2363\",\"maxa\":2363},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Khâu Vai (xã)",
- "truocsn": "Xã Cán Chu Phìn, Xã Lũng Pù, Xã Khâu Vai",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2381\",\"properties\":{\"matinhxa\":\"8.2395\",\"maxa\":2395},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Khuôn Lùng (xã)",
- "truocsn": "Xã Nà Chì, Xã Khuôn Lùng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2418\",\"properties\":{\"matinhxa\":\"8.2432\",\"maxa\":2432},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Kiên Đài (xã)",
- "truocsn": "Xã Phú Bình, Xã Kiên Đài",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2333\",\"properties\":{\"matinhxa\":\"8.2347\",\"maxa\":2347},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Kiến Thiết (xã)",
- "truocsn": "xã Kiến Thiết (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2347\",\"properties\":{\"matinhxa\":\"8.2361\",\"maxa\":2361},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Kim Bình (xã)",
- "truocsn": "Xã Vinh Quang, Xã Bình Nhân, Xã Kim Bình",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2334\",\"properties\":{\"matinhxa\":\"8.2348\",\"maxa\":2348},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Lâm Bình (xã)",
- "truocsn": "Thị trấn Lăng Can, Xã Phúc Yên, Xã Xuân Lập",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2320\",\"properties\":{\"matinhxa\":\"8.2334\",\"maxa\":2334},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Lao Chải (xã)",
- "truocsn": "Xã Xín Chải, Xã Thanh Đức, Xã Lao Chải",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2398\",\"properties\":{\"matinhxa\":\"8.2412\",\"maxa\":2412},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Liên Hiệp (xã)",
- "truocsn": "Xã Hữu Sản, Xã Đức Xuân, Xã Liên Hiệp",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2433\",\"properties\":{\"matinhxa\":\"8.2447\",\"maxa\":2447},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Linh Hồ (xã)",
- "truocsn": "Xã Ngọc Linh, Xã Trung Thành, Xã Linh Hồ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2401\",\"properties\":{\"matinhxa\":\"8.2415\",\"maxa\":2415},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Lực Hành (xã)",
- "truocsn": "Xã Quý Quân, Xã Chiêu Yên, Xã Lực Hành",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2346\",\"properties\":{\"matinhxa\":\"8.2360\",\"maxa\":2360},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Lũng Cú (xã)",
- "truocsn": "Xã Má Lé, Xã Lũng Táo, Xã Lũng Cú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2373\",\"properties\":{\"matinhxa\":\"8.2387\",\"maxa\":2387},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lũng Phìn (xã)",
- "truocsn": "Xã Sủng Trái, Xã Hố Quáng Phìn, Xã Lũng Phìn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2376\",\"properties\":{\"matinhxa\":\"8.2390\",\"maxa\":2390},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Lùng Tám (xã)",
- "truocsn": "Xã Thái An, Xã Đông Hà, Xã Lùng Tám",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2392\",\"properties\":{\"matinhxa\":\"8.2406\",\"maxa\":2406},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Mậu Duệ (xã)",
- "truocsn": "Xã Ngam La, Xã Mậu Long, Xã Mậu Duệ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2385\",\"properties\":{\"matinhxa\":\"8.2399\",\"maxa\":2399},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Mèo Vạc (xã)",
- "truocsn": "Thị trấn Mèo Vạc, Xã Tả Lủng (huyện Mèo Vạc), Xã Giàng Chu Phìn, Xã Pả Vi",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2377\",\"properties\":{\"matinhxa\":\"8.2391\",\"maxa\":2391},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Minh Ngọc (xã)",
- "truocsn": "Xã Minh Ngọc, Xã Thượng Tân, Xã Yên Định",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2406\",\"properties\":{\"matinhxa\":\"8.2420\",\"maxa\":2420},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Minh Quang (xã)",
- "truocsn": "Xã Phúc Sơn, Xã Hồng Quang, Xã Minh Quang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2328\",\"properties\":{\"matinhxa\":\"8.2342\",\"maxa\":2342},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Minh Sơn (xã)",
- "truocsn": "xã Minh Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2403\",\"properties\":{\"matinhxa\":\"8.2417\",\"maxa\":2417},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Minh Tân (xã)",
- "truocsn": "xã Minh Tân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2394\",\"properties\":{\"matinhxa\":\"8.2408\",\"maxa\":2408},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Minh Thanh (xã)",
- "truocsn": "Xã Bình Yên, Xã Lương Thiện, Xã Minh Thanh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2359\",\"properties\":{\"matinhxa\":\"8.2373\",\"maxa\":2373},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Minh Xuân (phường)",
- "truocsn": "Phường Ỷ La, Phường Tân Hà, Phường Phan Thiết, Phường Minh Xuân, Phường Tân Quang, Xã Kim Phú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2317\",\"properties\":{\"matinhxa\":\"8.2331\",\"maxa\":2331},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Mỹ Lâm (phường)",
- "truocsn": "Phường Mỹ Lâm, Xã Mỹ Bằng, Xã Kim Phú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2354\",\"properties\":{\"matinhxa\":\"8.2368\",\"maxa\":2368},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Nà Hang (xã)",
- "truocsn": "Thị trấn Na Hang, Xã Năng Khả, Xã Thanh Tương",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2319\",\"properties\":{\"matinhxa\":\"8.2333\",\"maxa\":2333},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Nấm Dẩn (xã)",
- "truocsn": "Xã Chế Là, Xã Tả Nhìu, Xã Nấm Dẩn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2436\",\"properties\":{\"matinhxa\":\"8.2450\",\"maxa\":2450},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Nậm Dịch (xã)",
- "truocsn": "Xã Nậm Ty, Xã Tả Sử Choóng, Xã Nậm Dịch",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2412\",\"properties\":{\"matinhxa\":\"8.2426\",\"maxa\":2426},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Nghĩa Thuận (xã)",
- "truocsn": "Xã Thanh Vân, Xã Nghĩa Thuận",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2368\",\"properties\":{\"matinhxa\":\"8.2382\",\"maxa\":2382},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Ngọc Đường (xã)",
- "truocsn": "Xã Ngọc Đường, Xã Yên Định",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2371\",\"properties\":{\"matinhxa\":\"8.2385\",\"maxa\":2385},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Ngọc Long (xã)",
- "truocsn": "xã Ngọc Long (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2386\",\"properties\":{\"matinhxa\":\"8.2400\",\"maxa\":2400},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Nhữ Khê (xã)",
- "truocsn": "Xã Nhữ Hán, Xã Đội Bình, Xã Nhữ Khê",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2357\",\"properties\":{\"matinhxa\":\"8.2371\",\"maxa\":2371},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Niêm Sơn (xã)",
- "truocsn": "Xã Niêm Tòng, Xã Niêm Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2382\",\"properties\":{\"matinhxa\":\"8.2396\",\"maxa\":2396},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nông Tiến (phường)",
- "truocsn": "Phường Nông Tiến, Xã Tràng Đà, Xã Thái Bình",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2318\",\"properties\":{\"matinhxa\":\"8.2332\",\"maxa\":2332},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Pà Vầy Sủ (xã)",
- "truocsn": "Thị trấn Cốc Pài, Xã Nàn Ma, Xã Bản Ngò, Xã Pà Vầy Sủ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2435\",\"properties\":{\"matinhxa\":\"8.2449\",\"maxa\":2449},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Phố Bảng (xã)",
- "truocsn": "Thị trấn Phố Bảng, Xã Phố Là, Xã Phố Cáo, Xã Lũng Thầu",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2440\",\"properties\":{\"matinhxa\":\"8.2454\",\"maxa\":2454},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Phú Linh (xã)",
- "truocsn": "Xã Kim Thạch, Xã Kim Linh, Xã Phú Linh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2372\",\"properties\":{\"matinhxa\":\"8.2386\",\"maxa\":2386},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Phú Lương (xã)",
- "truocsn": "Xã Đại Phú, Xã Tam Đa, Xã Phú Lương",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2366\",\"properties\":{\"matinhxa\":\"8.2380\",\"maxa\":2380},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Phù Lưu (xã)",
- "truocsn": "Xã Minh Dân, Xã Phù Lưu",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2340\",\"properties\":{\"matinhxa\":\"8.2354\",\"maxa\":2354},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Pờ Ly Ngài (xã)",
- "truocsn": "Xã Sán Sả Hồ, Xã Nàng Đôn, Xã Pờ Ly Ngài",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2411\",\"properties\":{\"matinhxa\":\"8.2425\",\"maxa\":2425},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Quản Bạ (xã)",
- "truocsn": "Thị trấn Tam Sơn, Xã Quyết Tiến, Xã Quản Bạ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2391\",\"properties\":{\"matinhxa\":\"8.2405\",\"maxa\":2405},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Quang Bình (xã)",
- "truocsn": "Thị trấn Yên Bình, Xã Tân Nam",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2438\",\"properties\":{\"matinhxa\":\"8.2452\",\"maxa\":2452},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Quảng Nguyên (xã)",
- "truocsn": "xã Quảng Nguyên (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2417\",\"properties\":{\"matinhxa\":\"8.2431\",\"maxa\":2431},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Sà Phìn (xã)",
- "truocsn": "Xã Sủng Là, Xã Sính Lủng, Xã Sảng Tủng, Xã Sà Phìn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2375\",\"properties\":{\"matinhxa\":\"8.2389\",\"maxa\":2389},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Sơn Dương (xã)",
- "truocsn": "Thị trấn Sơn Dương, Xã Hợp Thành, Xã Phúc Ứng, Xã Tú Thịnh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2358\",\"properties\":{\"matinhxa\":\"8.2372\",\"maxa\":2372},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Sơn Thủy (xã)",
- "truocsn": "Xã Ninh Lai, Xã Thiện Kế, Xã Sơn Nam",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2365\",\"properties\":{\"matinhxa\":\"8.2379\",\"maxa\":2379},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Sơn Vĩ (xã)",
- "truocsn": "Xã Thượng Phùng, Xã Xín Cái, Xã Sơn Vĩ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2379\",\"properties\":{\"matinhxa\":\"8.2393\",\"maxa\":2393},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Sủng Máng (xã)",
- "truocsn": "Xã Lũng Chinh, Xã Sủng Trà, Xã Sủng Máng",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2378\",\"properties\":{\"matinhxa\":\"8.2392\",\"maxa\":2392},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Hà Lang, Xã Tân An",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2332\",\"properties\":{\"matinhxa\":\"8.2346\",\"maxa\":2346},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tân Long (xã)",
- "truocsn": "Xã Tân Tiến (huyện Yên Sơn), Xã Tân Long",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2352\",\"properties\":{\"matinhxa\":\"8.2366\",\"maxa\":2366},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tân Mỹ (xã)",
- "truocsn": "Xã Hùng Mỹ, Xã Tân Mỹ",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2330\",\"properties\":{\"matinhxa\":\"8.2344\",\"maxa\":2344},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tân Quang (xã)",
- "truocsn": "Xã Tân Thành (huyện Bắc Quang), Xã Tân Lập, Xã Tân Quang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2421\",\"properties\":{\"matinhxa\":\"8.2435\",\"maxa\":2435},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tân Thanh (xã)",
- "truocsn": "Xã Kháng Nhật, Xã Hợp Hòa, Xã Tân Thanh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2363\",\"properties\":{\"matinhxa\":\"8.2377\",\"maxa\":2377},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Tân Tiến (huyện Hoàng Su Phì), Xã Bản Nhùng, Xã Túng Sán",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2410\",\"properties\":{\"matinhxa\":\"8.2424\",\"maxa\":2424},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tân Trào (xã)",
- "truocsn": "Xã Kim Quan, Xã Trung Yên, Xã Tân Trào",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2360\",\"properties\":{\"matinhxa\":\"8.2374\",\"maxa\":2374},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tân Trịnh (xã)",
- "truocsn": "Xã Tân Bắc, Xã Tân Trịnh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2425\",\"properties\":{\"matinhxa\":\"8.2439\",\"maxa\":2439},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tát Ngà (xã)",
- "truocsn": "Xã Nậm Ban, Xã Tát Ngà",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2380\",\"properties\":{\"matinhxa\":\"8.2394\",\"maxa\":2394},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Thái Bình (xã)",
- "truocsn": "Xã Phú Thịnh, Xã Tiến Bộ, Xã Thái Bình",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2353\",\"properties\":{\"matinhxa\":\"8.2367\",\"maxa\":2367},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Thái Hòa (xã)",
- "truocsn": "Xã Đức Ninh, Xã Thái Hòa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2344\",\"properties\":{\"matinhxa\":\"8.2358\",\"maxa\":2358},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Thái Sơn (xã)",
- "truocsn": "Xã Thành Long, Xã Thái Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2343\",\"properties\":{\"matinhxa\":\"8.2357\",\"maxa\":2357},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Thắng Mố (xã)",
- "truocsn": "Xã Sủng Cháng, Xã Sủng Thài, Xã Thắng Mố",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2439\",\"properties\":{\"matinhxa\":\"8.2453\",\"maxa\":2453},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Thàng Tín (xã)",
- "truocsn": "Xã Pố Lồ, Xã Thèn Chu Phìn, Xã Thàng Tín",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2409\",\"properties\":{\"matinhxa\":\"8.2423\",\"maxa\":2423},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Thanh Thủy (xã)",
- "truocsn": "Xã Phương Tiến, Xã Thanh Thủy",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2397\",\"properties\":{\"matinhxa\":\"8.2411\",\"maxa\":2411},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Thông Nguyên (xã)",
- "truocsn": "Xã Xuân Minh, Xã Thông Nguyên",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2414\",\"properties\":{\"matinhxa\":\"8.2428\",\"maxa\":2428},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Thuận Hòa (xã)",
- "truocsn": "xã Thuận Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2395\",\"properties\":{\"matinhxa\":\"8.2409\",\"maxa\":2409},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Thượng Lâm (xã)",
- "truocsn": "Xã Khuôn Hà, Xã Thượng Lâm",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2325\",\"properties\":{\"matinhxa\":\"8.2339\",\"maxa\":2339},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Thượng Nông (xã)",
- "truocsn": "Xã Thượng Giáp, Xã Thượng Nông",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2321\",\"properties\":{\"matinhxa\":\"8.2335\",\"maxa\":2335},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Thượng Sơn (xã)",
- "truocsn": "xã Thượng Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2400\",\"properties\":{\"matinhxa\":\"8.2414\",\"maxa\":2414},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tiên Nguyên (xã)",
- "truocsn": "xã Tiên Nguyên (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2424\",\"properties\":{\"matinhxa\":\"8.2438\",\"maxa\":2438},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tiên Yên (xã)",
- "truocsn": "Xã Vĩ Thượng, Xã Hương Sơn, Xã Tiên Yên",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2428\",\"properties\":{\"matinhxa\":\"8.2442\",\"maxa\":2442},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Tri Phú (xã)",
- "truocsn": "Xã Linh Phú, Xã Tri Phú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2336\",\"properties\":{\"matinhxa\":\"8.2350\",\"maxa\":2350},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Trung Hà (xã)",
- "truocsn": "xã Trung Hà (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2329\",\"properties\":{\"matinhxa\":\"8.2343\",\"maxa\":2343},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Trung Sơn (xã)",
- "truocsn": "Xã Đạo Viện, Xã Công Đa, Xã Trung Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2350\",\"properties\":{\"matinhxa\":\"8.2364\",\"maxa\":2364},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Trung Thịnh (xã)",
- "truocsn": "Xã Cốc Rế, Xã Thu Tà, Xã Trung Thịnh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2416\",\"properties\":{\"matinhxa\":\"8.2430\",\"maxa\":2430},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Trường Sinh (xã)",
- "truocsn": "Xã Hào Phú, Xã Đông Lợi, Xã Trường Sinh",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2367\",\"properties\":{\"matinhxa\":\"8.2381\",\"maxa\":2381},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Tùng Bá (xã)",
- "truocsn": "xã Tùng Bá (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2396\",\"properties\":{\"matinhxa\":\"8.2410\",\"maxa\":2410},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Tùng Vài (xã)",
- "truocsn": "Xã Cao Mã Pờ, Xã Tả Ván, Xã Tùng Vài",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2390\",\"properties\":{\"matinhxa\":\"8.2404\",\"maxa\":2404},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Vị Xuyên (xã)",
- "truocsn": "Thị trấn Vị Xuyên, Thị trấn Nông trường Việt Lâm, Xã Đạo Đức, Xã Việt Lâm",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2393\",\"properties\":{\"matinhxa\":\"8.2407\",\"maxa\":2407},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Việt Lâm (xã)",
- "truocsn": "Xã Quảng Ngần, Xã Việt Lâm",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2402\",\"properties\":{\"matinhxa\":\"8.2416\",\"maxa\":2416},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Vĩnh Tuy (xã)",
- "truocsn": "Thị trấn Vĩnh Tuy, Xã Vĩnh Hảo, Xã Đông Thành",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2432\",\"properties\":{\"matinhxa\":\"8.2446\",\"maxa\":2446},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Xín Mần (xã)",
- "truocsn": "Xã Thèn Phàng, Xã Nàn Xỉn, Xã Bản Díu, Xã Chí Cà, Xã Xín Mần",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2415\",\"properties\":{\"matinhxa\":\"8.2429\",\"maxa\":2429},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Xuân Giang (xã)",
- "truocsn": "Xã Nà Khương, Xã Xuân Giang",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2427\",\"properties\":{\"matinhxa\":\"8.2441\",\"maxa\":2441},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Xuân Vân (xã)",
- "truocsn": "Xã Trung Trực, Xã Phúc Ninh, Xã Xuân Vân",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2348\",\"properties\":{\"matinhxa\":\"8.2362\",\"maxa\":2362},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Yên Cường (xã)",
- "truocsn": "Xã Phiêng Luông, Xã Yên Cường",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2430\",\"properties\":{\"matinhxa\":\"8.2444\",\"maxa\":2444},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Yên Hoa (xã)",
- "truocsn": "Xã Khâu Tinh, Xã Yên Hoa",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2323\",\"properties\":{\"matinhxa\":\"8.2337\",\"maxa\":2337},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Yên Lập (xã)",
- "truocsn": "Xã Bình Phú, Xã Yên Lập",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2331\",\"properties\":{\"matinhxa\":\"8.2345\",\"maxa\":2345},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Yên Minh (xã)",
- "truocsn": "Thị trấn Yên Minh, Xã Lao Và Chải, Xã Hữu Vinh, Xã Đông Minh, Xã Vần Chải",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2383\",\"properties\":{\"matinhxa\":\"8.2397\",\"maxa\":2397},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Yên Nguyên (xã)",
- "truocsn": "Xã Hòa Phú, Xã Yên Nguyên",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2337\",\"properties\":{\"matinhxa\":\"8.2351\",\"maxa\":2351},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Yên Phú (xã)",
- "truocsn": "Xã Yên Lâm, Xã Yên Phú",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2341\",\"properties\":{\"matinhxa\":\"8.2355\",\"maxa\":2355},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Yên Sơn (xã)",
- "truocsn": "Thị trấn Yên Sơn, Xã Tứ Quận, Xã Lang Quán, Xã Chân Sơn",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2351\",\"properties\":{\"matinhxa\":\"8.2365\",\"maxa\":2365},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Yên Thành (xã)",
- "truocsn": "Xã Bản Rịa, Xã Yên Thành",
- "provinceName": "tỉnh Tuyên Quang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2437\",\"properties\":{\"matinhxa\":\"8.2451\",\"maxa\":2451},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "A Mú Sung (xã)",
- "truocsn": "Xã Nậm Chạc, Xã A Mú Sung",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.977\",\"properties\":{\"matinhxa\":\"9.988\",\"maxa\":988},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Âu Lâu (phường)",
- "truocsn": "Phường Hợp Minh, Xã Giới Phiên, Xã Minh Quân, Xã Âu Lâu",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.847\",\"properties\":{\"matinhxa\":\"9.858\",\"maxa\":858},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bắc Hà (xã)",
- "truocsn": "Thị trấn Bắc Hà, Xã Na Hối, Xã Thải Giàng Phố, Xã Bản Phố, Xã Hoàng Thu Phố, Xã Nậm Mòn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.931\",\"properties\":{\"matinhxa\":\"9.942\",\"maxa\":942},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bản Hồ (xã)",
- "truocsn": "Xã Thanh Bình (thị xã Sa Pa), Xã Bản Hồ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1002\",\"properties\":{\"matinhxa\":\"9.1013\",\"maxa\":1013},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bản Lầu (xã)",
- "truocsn": "Xã Bản Sen, Xã Lùng Vai, Xã Bản Lầu",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.928\",\"properties\":{\"matinhxa\":\"9.939\",\"maxa\":939},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bản Liền (xã)",
- "truocsn": "Xã Nậm Khánh, Xã Bản Liền",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.934\",\"properties\":{\"matinhxa\":\"9.945\",\"maxa\":945},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bản Xèo (xã)",
- "truocsn": "Xã Pa Cheo, Xã Mường Vi, Xã Bản Xèo",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.993\",\"properties\":{\"matinhxa\":\"9.1004\",\"maxa\":1004},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bảo Ái (xã)",
- "truocsn": "Xã Cảm Ân, Xã Mông Sơn, Xã Tân Nguyên, Xã Bảo Ái",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.904\",\"properties\":{\"matinhxa\":\"9.915\",\"maxa\":915},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bảo Hà (xã)",
- "truocsn": "Xã Kim Sơn, Xã Cam Cọn, Xã Tân An, Xã Tân Thượng, Xã Bảo Hà",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.954\",\"properties\":{\"matinhxa\":\"9.965\",\"maxa\":965},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bảo Nhai (xã)",
- "truocsn": "Xã Nậm Đét, Xã Cốc Ly, Xã Bảo Nhai",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.935\",\"properties\":{\"matinhxa\":\"9.946\",\"maxa\":946},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bảo Thắng (xã)",
- "truocsn": "Thị trấn Phố Lu, Xã Sơn Hà, Xã Sơn Hải, Xã Thái Niên",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.942\",\"properties\":{\"matinhxa\":\"9.953\",\"maxa\":953},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bảo Yên (xã)",
- "truocsn": "Thị trấn Phố Ràng, Xã Yên Sơn, Xã Lương Sơn, Xã Xuân Thượng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.951\",\"properties\":{\"matinhxa\":\"9.962\",\"maxa\":962},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bát Xát (xã)",
- "truocsn": "Thị trấn Bát Xát, Xã Bản Vược, Xã Bản Qua, Xã Phìn Ngan, Xã Quang Kim",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.976\",\"properties\":{\"matinhxa\":\"9.987\",\"maxa\":987},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cam Đường (phường)",
- "truocsn": "Phường Nam Cường (thành phố Lào Cai), Phường Xuân Tăng, Phường Pom Hán, Phường Bắc Cường, Phường Bắc Lệnh, Phường Bình Minh, Xã Cam Đường",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.907\",\"properties\":{\"matinhxa\":\"9.918\",\"maxa\":918},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cảm Nhân (xã)",
- "truocsn": "Xã Xuân Long, Xã Ngọc Chấn, Xã Cảm Nhân",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.903\",\"properties\":{\"matinhxa\":\"9.914\",\"maxa\":914},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cao Sơn (xã)",
- "truocsn": "Xã Lùng Khấu Nhin, Xã Tả Thàng, Xã La Pan Tẩn, Xã Cao Sơn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.926\",\"properties\":{\"matinhxa\":\"9.937\",\"maxa\":937},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Cát Thịnh (xã)",
- "truocsn": "xã Cát Thịnh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.896\",\"properties\":{\"matinhxa\":\"9.907\",\"maxa\":907},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cầu Thia (phường)",
- "truocsn": "Phường Cầu Thia, Xã Thanh Lương, Xã Thạch Lương, Xã Phúc Sơn, Xã Hạnh Sơn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.712\",\"properties\":{\"matinhxa\":\"9.723\",\"maxa\":723},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Chấn Thịnh (xã)",
- "truocsn": "Xã Tân Thịnh (huyện Văn Chấn), Xã Đại Lịch, Xã Chấn Thịnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.897\",\"properties\":{\"matinhxa\":\"9.908\",\"maxa\":908},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Châu Quế (xã)",
- "truocsn": "Xã Châu Quế Thượng, Xã Châu Quế Hạ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.802\",\"properties\":{\"matinhxa\":\"9.813\",\"maxa\":813},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Chế Tạo (xã)",
- "truocsn": "xã Chế Tạo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.842\",\"properties\":{\"matinhxa\":\"9.853\",\"maxa\":853},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Chiềng Ken (xã)",
- "truocsn": "Xã Nậm Tha, Xã Chiềng Ken",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.961\",\"properties\":{\"matinhxa\":\"9.972\",\"maxa\":972},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Cốc Lầu (xã)",
- "truocsn": "Xã Nậm Lúc, Xã Bản Cái, Xã Cốc Lầu",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.939\",\"properties\":{\"matinhxa\":\"9.950\",\"maxa\":950},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Cốc San (xã)",
- "truocsn": "Xã Đồng Tuyển, Xã Tòng Sành, Xã Cốc San",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.995\",\"properties\":{\"matinhxa\":\"9.1006\",\"maxa\":1006},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Dền Sáng (xã)",
- "truocsn": "Xã Dền Thàng, Xã Sàng Ma Sáo, Xã Dền Sáng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.992\",\"properties\":{\"matinhxa\":\"9.1003\",\"maxa\":1003},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đông Cuông (xã)",
- "truocsn": "Xã Quang Minh, Xã An Bình, Xã Đông An, Xã Đông Cuông",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.803\",\"properties\":{\"matinhxa\":\"9.814\",\"maxa\":814},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Dương Quỳ (xã)",
- "truocsn": "Xã Thẳm Dương, Xã Dương Quỳ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.973\",\"properties\":{\"matinhxa\":\"9.984\",\"maxa\":984},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Gia Hội (xã)",
- "truocsn": "Xã Nậm Búng, Xã Nậm Lành, Xã Gia Hội",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.893\",\"properties\":{\"matinhxa\":\"9.904\",\"maxa\":904},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Gia Phú (xã)",
- "truocsn": "Xã Xuân Giao, Xã Thống Nhất, Xã Gia Phú",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.946\",\"properties\":{\"matinhxa\":\"9.957\",\"maxa\":957},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hạnh Phúc (xã)",
- "truocsn": "Thị trấn Trạm Tấu, Xã Bản Công, Xã Hát Lừu, Xã Xà Hồ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.867\",\"properties\":{\"matinhxa\":\"9.878\",\"maxa\":878},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hợp Thành (xã)",
- "truocsn": "Xã Tả Phời, Xã Hợp Thành",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.923\",\"properties\":{\"matinhxa\":\"9.934\",\"maxa\":934},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hưng Khánh (xã)",
- "truocsn": "Xã Hồng Ca, Xã Hưng Khánh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.849\",\"properties\":{\"matinhxa\":\"9.860\",\"maxa\":860},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Khánh Hòa (xã)",
- "truocsn": "Xã Tô Mậu, Xã An Lạc, Xã Động Quan, Xã Khánh Hòa",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.717\",\"properties\":{\"matinhxa\":\"9.728\",\"maxa\":728},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Khánh Yên (xã)",
- "truocsn": "Xã Khánh Yên Trung, Xã Liêm Phú, Xã Khánh Yên Hạ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.972\",\"properties\":{\"matinhxa\":\"9.983\",\"maxa\":983},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Khao Mang (xã)",
- "truocsn": "Xã Hồ Bốn, Xã Khao Mang",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.840\",\"properties\":{\"matinhxa\":\"9.851\",\"maxa\":851},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Lâm Giang (xã)",
- "truocsn": "Xã Lang Thíp, Xã Lâm Giang",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.801\",\"properties\":{\"matinhxa\":\"9.812\",\"maxa\":812},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Lâm Thượng (xã)",
- "truocsn": "Xã Mai Sơn, Xã Khánh Thiện, Xã Tân Phượng, Xã Lâm Thượng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.714\",\"properties\":{\"matinhxa\":\"9.725\",\"maxa\":725},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lào Cai (phường)",
- "truocsn": "Phường Duyên Hải, Phường Cốc Lếu, Phường Kim Tân, Phường Lào Cai, Xã Vạn Hòa, Xã Bản Phiệt",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.975\",\"properties\":{\"matinhxa\":\"9.986\",\"maxa\":986},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lao Chải (xã)",
- "truocsn": "xã Lao Chải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.841\",\"properties\":{\"matinhxa\":\"9.852\",\"maxa\":852},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Liên Sơn (xã)",
- "truocsn": "Thị trấn Nông trường Liên Sơn, Xã Sơn A, Xã Nghĩa Phúc",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.889\",\"properties\":{\"matinhxa\":\"9.900\",\"maxa\":900},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lục Yên (xã)",
- "truocsn": "Thị trấn Yên Thế, Xã Minh Xuân, Xã Yên Thắng, Xã Liễu Đô",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.713\",\"properties\":{\"matinhxa\":\"9.724\",\"maxa\":724},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Lùng Phình (xã)",
- "truocsn": "Xã Tả Van Chư, Xã Lùng Phình, Xã Lùng Thẩn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.932\",\"properties\":{\"matinhxa\":\"9.943\",\"maxa\":943},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Lương Thịnh (xã)",
- "truocsn": "Xã Hưng Thịnh, Xã Lương Thịnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.846\",\"properties\":{\"matinhxa\":\"9.857\",\"maxa\":857},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Mậu A (xã)",
- "truocsn": "Thị trấn Mậu A, Xã Yên Thái, Xã An Thịnh, Xã Mậu Đông, Xã Ngòi A",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.756\",\"properties\":{\"matinhxa\":\"9.767\",\"maxa\":767},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Minh Lương (xã)",
- "truocsn": "Xã Nậm Xây, Xã Minh Lương",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.974\",\"properties\":{\"matinhxa\":\"9.985\",\"maxa\":985},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Mỏ Vàng (xã)",
- "truocsn": "Xã An Lương, Xã Mỏ Vàng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.837\",\"properties\":{\"matinhxa\":\"9.848\",\"maxa\":848},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Mù Cang Chải (xã)",
- "truocsn": "Thị trấn Mù Cang Chải, Xã Kim Nọi, Xã Mồ Dề, Xã Chế Cu Nha",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.838\",\"properties\":{\"matinhxa\":\"9.849\",\"maxa\":849},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Mường Bo (xã)",
- "truocsn": "Xã Liên Minh, Xã Mường Bo",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.956\",\"properties\":{\"matinhxa\":\"9.967\",\"maxa\":967},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mường Hum (xã)",
- "truocsn": "Xã Nậm Pung, Xã Trung Lèng Hồ, Xã Mường Hum",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.994\",\"properties\":{\"matinhxa\":\"9.1005\",\"maxa\":1005},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Mường Khương (xã)",
- "truocsn": "Thị trấn Mường Khương, Xã Thanh Bình (huyện Mường Khương), Xã Nậm Chảy, Xã Tung Chung Phố, Xã Nấm Lư",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.925\",\"properties\":{\"matinhxa\":\"9.936\",\"maxa\":936},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Mường Lai (xã)",
- "truocsn": "Xã An Phú, Xã Vĩnh Lạc, Xã Minh Tiến, Xã Mường Lai",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.715\",\"properties\":{\"matinhxa\":\"9.726\",\"maxa\":726},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Nậm Chày (xã)",
- "truocsn": "Xã Dần Thàng, Xã Nậm Chày",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.959\",\"properties\":{\"matinhxa\":\"9.970\",\"maxa\":970},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Nậm Có (xã)",
- "truocsn": "xã Nậm Có (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.839\",\"properties\":{\"matinhxa\":\"9.850\",\"maxa\":850},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Nam Cường (phường)",
- "truocsn": "Phường Nam Cường (thành phố Yên Bái), Xã Minh Bảo, Xã Tuy Lộc, Xã Cường Thịnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.710\",\"properties\":{\"matinhxa\":\"9.721\",\"maxa\":721},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Nậm Xé (xã)",
- "truocsn": "xã Nậm Xé (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.960\",\"properties\":{\"matinhxa\":\"9.971\",\"maxa\":971},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Nghĩa Đô (xã)",
- "truocsn": "Xã Tân Tiến, Xã Vĩnh Yên, Xã Nghĩa Đô",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.948\",\"properties\":{\"matinhxa\":\"9.959\",\"maxa\":959},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Nghĩa Lộ (phường)",
- "truocsn": "Phường Tân An, Phường Pú Trạng, Xã Nghĩa An, Xã Nghĩa Sơn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.906\",\"properties\":{\"matinhxa\":\"9.917\",\"maxa\":917},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Nghĩa Tâm (xã)",
- "truocsn": "Xã Bình Thuận, Xã Minh An, Xã Nghĩa Tâm",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.900\",\"properties\":{\"matinhxa\":\"9.911\",\"maxa\":911},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Ngũ Chỉ Sơn (xã)",
- "truocsn": "xã Ngũ Chỉ Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.997\",\"properties\":{\"matinhxa\":\"9.1008\",\"maxa\":1008},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Pha Long (xã)",
- "truocsn": "Xã Tả Ngài Chồ, Xã Dìn Chin, Xã Tả Gia Khâu, Xã Pha Long",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.924\",\"properties\":{\"matinhxa\":\"9.935\",\"maxa\":935},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phình Hồ (xã)",
- "truocsn": "Xã Làng Nhì, Xã Bản Mù, Xã Phình Hồ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.868\",\"properties\":{\"matinhxa\":\"9.879\",\"maxa\":879},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phong Dụ Hạ (xã)",
- "truocsn": "Xã Xuân Tầm, Xã Phong Dụ Hạ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.804\",\"properties\":{\"matinhxa\":\"9.815\",\"maxa\":815},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phong Dụ Thượng (xã)",
- "truocsn": "xã Phong Dụ Thượng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.806\",\"properties\":{\"matinhxa\":\"9.817\",\"maxa\":817},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Phong Hải (xã)",
- "truocsn": "Thị trấn Nông trường Phong Hải, Xã Bản Cầm",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.940\",\"properties\":{\"matinhxa\":\"9.951\",\"maxa\":951},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Phúc Khánh (xã)",
- "truocsn": "Xã Việt Tiến, Xã Phúc Khánh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.955\",\"properties\":{\"matinhxa\":\"9.966\",\"maxa\":966},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Phúc Lợi (xã)",
- "truocsn": "Xã Trúc Lâu, Xã Trung Tâm, Xã Phúc Lợi",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.755\",\"properties\":{\"matinhxa\":\"9.766\",\"maxa\":766},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Púng Luông (xã)",
- "truocsn": "Xã Nậm Khắt, Xã La Pán Tẩn, Xã Dế Xu Phình, Xã Púng Luông",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.843\",\"properties\":{\"matinhxa\":\"9.854\",\"maxa\":854},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Quy Mông (xã)",
- "truocsn": "Xã Kiên Thành, Xã Y Can, Xã Quy Mông",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.845\",\"properties\":{\"matinhxa\":\"9.856\",\"maxa\":856},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Sa Pa (phường)",
- "truocsn": "Phường Hàm Rồng, Phường Ô Quý Hồ, Phường Sa Pả, Phường Cầu Mây, Phường Phan Si Păng, Phường Sa Pa",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.996\",\"properties\":{\"matinhxa\":\"9.1007\",\"maxa\":1007},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Si Ma Cai (xã)",
- "truocsn": "Thị trấn Si Ma Cai, Xã Sán Chải, Xã Nàn Sán, Xã Cán Cấu, Xã Quan Hồ Thẩn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.929\",\"properties\":{\"matinhxa\":\"9.940\",\"maxa\":940},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Sín Chéng (xã)",
- "truocsn": "Xã Bản Mế, Xã Thào Chư Phìn, Xã Nàn Sín, Xã Sín Chéng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.930\",\"properties\":{\"matinhxa\":\"9.941\",\"maxa\":941},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Sơn Lương (xã)",
- "truocsn": "Xã Nậm Mười, Xã Sùng Đô, Xã Suối Quyền, Xã Sơn Lương",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.894\",\"properties\":{\"matinhxa\":\"9.905\",\"maxa\":905},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tả Củ Tỷ (xã)",
- "truocsn": "Xã Lùng Cải, Xã Tả Củ Tỷ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.933\",\"properties\":{\"matinhxa\":\"9.944\",\"maxa\":944},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tả Phìn (xã)",
- "truocsn": "Xã Trung Chải, Xã Tả Phìn",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.998\",\"properties\":{\"matinhxa\":\"9.1009\",\"maxa\":1009},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Tả Van (xã)",
- "truocsn": "Xã Hoàng Liên, Xã Mường Hoa, Xã Tả Van",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.999\",\"properties\":{\"matinhxa\":\"9.1010\",\"maxa\":1010},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tà Xi Láng (xã)",
- "truocsn": "xã Tà Xi Láng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.888\",\"properties\":{\"matinhxa\":\"9.899\",\"maxa\":899},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tân Hợp (xã)",
- "truocsn": "Xã Đại Sơn, Xã Nà Hẩu, Xã Tân Hợp",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.805\",\"properties\":{\"matinhxa\":\"9.816\",\"maxa\":816},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Tân Lĩnh (xã)",
- "truocsn": "Xã Minh Chuẩn, Xã Tân Lập, Xã Phan Thanh, Xã Khai Trung, Xã Tân Lĩnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.716\",\"properties\":{\"matinhxa\":\"9.727\",\"maxa\":727},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Tằng Loỏng (xã)",
- "truocsn": "Thị trấn Tằng Loỏng, Xã Phú Nhuận",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.943\",\"properties\":{\"matinhxa\":\"9.954\",\"maxa\":954},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thác Bà (xã)",
- "truocsn": "Thị trấn Thác Bà, Xã Vũ Linh, Xã Bạch Hà, Xã Hán Đà, Xã Vĩnh Kiên, Xã Đại Minh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.902\",\"properties\":{\"matinhxa\":\"9.913\",\"maxa\":913},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thượng Bằng La (xã)",
- "truocsn": "Thị trấn Nông trường Trần Phú, Xã Thượng Bằng La",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.899\",\"properties\":{\"matinhxa\":\"9.910\",\"maxa\":910},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Thượng Hà (xã)",
- "truocsn": "Xã Điện Quan, Xã Minh Tân, Xã Thượng Hà",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.950\",\"properties\":{\"matinhxa\":\"9.961\",\"maxa\":961},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trạm Tấu (xã)",
- "truocsn": "Xã Pá Lau, Xã Pá Hu, Xã Túc Đán, Xã Trạm Tấu",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.887\",\"properties\":{\"matinhxa\":\"9.898\",\"maxa\":898},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Trấn Yên (xã)",
- "truocsn": "Thị trấn Cổ Phúc, Xã Báo Đáp, Xã Tân Đồng, Xã Thành Thịnh, Xã Hòa Cuông, Xã Minh Quán",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.844\",\"properties\":{\"matinhxa\":\"9.855\",\"maxa\":855},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Trịnh Tường (xã)",
- "truocsn": "Xã Cốc Mỳ, Xã Trịnh Tường",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.990\",\"properties\":{\"matinhxa\":\"9.1001\",\"maxa\":1001},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Trung Tâm (phường)",
- "truocsn": "Phường Trung Tâm, Xã Phù Nham, Xã Nghĩa Lợi, Xã Nghĩa Lộ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.711\",\"properties\":{\"matinhxa\":\"9.722\",\"maxa\":722},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tú Lệ (xã)",
- "truocsn": "Xã Cao Phạ, Xã Tú Lệ",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.890\",\"properties\":{\"matinhxa\":\"9.901\",\"maxa\":901},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Văn Bàn (xã)",
- "truocsn": "Thị trấn Khánh Yên, Xã Khánh Yên Thượng, Xã Sơn Thuỷ, Xã Làng Giàng, Xã Hòa Mạc",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.957\",\"properties\":{\"matinhxa\":\"9.968\",\"maxa\":968},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Văn Chấn (xã)",
- "truocsn": "Thị trấn Sơn Thịnh, Xã Đồng Khê, Xã Suối Bu, Xã Suối Giàng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.895\",\"properties\":{\"matinhxa\":\"9.906\",\"maxa\":906},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Văn Phú (phường)",
- "truocsn": "Phường Yên Thịnh, Xã Tân Thịnh (thành phố Yên Bái), Xã Văn Phú, Xã Phú Thịnh",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.848\",\"properties\":{\"matinhxa\":\"9.859\",\"maxa\":859},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Việt Hồng (xã)",
- "truocsn": "Xã Việt Cường, Xã Vân Hội, Xã Việt Hồng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.866\",\"properties\":{\"matinhxa\":\"9.877\",\"maxa\":877},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Võ Lao (xã)",
- "truocsn": "Xã Nậm Mả, Xã Nậm Dạng, Xã Võ Lao",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.958\",\"properties\":{\"matinhxa\":\"9.969\",\"maxa\":969},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Xuân Ái (xã)",
- "truocsn": "Xã Đại Phác, Xã Yên Phú, Xã Yên Hợp, Xã Viễn Sơn, Xã Xuân Ái",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.822\",\"properties\":{\"matinhxa\":\"9.833\",\"maxa\":833},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Xuân Hòa (xã)",
- "truocsn": "Xã Tân Dương, Xã Xuân Hòa",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.949\",\"properties\":{\"matinhxa\":\"9.960\",\"maxa\":960},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Xuân Quang (xã)",
- "truocsn": "Xã Phong Niên, Xã Trì Quang, Xã Xuân Quang",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.947\",\"properties\":{\"matinhxa\":\"9.958\",\"maxa\":958},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Y Tý (xã)",
- "truocsn": "Xã A Lù, Xã Y Tý",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.991\",\"properties\":{\"matinhxa\":\"9.1002\",\"maxa\":1002},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Yên Bái (phường)",
- "truocsn": "Phường Đồng Tâm, Phường Yên Ninh, Phường Minh Tân, Phường Nguyễn Thái Học, Phường Hồng Hà",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.709\",\"properties\":{\"matinhxa\":\"9.720\",\"maxa\":720},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Yên Bình (xã)",
- "truocsn": "Thị trấn Yên Bình, Xã Tân Hương, Xã Thịnh Hưng, Xã Đại Đồng",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.901\",\"properties\":{\"matinhxa\":\"9.912\",\"maxa\":912},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Yên Thành (xã)",
- "truocsn": "Xã Phúc Ninh, Xã Mỹ Gia, Xã Xuân Lai, Xã Phúc An, Xã Yên Thành",
- "provinceName": "tỉnh Lào Cai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.905\",\"properties\":{\"matinhxa\":\"9.916\",\"maxa\":916},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Búng Lao (xã)",
- "truocsn": "Xã Ẳng Tở, Xã Chiềng Đông, Xã Búng Lao",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2265\",\"properties\":{\"matinhxa\":\"13.2279\",\"maxa\":2279},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Chà Tở (xã)",
- "truocsn": "Xã Nậm Khăn, Xã Chà Tở",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2244\",\"properties\":{\"matinhxa\":\"13.2258\",\"maxa\":2258},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Chiềng Sinh (xã)",
- "truocsn": "Xã Nà Sáy, Xã Mường Thín, Xã Mường Khong, Xã Chiềng Sinh",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2262\",\"properties\":{\"matinhxa\":\"13.2276\",\"maxa\":2276},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Điện Biên Phủ (phường)",
- "truocsn": "Phường Him Lam, Phường Tân Thanh, Phường Mường Thanh, Phường Thanh Bình, Phường Thanh Trường, Xã Thanh Minh",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2233\",\"properties\":{\"matinhxa\":\"13.2247\",\"maxa\":2247},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Mường Ảng (xã)",
- "truocsn": "Thị trấn Mường Ảng, Xã Ẳng Nưa, Xã Ẳng Cang",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2259\",\"properties\":{\"matinhxa\":\"13.2273\",\"maxa\":2273},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Mường Chà (xã)",
- "truocsn": "Xã Chà Cang, Xã Chà Nưa, Xã Nậm Tin, Xã Pa Tần",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2236\",\"properties\":{\"matinhxa\":\"13.2250\",\"maxa\":2250},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Mường Lạn (xã)",
- "truocsn": "Xã Nặm Lịch, Xã Xuân Lao, Xã Mường Lạn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2266\",\"properties\":{\"matinhxa\":\"13.2280\",\"maxa\":2280},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Mường Lay (phường)",
- "truocsn": "Phường Sông Đà, Phường Na Lay, Xã Lay Nưa, Xã Sá Tổng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2234\",\"properties\":{\"matinhxa\":\"13.2248\",\"maxa\":2248},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Mường Luân (xã)",
- "truocsn": "Xã Chiềng Sơ, Xã Luân Giói, Xã Mường Luân",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2252\",\"properties\":{\"matinhxa\":\"13.2266\",\"maxa\":2266},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Mường Mùn (xã)",
- "truocsn": "Xã Mùn Chung, Xã Pú Xi, Xã Mường Mùn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2261\",\"properties\":{\"matinhxa\":\"13.2275\",\"maxa\":2275},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Mường Nhà (xã)",
- "truocsn": "Xã Mường Lói, Xã Phu Luông, Xã Mường Nhà",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2273\",\"properties\":{\"matinhxa\":\"13.2287\",\"maxa\":2287},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Mường Nhé (xã)",
- "truocsn": "Xã Nậm Vì, Xã Chung Chải, Xã Mường Nhé",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2237\",\"properties\":{\"matinhxa\":\"13.2251\",\"maxa\":2251},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Mường Phăng (xã)",
- "truocsn": "Xã Nà Nhạn, Xã Pá Khoang, Xã Mường Phăng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2267\",\"properties\":{\"matinhxa\":\"13.2281\",\"maxa\":2281},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Mường Pồn (xã)",
- "truocsn": "Xã Mường Mươn, Xã Mường Pồn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2249\",\"properties\":{\"matinhxa\":\"13.2263\",\"maxa\":2263},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Mường Thanh (phường)",
- "truocsn": "Phường Noong Bua, Phường Nam Thanh, Xã Thanh Xương",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2232\",\"properties\":{\"matinhxa\":\"13.2246\",\"maxa\":2246},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Mường Toong (xã)",
- "truocsn": "Xã Huổi Lếch, Xã Mường Toong",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2239\",\"properties\":{\"matinhxa\":\"13.2253\",\"maxa\":2253},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Mường Tùng (xã)",
- "truocsn": "Xã Huổi Lèng, Xã Mường Tùng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2245\",\"properties\":{\"matinhxa\":\"13.2259\",\"maxa\":2259},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Nà Bủng (xã)",
- "truocsn": "Xã Vàng Đán, Xã Nà Bủng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2242\",\"properties\":{\"matinhxa\":\"13.2256\",\"maxa\":2256},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Nà Hỳ (xã)",
- "truocsn": "Xã Nà Khoa, Xã Nậm Nhừ, Xã Nậm Chua, Xã Nà Hỳ",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2241\",\"properties\":{\"matinhxa\":\"13.2255\",\"maxa\":2255},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Na Sang (xã)",
- "truocsn": "Thị trấn Mường Chà, Xã Ma Thì Hồ, Xã Sa Lông, Xã Na Sang",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2243\",\"properties\":{\"matinhxa\":\"13.2257\",\"maxa\":2257},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Na Son (xã)",
- "truocsn": "Thị trấn Điện Biên Đông, Xã Keo Lôm, Xã Na Son",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2250\",\"properties\":{\"matinhxa\":\"13.2264\",\"maxa\":2264},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Nà Tấu (xã)",
- "truocsn": "Xã Mường Đăng, Xã Ngối Cáy, Xã Nà Tấu",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2264\",\"properties\":{\"matinhxa\":\"13.2278\",\"maxa\":2278},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Nậm Kè (xã)",
- "truocsn": "Xã Pá Mỳ, Xã Nậm Kè",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2238\",\"properties\":{\"matinhxa\":\"13.2252\",\"maxa\":2252},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Nậm Nèn (xã)",
- "truocsn": "Xã Huổi Mí, Xã Nậm Nèn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2247\",\"properties\":{\"matinhxa\":\"13.2261\",\"maxa\":2261},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Núa Ngam (xã)",
- "truocsn": "Xã Hẹ Muông, Xã Na Tông, Xã Núa Ngam",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2272\",\"properties\":{\"matinhxa\":\"13.2286\",\"maxa\":2286},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Pa Ham (xã)",
- "truocsn": "Xã Hừa Ngài, Xã Pa Ham",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2246\",\"properties\":{\"matinhxa\":\"13.2260\",\"maxa\":2260},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Phình Giàng (xã)",
- "truocsn": "Xã Pú Hồng, Xã Phình Giàng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2275\",\"properties\":{\"matinhxa\":\"13.2289\",\"maxa\":2289},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Pu Nhi (xã)",
- "truocsn": "Xã Nong U, Xã Pu Nhi",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2274\",\"properties\":{\"matinhxa\":\"13.2288\",\"maxa\":2288},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Pú Nhung (xã)",
- "truocsn": "Xã Rạng Đông, Xã Ta Ma, Xã Pú Nhung",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2260\",\"properties\":{\"matinhxa\":\"13.2274\",\"maxa\":2274},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Quài Tở (xã)",
- "truocsn": "Xã Tỏa Tình, Xã Tênh Phông, Xã Quài Tở",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2263\",\"properties\":{\"matinhxa\":\"13.2277\",\"maxa\":2277},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Quảng Lâm (xã)",
- "truocsn": "Xã Na Cô Sa, Xã Quảng Lâm",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2240\",\"properties\":{\"matinhxa\":\"13.2254\",\"maxa\":2254},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Sam Mứn (xã)",
- "truocsn": "Xã Pom Lót, Xã Na Ư",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2271\",\"properties\":{\"matinhxa\":\"13.2285\",\"maxa\":2285},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Sáng Nhè (xã)",
- "truocsn": "Xã Xá Nhè, Xã Mường Đun, Xã Phình Sáng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2257\",\"properties\":{\"matinhxa\":\"13.2271\",\"maxa\":2271},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Si Pa Phìn (xã)",
- "truocsn": "Xã Phìn Hồ, Xã Si Pa Phìn",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2248\",\"properties\":{\"matinhxa\":\"13.2262\",\"maxa\":2262},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Sín Chải (xã)",
- "truocsn": "Xã Tả Sìn Thàng, Xã Lao Xả Phình, Xã Sín Chải",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2255\",\"properties\":{\"matinhxa\":\"13.2269\",\"maxa\":2269},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Sín Thầu (xã)",
- "truocsn": "Xã Sen Thượng, Xã Leng Su Sìn, Xã Sín Thầu",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2235\",\"properties\":{\"matinhxa\":\"13.2249\",\"maxa\":2249},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Sính Phình (xã)",
- "truocsn": "Xã Trung Thu, Xã Tả Phìn, Xã Sính Phình",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2256\",\"properties\":{\"matinhxa\":\"13.2270\",\"maxa\":2270},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Thanh An (xã)",
- "truocsn": "Xã Noong Hẹt, Xã Sam Mứn, Xã Thanh An",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2270\",\"properties\":{\"matinhxa\":\"13.2284\",\"maxa\":2284},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Thanh Nưa (xã)",
- "truocsn": "Xã Hua Thanh, Xã Thanh Luông, Xã Thanh Hưng, Xã Thanh Chăn, Xã Thanh Nưa",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2268\",\"properties\":{\"matinhxa\":\"13.2282\",\"maxa\":2282},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Thanh Yên (xã)",
- "truocsn": "Xã Noong Luống, Xã Pa Thơm, Xã Thanh Yên",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2269\",\"properties\":{\"matinhxa\":\"13.2283\",\"maxa\":2283},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Tìa Dình (xã)",
- "truocsn": "Xã Háng Lìa, Xã Tìa Dình",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2276\",\"properties\":{\"matinhxa\":\"13.2290\",\"maxa\":2290},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Tủa Chùa (xã)",
- "truocsn": "Thị trấn Tủa Chùa, Xã Mường Báng, Xã Nà Tòng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2253\",\"properties\":{\"matinhxa\":\"13.2267\",\"maxa\":2267},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Tủa Thàng (xã)",
- "truocsn": "Xã Huổi Só, Xã Tủa Thàng",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2254\",\"properties\":{\"matinhxa\":\"13.2268\",\"maxa\":2268},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Tuần Giáo (xã)",
- "truocsn": "Thị trấn Tuần Giáo, Xã Quài Cang, Xã Quài Nưa",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2258\",\"properties\":{\"matinhxa\":\"13.2272\",\"maxa\":2272},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Xa Dung (xã)",
- "truocsn": "Xã Phì Nhừ, Xã Xa Dung",
- "provinceName": "tỉnh Điện Biên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2186\",\"properties\":{\"matinhxa\":\"13.2200\",\"maxa\":2200},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bản Bo (xã)",
- "truocsn": "Xã Nà Tăm, Xã Bản Bo",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2071\",\"properties\":{\"matinhxa\":\"14.2085\",\"maxa\":2085},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bình Lư (xã)",
- "truocsn": "Thị trấn Tam Đường, Xã Sơn Bình, Xã Bình Lư",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2069\",\"properties\":{\"matinhxa\":\"14.2083\",\"maxa\":2083},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bum Nưa (xã)",
- "truocsn": "Xã Pa Vệ Sủ, Xã Bum Nưa",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2079\",\"properties\":{\"matinhxa\":\"14.2093\",\"maxa\":2093},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bum Tở (xã)",
- "truocsn": "Thị trấn Mường Tè, Xã Can Hồ, Xã Bum Tở",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2076\",\"properties\":{\"matinhxa\":\"14.2090\",\"maxa\":2090},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Dào San (xã)",
- "truocsn": "Xã Tung Qua Lìn, Xã Mù Sang, Xã Dào San",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2093\",\"properties\":{\"matinhxa\":\"14.2107\",\"maxa\":2107},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Đoàn Kết (phường)",
- "truocsn": "Phường Đoàn Kết, Phường Quyết Tiến, Phường Quyết Thắng, Xã Lản Nhì Thàng, Xã Sùng Phài",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2067\",\"properties\":{\"matinhxa\":\"14.2081\",\"maxa\":2081},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Hồng Thu (xã)",
- "truocsn": "Xã Phìn Hồ, Xã Ma Quai, Xã Hồng Thu",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2085\",\"properties\":{\"matinhxa\":\"14.2099\",\"maxa\":2099},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Hua Bum (xã)",
- "truocsn": "Xã Vàng San, Xã Hua Bum",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2077\",\"properties\":{\"matinhxa\":\"14.2091\",\"maxa\":2091},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Khoen On (xã)",
- "truocsn": "Xã Ta Gia, Xã Khoen On",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2103\",\"properties\":{\"matinhxa\":\"14.2117\",\"maxa\":2117},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Khổng Lào (xã)",
- "truocsn": "Xã Hoang Thèn, Xã Bản Lang, Xã Khổng Lào",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2094\",\"properties\":{\"matinhxa\":\"14.2108\",\"maxa\":2108},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Khun Há (xã)",
- "truocsn": "Xã Bản Hon, Xã Khun Há",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2070\",\"properties\":{\"matinhxa\":\"14.2084\",\"maxa\":2084},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Lê Lợi (xã)",
- "truocsn": "Xã Nậm Pì, Xã Pú Đao, Xã Chăn Nưa, Xã Lê Lợi",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2083\",\"properties\":{\"matinhxa\":\"14.2097\",\"maxa\":2097},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Mù Cả (xã)",
- "truocsn": "xã Mù Cả (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2075\",\"properties\":{\"matinhxa\":\"14.2089\",\"maxa\":2089},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Mường Khoa (xã)",
- "truocsn": "Xã Phúc Khoa, Xã Mường Khoa",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2098\",\"properties\":{\"matinhxa\":\"14.2112\",\"maxa\":2112},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Mường Kim (xã)",
- "truocsn": "Xã Tà Mung, Xã Tà Hừa, Xã Pha Mu, Xã Mường Kim",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2102\",\"properties\":{\"matinhxa\":\"14.2116\",\"maxa\":2116},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Mường Mô (xã)",
- "truocsn": "Xã Nậm Chà, Xã Mường Mô",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2080\",\"properties\":{\"matinhxa\":\"14.2094\",\"maxa\":2094},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Mường Tè (xã)",
- "truocsn": "Xã Nậm Khao, Xã Mường Tè",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2074\",\"properties\":{\"matinhxa\":\"14.2088\",\"maxa\":2088},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Mường Than (xã)",
- "truocsn": "Xã Phúc Than, Xã Mường Mít",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2101\",\"properties\":{\"matinhxa\":\"14.2115\",\"maxa\":2115},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Nậm Cuổi (xã)",
- "truocsn": "Xã Nậm Hăn, Xã Nậm Cuổi",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2090\",\"properties\":{\"matinhxa\":\"14.2104\",\"maxa\":2104},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Nậm Hàng (xã)",
- "truocsn": "Thị trấn Nậm Nhùn, Xã Nậm Manh, Xã Nậm Hàng",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2081\",\"properties\":{\"matinhxa\":\"14.2095\",\"maxa\":2095},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Nậm Mạ (xã)",
- "truocsn": "Xã Căn Co, Xã Nậm Mạ",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2088\",\"properties\":{\"matinhxa\":\"14.2102\",\"maxa\":2102},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Nậm Sỏ (xã)",
- "truocsn": "Xã Tà Mít, Xã Nậm Sỏ",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2099\",\"properties\":{\"matinhxa\":\"14.2113\",\"maxa\":2113},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Nậm Tăm (xã)",
- "truocsn": "Xã Lùng Thàng, Xã Nậm Cha, Xã Nậm Tăm",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2086\",\"properties\":{\"matinhxa\":\"14.2100\",\"maxa\":2100},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Pa Tần (xã)",
- "truocsn": "Xã Nậm Ban, Xã Trung Chải, Xã Pa Tần",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2084\",\"properties\":{\"matinhxa\":\"14.2098\",\"maxa\":2098},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Pa Ủ (xã)",
- "truocsn": "Xã Tá Bạ, Xã Pa Ủ",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2073\",\"properties\":{\"matinhxa\":\"14.2087\",\"maxa\":2087},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Pắc Ta (xã)",
- "truocsn": "Xã Hố Mít, Xã Pắc Ta",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2100\",\"properties\":{\"matinhxa\":\"14.2114\",\"maxa\":2114},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Phong Thổ (xã)",
- "truocsn": "Thị trấn Phong Thổ, Xã Huổi Luông, Xã Ma Li Pho, Xã Mường So",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2091\",\"properties\":{\"matinhxa\":\"14.2105\",\"maxa\":2105},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Pu Sam Cáp (xã)",
- "truocsn": "Xã Pa Khóa, Xã Noong Hẻo, Xã Pu Sam Cáp",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2087\",\"properties\":{\"matinhxa\":\"14.2101\",\"maxa\":2101},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Sì Lở Lầu (xã)",
- "truocsn": "Xã Vàng Ma Chải, Xã Mồ Sì San, Xã Pa Vây Sử, Xã Sì Lở Lầu",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2092\",\"properties\":{\"matinhxa\":\"14.2106\",\"maxa\":2106},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Sìn Hồ (xã)",
- "truocsn": "Thị trấn Sìn Hồ, Xã Sà Dề Phìn, Xã Phăng Sô Lin, Xã Tả Phìn",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2082\",\"properties\":{\"matinhxa\":\"14.2096\",\"maxa\":2096},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Sin Suối Hồ (xã)",
- "truocsn": "Xã Nậm Xe, Xã Thèn Sin, Xã Sin Suối Hồ",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2095\",\"properties\":{\"matinhxa\":\"14.2109\",\"maxa\":2109},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Tả Lèng (xã)",
- "truocsn": "Xã Giang Ma, Xã Hồ Thầu, Xã Tả Lèng",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2068\",\"properties\":{\"matinhxa\":\"14.2082\",\"maxa\":2082},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Tà Tổng (xã)",
- "truocsn": "xã Tà Tổng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2078\",\"properties\":{\"matinhxa\":\"14.2092\",\"maxa\":2092},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Tân Phong (phường)",
- "truocsn": "Phường Tân Phong, Phường Đông Phong, Xã San Thàng, Xã Nùng Nàng, Xã Bản Giang",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2066\",\"properties\":{\"matinhxa\":\"14.2080\",\"maxa\":2080},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Tân Uyên (xã)",
- "truocsn": "Thị trấn Tân Uyên, Xã Trung Đồng, Xã Thân Thuộc, Xã Nậm Cần",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2097\",\"properties\":{\"matinhxa\":\"14.2111\",\"maxa\":2111},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Than Uyên (xã)",
- "truocsn": "Thị trấn Than Uyên, Xã Mường Than, Xã Hua Nà, Xã Mường Cang",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2096\",\"properties\":{\"matinhxa\":\"14.2110\",\"maxa\":2110},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Thu Lũm (xã)",
- "truocsn": "Xã Ka Lăng, Xã Thu Lũm",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2072\",\"properties\":{\"matinhxa\":\"14.2086\",\"maxa\":2086},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Tủa Sín Chải (xã)",
- "truocsn": "Xã Làng Mô, Xã Tả Ngảo, Xã Tủa Sín Chải",
- "provinceName": "tỉnh Lai Châu",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2089\",\"properties\":{\"matinhxa\":\"14.2103\",\"maxa\":2103},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bắc Yên (xã)",
- "truocsn": "Thị trấn Bắc Yên, Xã Phiêng Ban, Xã Hồng Ngài, Xã Song Pe",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1362\",\"properties\":{\"matinhxa\":\"15.1374\",\"maxa\":1374},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bình Thuận (xã)",
- "truocsn": "Xã Phổng Lái, Xã Chiềng Pha",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1306\",\"properties\":{\"matinhxa\":\"15.1318\",\"maxa\":1318},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bó Sinh (xã)",
- "truocsn": "Xã Pú Bẩu, Xã Chiềng En, Xã Bó Sinh",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1399\",\"properties\":{\"matinhxa\":\"15.1412\",\"maxa\":1412},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Chiềng An (phường)",
- "truocsn": "Phường Chiềng An, Xã Chiềng Xôm, Xã Chiềng Đen",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1299\",\"properties\":{\"matinhxa\":\"15.1311\",\"maxa\":1311},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Chiềng Cơi (phường)",
- "truocsn": "Phường Chiềng Cơi, Xã Hua La, Xã Chiềng Cọ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1298\",\"properties\":{\"matinhxa\":\"15.1310\",\"maxa\":1310},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Chiềng Hặc (xã)",
- "truocsn": "Xã Tú Nang, Xã Mường Lựm, Xã Chiềng Hặc",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1386\",\"properties\":{\"matinhxa\":\"15.1399\",\"maxa\":1399},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Chiềng Hoa (xã)",
- "truocsn": "Xã Chiềng Ân, Xã Chiềng Công, Xã Chiềng Hoa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1361\",\"properties\":{\"matinhxa\":\"15.1373\",\"maxa\":1373},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Chiềng Khoong (xã)",
- "truocsn": "Xã Mường Cai, Xã Chiềng Khoong",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1403\",\"properties\":{\"matinhxa\":\"15.1416\",\"maxa\":1416},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Chiềng Khương (xã)",
- "truocsn": "Xã Mường Sai, Xã Chiềng Khương",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1406\",\"properties\":{\"matinhxa\":\"15.1419\",\"maxa\":1419},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Chiềng La (xã)",
- "truocsn": "Xã Chiềng Ngàm, Xã Nong Lay, Xã Tông Cọ, Xã Chiềng La",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1308\",\"properties\":{\"matinhxa\":\"15.1320\",\"maxa\":1320},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Chiềng Lao (xã)",
- "truocsn": "Xã Nậm Giôn, Xã Hua Trai, Xã Chiềng Lao",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1358\",\"properties\":{\"matinhxa\":\"15.1370\",\"maxa\":1370},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Chiềng Mai (xã)",
- "truocsn": "Xã Chiềng Ban, Xã Chiềng Kheo, Xã Chiềng Dong, Xã Chiềng Ve, Xã Chiềng Mai",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1393\",\"properties\":{\"matinhxa\":\"15.1406\",\"maxa\":1406},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Chiềng Mung (xã)",
- "truocsn": "Xã Mường Bằng, Xã Mường Bon, Xã Chiềng Mung",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1392\",\"properties\":{\"matinhxa\":\"15.1405\",\"maxa\":1405},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Chiềng Sại (xã)",
- "truocsn": "Xã Phiêng Côn, Xã Chiềng Sại",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1367\",\"properties\":{\"matinhxa\":\"15.1379\",\"maxa\":1379},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Chiềng Sinh (phường)",
- "truocsn": "Phường Chiềng Sinh, Xã Chiềng Ngần",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1300\",\"properties\":{\"matinhxa\":\"15.1312\",\"maxa\":1312},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Chiềng Sơ (xã)",
- "truocsn": "Xã Yên Hưng, Xã Chiềng Sơ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1402\",\"properties\":{\"matinhxa\":\"15.1415\",\"maxa\":1415},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Chiềng Sơn (xã)",
- "truocsn": "Xã Chiềng Xuân, Xã Chiềng Sơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1377\",\"properties\":{\"matinhxa\":\"15.1389\",\"maxa\":1389},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Chiềng Sung (xã)",
- "truocsn": "Xã Chiềng Chăn, Xã Chiềng Sung",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1390\",\"properties\":{\"matinhxa\":\"15.1403\",\"maxa\":1403},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Co Mạ (xã)",
- "truocsn": "Xã Co Tòng, Xã Pá Lông, Xã Co Mạ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1354\",\"properties\":{\"matinhxa\":\"15.1366\",\"maxa\":1366},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đoàn Kết (xã)",
- "truocsn": "Xã Chiềng Chung (thị xã Mộc Châu), Xã Đoàn Kết",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1376\",\"properties\":{\"matinhxa\":\"15.1388\",\"maxa\":1388},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Gia Phù (xã)",
- "truocsn": "Xã Tường Phù, Xã Suối Bau, Xã Sập Xa, Xã Gia Phù",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1371\",\"properties\":{\"matinhxa\":\"15.1383\",\"maxa\":1383},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Huổi Một (xã)",
- "truocsn": "Xã Nậm Mằn, Xã Huổi Một",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1404\",\"properties\":{\"matinhxa\":\"15.1417\",\"maxa\":1417},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Kim Bon (xã)",
- "truocsn": "Xã Đá Đỏ, Xã Kim Bon",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1373\",\"properties\":{\"matinhxa\":\"15.1385\",\"maxa\":1385},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Long Hẹ (xã)",
- "truocsn": "Xã É Tòng, Xã Long Hẹ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1353\",\"properties\":{\"matinhxa\":\"15.1365\",\"maxa\":1365},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Lóng Phiêng (xã)",
- "truocsn": "Xã Chiềng Tương, Xã Lóng Phiêng",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1388\",\"properties\":{\"matinhxa\":\"15.1401\",\"maxa\":1401},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Lóng Sập (xã)",
- "truocsn": "Xã Chiềng Khừa, Xã Lóng Sập",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1381\",\"properties\":{\"matinhxa\":\"15.1394\",\"maxa\":1394},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Mai Sơn (xã)",
- "truocsn": "Thị trấn Hát Lót, Xã Hát Lót, Xã Cò Nòi",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1394\",\"properties\":{\"matinhxa\":\"15.1407\",\"maxa\":1407},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Mộc Châu (phường)",
- "truocsn": "Phường Mộc Lỵ, Phường Mường Sang, Xã Chiềng Hắc",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3312\",\"properties\":{\"matinhxa\":\"15.3328\",\"maxa\":3328},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Mộc Sơn (phường)",
- "truocsn": "Phường Đông Sang, Phường Mộc Sơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1382\",\"properties\":{\"matinhxa\":\"15.1395\",\"maxa\":1395},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Muổi Nọi (xã)",
- "truocsn": "Xã Bản Lầm, Xã Bon Phặng, Xã Muổi Nọi",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1356\",\"properties\":{\"matinhxa\":\"15.1368\",\"maxa\":1368},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Mường Bám (xã)",
- "truocsn": "xã Mường Bám (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1352\",\"properties\":{\"matinhxa\":\"15.1364\",\"maxa\":1364},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Mường Bang (xã)",
- "truocsn": "Xã Mường Do, Xã Mường Lang, Xã Mường Bang",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1374\",\"properties\":{\"matinhxa\":\"15.1386\",\"maxa\":1386},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Mường Bú (xã)",
- "truocsn": "Xã Mường Chùm, Xã Tạ Bú, Xã Mường Bú",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1360\",\"properties\":{\"matinhxa\":\"15.1372\",\"maxa\":1372},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Mường Chanh (xã)",
- "truocsn": "Xã Chiềng Chung (huyện Mai Sơn), Xã Mường Chanh",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1391\",\"properties\":{\"matinhxa\":\"15.1404\",\"maxa\":1404},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Mường Chiên (xã)",
- "truocsn": "Xã Chiềng Khay, Xã Cà Nàng, Xã Mường Chiên",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1301\",\"properties\":{\"matinhxa\":\"15.1313\",\"maxa\":1313},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Mường Cơi (xã)",
- "truocsn": "Xã Mường Thải, Xã Tân Lang, Xã Mường Cơi",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1370\",\"properties\":{\"matinhxa\":\"15.1382\",\"maxa\":1382},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Mường É (xã)",
- "truocsn": "Xã Phổng Lập, Xã Mường É",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1307\",\"properties\":{\"matinhxa\":\"15.1319\",\"maxa\":1319},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Mường Giôn (xã)",
- "truocsn": "Xã Pá Ma Pha Khinh, Xã Mường Giôn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1302\",\"properties\":{\"matinhxa\":\"15.1314\",\"maxa\":1314},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Mường Hung (xã)",
- "truocsn": "Xã Chiềng Cang, Xã Mường Hung",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1405\",\"properties\":{\"matinhxa\":\"15.1418\",\"maxa\":1418},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Mường Khiêng (xã)",
- "truocsn": "Xã Liệp Tè, Xã Bó Mười, Xã Mường Khiêng",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1309\",\"properties\":{\"matinhxa\":\"15.1321\",\"maxa\":1321},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Mường La (xã)",
- "truocsn": "Thị trấn Ít Ong, Xã Nặm Păm, Xã Chiềng San, Xã Chiềng Muôn, Xã Mường Trai, Xã Pi Toong",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1357\",\"properties\":{\"matinhxa\":\"15.1369\",\"maxa\":1369},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Mường Lầm (xã)",
- "truocsn": "Xã Đứa Mòn, Xã Mường Lầm",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1400\",\"properties\":{\"matinhxa\":\"15.1413\",\"maxa\":1413},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mường Lạn (xã)",
- "truocsn": "xã Mường Lạn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1410\",\"properties\":{\"matinhxa\":\"15.1423\",\"maxa\":1423},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Mường Lèo (xã)",
- "truocsn": "xã Mường Lèo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1409\",\"properties\":{\"matinhxa\":\"15.1422\",\"maxa\":1422},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Mường Sại (xã)",
- "truocsn": "Xã Nặm Ét, Xã Mường Sại",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1304\",\"properties\":{\"matinhxa\":\"15.1316\",\"maxa\":1316},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nậm Lầu (xã)",
- "truocsn": "Xã Chiềng Bôm, Xã Púng Tra, Xã Nậm Lầu",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1355\",\"properties\":{\"matinhxa\":\"15.1367\",\"maxa\":1367},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nậm Ty (xã)",
- "truocsn": "Xã Chiềng Phung, Xã Nậm Ty",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1401\",\"properties\":{\"matinhxa\":\"15.1414\",\"maxa\":1414},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Ngọc Chiến (xã)",
- "truocsn": "xã Ngọc Chiến (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1359\",\"properties\":{\"matinhxa\":\"15.1371\",\"maxa\":1371},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Pắc Ngà (xã)",
- "truocsn": "Xã Chim Vàn, Xã Pắc Ngà",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1365\",\"properties\":{\"matinhxa\":\"15.1377\",\"maxa\":1377},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Phiêng Cằm (xã)",
- "truocsn": "Xã Chiềng Nơi, Xã Phiêng Cằm",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1395\",\"properties\":{\"matinhxa\":\"15.1408\",\"maxa\":1408},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phiêng Khoài (xã)",
- "truocsn": "xã Phiêng Khoài (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1389\",\"properties\":{\"matinhxa\":\"15.1402\",\"maxa\":1402},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phiêng Pằn (xã)",
- "truocsn": "Xã Nà Ớt, Xã Chiềng Lương, Xã Phiêng Pằn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1396\",\"properties\":{\"matinhxa\":\"15.1409\",\"maxa\":1409},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phù Yên (xã)",
- "truocsn": "Thị trấn Quang Huy, Xã Huy Hạ, Xã Huy Tường, Xã Huy Tân, Xã Huy Thượng",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1368\",\"properties\":{\"matinhxa\":\"15.1380\",\"maxa\":1380},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Púng Bánh (xã)",
- "truocsn": "Xã Dồm Cang, Xã Sam Kha, Xã Púng Bánh",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1407\",\"properties\":{\"matinhxa\":\"15.1420\",\"maxa\":1420},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Quỳnh Nhai (xã)",
- "truocsn": "Thị trấn Mường Giàng, Xã Chiềng Bằng, Xã Chiềng Khoang, Xã Chiềng Ơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1303\",\"properties\":{\"matinhxa\":\"15.1315\",\"maxa\":1315},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Song Khủa (xã)",
- "truocsn": "Xã Mường Tè, Xã Liên Hòa, Xã Quang Minh, Xã Song Khủa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1379\",\"properties\":{\"matinhxa\":\"15.1391\",\"maxa\":1391},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Sông Mã (xã)",
- "truocsn": "Thị trấn Sông Mã, Xã Nà Nghịu",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1398\",\"properties\":{\"matinhxa\":\"15.1411\",\"maxa\":1411},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Sốp Cộp (xã)",
- "truocsn": "Xã Mường Và, Xã Nậm Lạnh, Xã Sốp Cộp",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1408\",\"properties\":{\"matinhxa\":\"15.1421\",\"maxa\":1421},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Suối Tọ (xã)",
- "truocsn": "xã Suối Tọ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1369\",\"properties\":{\"matinhxa\":\"15.1381\",\"maxa\":1381},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Tà Hộc (xã)",
- "truocsn": "Xã Nà Bó, Xã Tà Hộc",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1397\",\"properties\":{\"matinhxa\":\"15.1410\",\"maxa\":1410},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Tạ Khoa (xã)",
- "truocsn": "Xã Mường Khoa, Xã Hua Nhàn, Xã Tạ Khoa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1366\",\"properties\":{\"matinhxa\":\"15.1378\",\"maxa\":1378},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Tà Xùa (xã)",
- "truocsn": "Xã Làng Chếu, Xã Háng Đồng, Xã Tà Xùa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1364\",\"properties\":{\"matinhxa\":\"15.1376\",\"maxa\":1376},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Tân Phong (xã)",
- "truocsn": "Xã Bắc Phong, Xã Nam Phong, Xã Tân Phong",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1375\",\"properties\":{\"matinhxa\":\"15.1387\",\"maxa\":1387},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tân Yên (xã)",
- "truocsn": "xã Tân Yên (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1378\",\"properties\":{\"matinhxa\":\"15.1390\",\"maxa\":1390},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Thảo Nguyên (phường)",
- "truocsn": "Phường Cờ Đỏ, Phường Thảo Ngu yên",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1438\",\"properties\":{\"matinhxa\":\"15.1451\",\"maxa\":1451},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Thuận Châu (xã)",
- "truocsn": "Thị trấn Thuận Châu, Xã Phổng Ly, Xã Thôm Mòn, Xã Tông Lạnh, Xã Chiềng Pấc",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1305\",\"properties\":{\"matinhxa\":\"15.1317\",\"maxa\":1317},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tô Hiệu (phường)",
- "truocsn": "Phường Quyết Thắng, Phường Quyết Tâm, Phường Chiềng Lề, Phường Tô Hiệu",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1297\",\"properties\":{\"matinhxa\":\"15.1309\",\"maxa\":1309},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tô Múa (xã)",
- "truocsn": "Xã Chiềng Khoa, Xã Suối Bàng, Xã Tô Múa",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1380\",\"properties\":{\"matinhxa\":\"15.1393\",\"maxa\":1393},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tường Hạ (xã)",
- "truocsn": "Xã Tường Thượng, Xã Tường Phong, Xã Tường Tiến, Xã Tường Hạ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1372\",\"properties\":{\"matinhxa\":\"15.1384\",\"maxa\":1384},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Vân Hồ (xã)",
- "truocsn": "Xã Lóng Luông, Xã Chiềng Yên, Xã Mường Men, Xã Vân Hồ",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1383\",\"properties\":{\"matinhxa\":\"15.1396\",\"maxa\":1396},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Vân Sơn (phường)",
- "truocsn": "Phường Bình Minh, Phường Vân Sơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3291\",\"properties\":{\"matinhxa\":\"15.3307\",\"maxa\":3307},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Xím Vàng (xã)",
- "truocsn": "Xã Hang Chú, Xã Xí m Vàng",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1363\",\"properties\":{\"matinhxa\":\"15.1375\",\"maxa\":1375},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Xuân Nha (xã)",
- "truocsn": "Xã Tân Xuân, Xã Xuân Nha",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1384\",\"properties\":{\"matinhxa\":\"15.1397\",\"maxa\":1397},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Yên Châu (xã)",
- "truocsn": "Thị trấn Yên Châu, Xã Chiềng Đông, Xã Chiềng Sàng, Xã Chiềng Pằn, Xã Chiềng Khoi, Xã Sặp Vạt",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1385\",\"properties\":{\"matinhxa\":\"15.1398\",\"maxa\":1398},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Yên Sơn (xã)",
- "truocsn": "Xã Chiềng On, Xã Yên Sơn",
- "provinceName": "tỉnh Sơn La",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1387\",\"properties\":{\"matinhxa\":\"15.1400\",\"maxa\":1400},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Khánh (xã)",
- "truocsn": "Xã Cù Vân, Xã Hà Thượng, Xã An Khánh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1128\",\"properties\":{\"matinhxa\":\"10.1139\",\"maxa\":1139},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Bể (xã)",
- "truocsn": "Xã Cao Thượng, Xã Nam Mẫu, Xã Khang Ninh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1093\",\"properties\":{\"matinhxa\":\"10.1104\",\"maxa\":1104},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bá Xuyên (phường)",
- "truocsn": "Phường Mỏ Chè, Phường Châu Sơn, Xã Bá Xuyên",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1135\",\"properties\":{\"matinhxa\":\"10.1146\",\"maxa\":1146},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bắc Kạn (phường)",
- "truocsn": "Phường Sông Cầu, Phường Phùng Chí Kiên, Phường Xuất Hóa, Xã Nông Thượng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1183\",\"properties\":{\"matinhxa\":\"10.1194\",\"maxa\":1194},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bách Quang (phường)",
- "truocsn": "Phường Lương Sơn, Phường Bách Quang, Xã Tân Quang",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1133\",\"properties\":{\"matinhxa\":\"10.1144\",\"maxa\":1144},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bạch Thông (xã)",
- "truocsn": "Xã Đồng Thắng, Xã Dương Phong, Xã Quang Thuận",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1201\",\"properties\":{\"matinhxa\":\"10.1212\",\"maxa\":1212},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bằng Thành (xã)",
- "truocsn": "Xã Bộc Bố, Xã Nhạn Môn, Xã Giáo Hiệu, Xã Bằng Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1088\",\"properties\":{\"matinhxa\":\"10.1099\",\"maxa\":1099},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bằng Vân (xã)",
- "truocsn": "Xã Thượng Ân, Xã Bằng Vân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1101\",\"properties\":{\"matinhxa\":\"10.1112\",\"maxa\":1112},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Thành (xã)",
- "truocsn": "Xã Sơn Phú, Xã Bình Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1150\",\"properties\":{\"matinhxa\":\"10.1161\",\"maxa\":1161},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Yên (xã)",
- "truocsn": "Xã Trung Lương, Xã Định Biên, Xã Thanh Định, Xã Bình Yên",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1131\",\"properties\":{\"matinhxa\":\"10.1142\",\"maxa\":1142},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cẩm Giàng (xã)",
- "truocsn": "Xã Quân Hà, Xã Nguyên Phúc, Xã Mỹ Thanh, Xã Cẩm Giàng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1106\",\"properties\":{\"matinhxa\":\"10.1117\",\"maxa\":1117},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cao Minh (xã)",
- "truocsn": "Xã Công Bằng, Xã Cổ Linh, Xã Cao Tân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1089\",\"properties\":{\"matinhxa\":\"10.1100\",\"maxa\":1100},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Chợ Đồn (xã)",
- "truocsn": "Thị trấn Bằng Lũng, Xã Ngọc Phái, Xã Phương Viên, Xã Bằng Lãng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1107\",\"properties\":{\"matinhxa\":\"10.1118\",\"maxa\":1118},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Chợ Mới (xã)",
- "truocsn": "Thị trấn Đồng Tâm, Xã Quảng Chu, Xã Như Cố",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1185\",\"properties\":{\"matinhxa\":\"10.1196\",\"maxa\":1196},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Chợ Rã (xã)",
- "truocsn": "Thị trấn Chợ Rã, Xã Thượng Giáo, Xã Địa Linh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1091\",\"properties\":{\"matinhxa\":\"10.1102\",\"maxa\":1102},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Côn Minh (xã)",
- "truocsn": "Xã Quang Phong, Xã Dương Sơn, Xã Côn Minh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1192\",\"properties\":{\"matinhxa\":\"10.1203\",\"maxa\":1203},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Cường Lợi (xã)",
- "truocsn": "Xã Văn Vũ, Xã Cường Lợi",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1191\",\"properties\":{\"matinhxa\":\"10.1202\",\"maxa\":1202},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đại Phúc (xã)",
- "truocsn": "Thị trấn Hùng Sơn, Xã Phúc Xuân, Xã Phúc Trìu, Xã Tân Thái, Xã Phúc Tân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1117\",\"properties\":{\"matinhxa\":\"10.1128\",\"maxa\":1128},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đại Từ (xã)",
- "truocsn": "Xã Bình Thuận, Xã Khôi Kỳ, Xã Mỹ Yên, Xã Lục Ba",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1127\",\"properties\":{\"matinhxa\":\"10.1138\",\"maxa\":1138},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Dân Tiến (xã)",
- "truocsn": "Xã Bình Long, Xã Phương Giao, Xã Dân Tiến",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1157\",\"properties\":{\"matinhxa\":\"10.1168\",\"maxa\":1168},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Điềm Thụy (xã)",
- "truocsn": "Xã Hà Châu, Xã Nga My, Xã Điềm Thụy, Xã Thượng Đình",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1181\",\"properties\":{\"matinhxa\":\"10.1192\",\"maxa\":1192},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Định Hóa (xã)",
- "truocsn": "Thị trấn Chợ Chu, Xã Phúc Chu, Xã Bảo Linh, Xã Đồng Thịnh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1136\",\"properties\":{\"matinhxa\":\"10.1147\",\"maxa\":1147},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đồng Hỷ (xã)",
- "truocsn": "Thị trấn Hóa Thượng, Thị trấn Sông Cầu, Xã Minh Lập, Xã Hóa Trung",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1159\",\"properties\":{\"matinhxa\":\"10.1170\",\"maxa\":1170},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đồng Phúc (xã)",
- "truocsn": "Xã Quảng Khê, Xã Hoàng Trĩ, Xã Bằng Phúc, Xã Đồng Phúc",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1098\",\"properties\":{\"matinhxa\":\"10.1109\",\"maxa\":1109},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đức Lương (xã)",
- "truocsn": "Xã Minh Tiến, Xã Phúc Lương, Xã Đức Lương",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1130\",\"properties\":{\"matinhxa\":\"10.1141\",\"maxa\":1141},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đức Xuân (phường)",
- "truocsn": "Phường Nguyễn Thị Minh Khai, Phường Huyền Tụng, Phường Đức Xuân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1184\",\"properties\":{\"matinhxa\":\"10.1195\",\"maxa\":1195},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Gia Sàng (phường)",
- "truocsn": "Phường Hương Sơn, Xã Đồng Liên, Phường Gia Sàng, Phường Cam Giá",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1116\",\"properties\":{\"matinhxa\":\"10.1127\",\"maxa\":1127},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hiệp Lực (xã)",
- "truocsn": "Xã Thuần Mang, Xã Hiệp Lực",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1103\",\"properties\":{\"matinhxa\":\"10.1114\",\"maxa\":1114},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hợp Thành (xã)",
- "truocsn": "Xã Ôn Lương, Xã Phủ Lý, Xã Hợp Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1141\",\"properties\":{\"matinhxa\":\"10.1152\",\"maxa\":1152},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Kha Sơn (xã)",
- "truocsn": "Xã Lương Phú, Xã Tân Đức, Xã Thanh Ninh, Xã Dương Thành, Xã Kha Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1182\",\"properties\":{\"matinhxa\":\"10.1193\",\"maxa\":1193},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Kim Phượng (xã)",
- "truocsn": "Xã Quy Kỳ, Xã Kim Phượng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1149\",\"properties\":{\"matinhxa\":\"10.1160\",\"maxa\":1160},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "La Bằng (xã)",
- "truocsn": "Xã Hoàng Nông, Xã Tiên Hội, Xã La Bằng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1126\",\"properties\":{\"matinhxa\":\"10.1137\",\"maxa\":1137},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "La Hiên (xã)",
- "truocsn": "Xã Cúc Đường, Xã La Hiên",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1155\",\"properties\":{\"matinhxa\":\"10.1166\",\"maxa\":1166},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Lam Vỹ (xã)",
- "truocsn": "Xã Linh Thông, Xã Lam Vỹ",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1148\",\"properties\":{\"matinhxa\":\"10.1159\",\"maxa\":1159},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Linh Sơn (phường)",
- "truocsn": "Phường Chùa Hang, Phường Đồng Bẩm, Xã Cao Ngạn, Xã Huống Thượng, Xã Linh Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1122\",\"properties\":{\"matinhxa\":\"10.1133\",\"maxa\":1133},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Nà Phặc (xã)",
- "truocsn": "Thị trấn Nà Phặc, Xã Trung Hòa",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1099\",\"properties\":{\"matinhxa\":\"10.1110\",\"maxa\":1110},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Na Rì (xã)",
- "truocsn": "Thị trấn Yến Lạc, Xã Sơn Thành, Xã Kim Lư",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1189\",\"properties\":{\"matinhxa\":\"10.1200\",\"maxa\":1200},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Nam Cường (xã)",
- "truocsn": "Xã Xuân Lạc, Xã Đồng Lạc, Xã Nam Cường",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1108\",\"properties\":{\"matinhxa\":\"10.1119\",\"maxa\":1119},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Nam Hòa (xã)",
- "truocsn": "Xã Cây Thị, Xã Nam Hòa",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1145\",\"properties\":{\"matinhxa\":\"10.1156\",\"maxa\":1156},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Ngân Sơn (xã)",
- "truocsn": "Thị trấn Vân Tùng, Xã Cốc Đán, Xã Đức Vân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1102\",\"properties\":{\"matinhxa\":\"10.1113\",\"maxa\":1113},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Nghĩa Tá (xã)",
- "truocsn": "Xã Lương Bằng, Xã Bình Trung, Xã Nghĩa Tá",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1112\",\"properties\":{\"matinhxa\":\"10.1123\",\"maxa\":1123},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Nghiên Loan (xã)",
- "truocsn": "Xã Xuân La, Xã An Thắng, Xã Nghiên Loan",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1090\",\"properties\":{\"matinhxa\":\"10.1101\",\"maxa\":1101},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Nghinh Tường (xã)",
- "truocsn": "Xã Vũ Chấn, Xã Nghinh Tường",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1153\",\"properties\":{\"matinhxa\":\"10.1164\",\"maxa\":1164},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Phan Đình Phùng (phường)",
- "truocsn": "Phường Trưng Vương, Phường Túc Duyên, Phường Đồng Quang, Phường Quang Trung, Phường Hoàng Văn Thụ, Phường Tân Thịnh, Phường Phan Đình Phùng, Phường Gia Sàng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1115\",\"properties\":{\"matinhxa\":\"10.1126\",\"maxa\":1126},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Phổ Yên (phường)",
- "truocsn": "Phường Ba Hàng, Phường Hồng Tiến, Phường Bãi Bông, Xã Đắc Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1164\",\"properties\":{\"matinhxa\":\"10.1175\",\"maxa\":1175},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Phong Quang (xã)",
- "truocsn": "Xã Dương Quang, Xã Đôn Phong",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1202\",\"properties\":{\"matinhxa\":\"10.1213\",\"maxa\":1213},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Phú Bình (xã)",
- "truocsn": "Thị trấn Hương Sơn, Xã Xuân Phương, Xã Úc Kỳ, Xã Nhã Lộng, Xã Bảo Lý, Xã Thượng Đình",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1177\",\"properties\":{\"matinhxa\":\"10.1188\",\"maxa\":1188},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Phú Đình (xã)",
- "truocsn": "Xã Điềm Mặc, Xã Phú Đình",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1139\",\"properties\":{\"matinhxa\":\"10.1150\",\"maxa\":1150},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Phú Lạc (xã)",
- "truocsn": "Xã Phục Linh, Xã Tân Linh, Xã Phú Lạc",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1124\",\"properties\":{\"matinhxa\":\"10.1135\",\"maxa\":1135},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Phú Lương (xã)",
- "truocsn": "Thị trấn Đu, Thị trấn Giang Tiên, Xã Yên Lạc, Xã Động Đạt",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1147\",\"properties\":{\"matinhxa\":\"10.1158\",\"maxa\":1158},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phú Thịnh (xã)",
- "truocsn": "Xã Bản Ngoại, Xã Phú Cường, Xã Phú Thịnh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1125\",\"properties\":{\"matinhxa\":\"10.1136\",\"maxa\":1136},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phủ Thông (xã)",
- "truocsn": "Thị trấn Phủ Thông, Xã Vi Hương, Xã Tân Tú, Xã Lục Bình",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1104\",\"properties\":{\"matinhxa\":\"10.1115\",\"maxa\":1115},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phú Xuyên (xã)",
- "truocsn": "Xã Yên Lãng, Xã Phú Xuyên",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1162\",\"properties\":{\"matinhxa\":\"10.1173\",\"maxa\":1173},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phúc Lộc (xã)",
- "truocsn": "Xã Bành Trạch, Xã Hà Hiệu, Xã Phúc Lộc",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1092\",\"properties\":{\"matinhxa\":\"10.1103\",\"maxa\":1103},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phúc Thuận (phường)",
- "truocsn": "Phường Bắc Sơn, Xã Minh Đức, Xã Phúc Thuận",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1165\",\"properties\":{\"matinhxa\":\"10.1176\",\"maxa\":1176},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phượng Tiến (xã)",
- "truocsn": "Xã Tân Dương, Xã Tân Thịnh, Xã Phượng Tiến",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1137\",\"properties\":{\"matinhxa\":\"10.1148\",\"maxa\":1148},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Quân Chu (xã)",
- "truocsn": "Thị trấn Quân Chu, Xã Cát Nê",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1123\",\"properties\":{\"matinhxa\":\"10.1134\",\"maxa\":1134},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Quan Triều (phường)",
- "truocsn": "Phường Tân Long, Phường Quang Vinh, Phường Quan Triều, Xã Sơn Cẩm",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1114\",\"properties\":{\"matinhxa\":\"10.1125\",\"maxa\":1125},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Quảng Bạch (xã)",
- "truocsn": "Xã Tân Lập, Xã Quảng Bạch",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1109\",\"properties\":{\"matinhxa\":\"10.1120\",\"maxa\":1120},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Quang Sơn (xã)",
- "truocsn": "Xã Tân Long, Xã Quang Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1161\",\"properties\":{\"matinhxa\":\"10.1172\",\"maxa\":1172},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Quyết Thắng (phường)",
- "truocsn": "Phường Thịnh Đán, Xã Phúc Hà, Xã Quyết Thắng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1118\",\"properties\":{\"matinhxa\":\"10.1129\",\"maxa\":1129},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Sảng Mộc (xã)",
- "truocsn": "xã Sảng Mộc (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1158\",\"properties\":{\"matinhxa\":\"10.1169\",\"maxa\":1169},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Sông Công (phường)",
- "truocsn": "Phường Thắng Lợi, Phường Phố Cò, Phường Cải Đan",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1132\",\"properties\":{\"matinhxa\":\"10.1143\",\"maxa\":1143},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tân Cương (xã)",
- "truocsn": "Xã Thịnh Đức, Xã Bình Sơn, Xã Tân Cương",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1120\",\"properties\":{\"matinhxa\":\"10.1131\",\"maxa\":1131},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tân Khánh (xã)",
- "truocsn": "Xã Bàn Đạt, Xã Đào Xá, Xã Tân Khánh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1179\",\"properties\":{\"matinhxa\":\"10.1190\",\"maxa\":1190},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tân Kỳ (xã)",
- "truocsn": "Xã Tân Sơn, Xã Cao Kỳ, Xã Hòa Mục",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1186\",\"properties\":{\"matinhxa\":\"10.1197\",\"maxa\":1197},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Hòa, Xã Tân Kim, Xã Tân Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1180\",\"properties\":{\"matinhxa\":\"10.1191\",\"maxa\":1191},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Thần Sa (xã)",
- "truocsn": "Xã Thượng Nung, Xã Thần Xa",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1154\",\"properties\":{\"matinhxa\":\"10.1165\",\"maxa\":1165},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Thành Công (xã)",
- "truocsn": "Xã Vạn Phái, Xã Thành Công",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1175\",\"properties\":{\"matinhxa\":\"10.1186\",\"maxa\":1186},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Thanh Mai (xã)",
- "truocsn": "Xã Thanh Vận, Xã Mai Lạp, Xã Thanh Mai",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1187\",\"properties\":{\"matinhxa\":\"10.1198\",\"maxa\":1198},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Thanh Thịnh (xã)",
- "truocsn": "Xã Nông Hạ, Xã Thanh Thịnh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1188\",\"properties\":{\"matinhxa\":\"10.1199\",\"maxa\":1199},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Thượng Minh (xã)",
- "truocsn": "Xã Yến Dương, Xã Chu Hương, Xã Mỹ Phương",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1094\",\"properties\":{\"matinhxa\":\"10.1105\",\"maxa\":1105},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Thượng Quan (xã)",
- "truocsn": "xã Thượng Quan (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1265\",\"properties\":{\"matinhxa\":\"10.1276\",\"maxa\":1276},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tích Lương (phường)",
- "truocsn": "Phường Trung Thành (thành phố Thái Nguyên), Phường Phú Xá, Phường Tân Thành, Phường Tân Lập, Phường Tích Lương, Phường Cam Giá",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1119\",\"properties\":{\"matinhxa\":\"10.1130\",\"maxa\":1130},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Trại Cau (xã)",
- "truocsn": "Thị trấn Trại Cau, Xã Hợp Tiến",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1160\",\"properties\":{\"matinhxa\":\"10.1171\",\"maxa\":1171},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Trần Phú (xã)",
- "truocsn": "Xã Văn Minh, Xã Cư Lễ, Xã Trần Phú",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1195\",\"properties\":{\"matinhxa\":\"10.1206\",\"maxa\":1206},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tràng Xá (xã)",
- "truocsn": "Xã Liên Minh, Xã Tràng Xá",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1156\",\"properties\":{\"matinhxa\":\"10.1167\",\"maxa\":1167},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Trung Hội (xã)",
- "truocsn": "Xã Phú Tiến, Xã Bộc Nhiêu, Xã Trung Hội",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1138\",\"properties\":{\"matinhxa\":\"10.1149\",\"maxa\":1149},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Trung Thành (phường)",
- "truocsn": "Phường Trung Thành (thành phố Phổ Yên), Phường Đông Cao, Phường Tân Phú, Phường Thuận Thành",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1176\",\"properties\":{\"matinhxa\":\"10.1187\",\"maxa\":1187},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Văn Hán (xã)",
- "truocsn": "Xã Khe Mo, Xã Văn Hán",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1144\",\"properties\":{\"matinhxa\":\"10.1155\",\"maxa\":1155},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Văn Lang (xã)",
- "truocsn": "Xã Kim Hỷ, Xã Lương Thượng, Xã Văn Lang",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1190\",\"properties\":{\"matinhxa\":\"10.1201\",\"maxa\":1201},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Văn Lăng (xã)",
- "truocsn": "Xã Hòa Bình, Xã Văn Lăng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1143\",\"properties\":{\"matinhxa\":\"10.1154\",\"maxa\":1154},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Vạn Phú (xã)",
- "truocsn": "Xã Văn Yên, Xã Vạn Phú",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1163\",\"properties\":{\"matinhxa\":\"10.1174\",\"maxa\":1174},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Vạn Xuân (phường)",
- "truocsn": "Phường Nam Tiến, Phường Đồng Tiến, Phường Tân Hương, Phường Tiên Phong",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1173\",\"properties\":{\"matinhxa\":\"10.1184\",\"maxa\":1184},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Vĩnh Thông (xã)",
- "truocsn": "Xã Sỹ Bình, Xã Vũ Muộn, Xã Cao Sơn",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1200\",\"properties\":{\"matinhxa\":\"10.1211\",\"maxa\":1211},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Võ Nhai (xã)",
- "truocsn": "Thị trấn Đình Cả, Xã Phú Thượng, Xã Lâu Thượng",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1152\",\"properties\":{\"matinhxa\":\"10.1163\",\"maxa\":1163},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Vô Tranh (xã)",
- "truocsn": "Xã Tức Tranh, Xã Cổ Lũng, Xã Phú Đô, Xã Vô Tranh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1142\",\"properties\":{\"matinhxa\":\"10.1153\",\"maxa\":1153},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Xuân Dương (xã)",
- "truocsn": "Xã Đổng Xá, Xã Liêm Thủy, Xã Xuân Dương",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1199\",\"properties\":{\"matinhxa\":\"10.1210\",\"maxa\":1210},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Yên Bình (xã)",
- "truocsn": "Xã Yên Cư, Xã Bình Văn, Xã Yên Hân",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1113\",\"properties\":{\"matinhxa\":\"10.1124\",\"maxa\":1124},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Yên Phong (xã)",
- "truocsn": "Xã Đại Sảo, Xã Yên Mỹ, Xã Yên Phong",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1111\",\"properties\":{\"matinhxa\":\"10.1122\",\"maxa\":1122},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Yên Thịnh (xã)",
- "truocsn": "Xã Bản Thi, Xã Yên Thượng, Xã Yên Thịnh",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1110\",\"properties\":{\"matinhxa\":\"10.1121\",\"maxa\":1121},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Yên Trạch (xã)",
- "truocsn": "Xã Yên Ninh, Xã Yên Đổ, Xã Yên Trạch",
- "provinceName": "tỉnh Thái Nguyên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1140\",\"properties\":{\"matinhxa\":\"10.1151\",\"maxa\":1151},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Ba Sơn (xã)",
- "truocsn": "Xã Mẫu Sơn (huyện Cao Lộc), Xã Cao Lâu, Xã Xuất Lễ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1800\",\"properties\":{\"matinhxa\":\"11.1814\",\"maxa\":1814},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bắc Sơn (xã)",
- "truocsn": "Thị trấn Bắc Sơn, Xã Long Đống, Xã Bắc Quỳnh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1840\",\"properties\":{\"matinhxa\":\"11.1854\",\"maxa\":1854},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bằng Mạc (xã)",
- "truocsn": "Xã Gia Lộc, Xã Bằng Hữu, Xã Thượng Cường, Xã Bằng Mạc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1805\",\"properties\":{\"matinhxa\":\"11.1819\",\"maxa\":1819},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bình Gia (xã)",
- "truocsn": "Xã Hoàng Văn Thụ (huyện Bình Gia), Xã Mông Ân, Thị trấn Bình Gia",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1838\",\"properties\":{\"matinhxa\":\"11.1852\",\"maxa\":1852},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Cai Kinh (xã)",
- "truocsn": "Xã Yên Vượng, Xã Yên Sơn, Xã Cai Kinh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1803\",\"properties\":{\"matinhxa\":\"11.1817\",\"maxa\":1817},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cao Lộc (xã)",
- "truocsn": "Xã Lộc Yên, Xã Thanh Lòa, Xã Thạch Đạn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1793\",\"properties\":{\"matinhxa\":\"11.1807\",\"maxa\":1807},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Châu Sơn (xã)",
- "truocsn": "Xã Bắc Lãng, Xã Đồng Thắng, Xã Cường Lợi, Xã Châu Sơn, Xã Kiên Mộc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1857\",\"properties\":{\"matinhxa\":\"11.1871\",\"maxa\":1871},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Chi Lăng (xã)",
- "truocsn": "Xã Chi Lăng (huyện Chi Lăng), Thị trấn Chi Lăng, Thị trấn Đồng Mỏ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1791\",\"properties\":{\"matinhxa\":\"11.1805\",\"maxa\":1805},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Chiến Thắng (xã)",
- "truocsn": "Xã Chiến Thắng (huyện Chi Lăng), Xã Vân An, Xã Liên Sơn, Xã Vân Thủy",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1804\",\"properties\":{\"matinhxa\":\"11.1818\",\"maxa\":1818},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Công Sơn (xã)",
- "truocsn": "Xã Hòa Cư, Xã Hải Yến, Xã Công Sơn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1801\",\"properties\":{\"matinhxa\":\"11.1815\",\"maxa\":1815},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Điềm He (xã)",
- "truocsn": "Xã Trấn Ninh, Xã Liên Hội, Xã Điềm He",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1815\",\"properties\":{\"matinhxa\":\"11.1829\",\"maxa\":1829},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đình Lập (xã)",
- "truocsn": "Thị trấn Đình Lập, Xã Đình Lập, Xã Bính Xá",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1855\",\"properties\":{\"matinhxa\":\"11.1869\",\"maxa\":1869},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đoàn Kết (xã)",
- "truocsn": "Xã Khánh Long, Xã Cao Minh, Xã Đoàn Kết",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1826\",\"properties\":{\"matinhxa\":\"11.1840\",\"maxa\":1840},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đồng Đăng (xã)",
- "truocsn": "Thị trấn Đồng Đăng, Xã Thụy Hùng (huyện Cao Lộc), Xã Phú Xá, Xã Hồng Phong, Xã Bảo Lâm",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1792\",\"properties\":{\"matinhxa\":\"11.1806\",\"maxa\":1806},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông Kinh (phường)",
- "truocsn": "Phường Vĩnh Trại, Phường Đông Kinh, Xã Yên Trạch, Xã Mai Pha",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1789\",\"properties\":{\"matinhxa\":\"11.1803\",\"maxa\":1803},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Hoa Thám (xã)",
- "truocsn": "Xã Hưng Đạo, Xã Hoa Thám",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1832\",\"properties\":{\"matinhxa\":\"11.1846\",\"maxa\":1846},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Hoàng Văn Thụ (xã)",
- "truocsn": "Xã Hồng Thái, Xã Hoàng Văn Thụ (huyện Văn Lãng), Xã Tân Mỹ, Xã Nhạc Kỳ, Xã Tân Thanh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1813\",\"properties\":{\"matinhxa\":\"11.1827\",\"maxa\":1827},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hội Hoan (xã)",
- "truocsn": "Xã Gia Miễn, Xã Hội Hoan",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1812\",\"properties\":{\"matinhxa\":\"11.1826\",\"maxa\":1826},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hồng Phong (xã)",
- "truocsn": "Xã Hồng Phong (huyện Bình Gia), Xã Minh Khai",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1834\",\"properties\":{\"matinhxa\":\"11.1848\",\"maxa\":1848},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hưng Vũ (xã)",
- "truocsn": "Xã Trấn Yên, Xã Hưng Vũ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1821\",\"properties\":{\"matinhxa\":\"11.1835\",\"maxa\":1835},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hữu Liên (xã)",
- "truocsn": "Xã Yên Thịnh, Xã Hữu Liên",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1802\",\"properties\":{\"matinhxa\":\"11.1816\",\"maxa\":1816},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hữu Lũng (xã)",
- "truocsn": "Thị trấn Hữu Lũng, Xã Đồng Tân, Xã Hồ Sơn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1842\",\"properties\":{\"matinhxa\":\"11.1856\",\"maxa\":1856},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Kháng Chiến (xã)",
- "truocsn": "Xã Trung Thành, Xã Tân Minh, Xã Kháng Chiến",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1830\",\"properties\":{\"matinhxa\":\"11.1844\",\"maxa\":1844},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Khánh Khê (xã)",
- "truocsn": "Xã Xuân Long, Xã Bình Trung, Xã Khánh Khê",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1816\",\"properties\":{\"matinhxa\":\"11.1830\",\"maxa\":1830},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Khuất Xá (xã)",
- "truocsn": "Xã Tam Gia, Xã Khuất Xá",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1851\",\"properties\":{\"matinhxa\":\"11.1865\",\"maxa\":1865},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Kiên Mộc (xã)",
- "truocsn": "Xã Bắc Xa, Xã Bính Xá, Xã Kiên Mộc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1854\",\"properties\":{\"matinhxa\":\"11.1868\",\"maxa\":1868},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Kỳ Lừa (phường)",
- "truocsn": "Phường Hoàng Văn Thụ, Thị trấn Cao Lộc, Xã Hợp Thành, Xã Tân Liên, Xã Gia Cát",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1788\",\"properties\":{\"matinhxa\":\"11.1802\",\"maxa\":1802},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Lộc Bình (xã)",
- "truocsn": "Thị trấn Lộc Bình, Xã Khánh Xuân, Xã Đồng Bục, Xã Hữu Khánh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1849\",\"properties\":{\"matinhxa\":\"11.1863\",\"maxa\":1863},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Lợi Bác (xã)",
- "truocsn": "Xã Sàn Viên, Xã Lợi Bác",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1852\",\"properties\":{\"matinhxa\":\"11.1866\",\"maxa\":1866},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Lương Văn Tri (phường)",
- "truocsn": "Phường Chi Lăng, Xã Quảng Lạc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1790\",\"properties\":{\"matinhxa\":\"11.1804\",\"maxa\":1804},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Mẫu Sơn (xã)",
- "truocsn": "Xã Mẫu Sơn (huyện Lộc Bình), Xã Yên Khoái, Xã Tú Mịch",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1850\",\"properties\":{\"matinhxa\":\"11.1864\",\"maxa\":1864},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Na Dương (xã)",
- "truocsn": "Thị trấn Na Dương, Xã Đông Quan, Xã Tú Đoạn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1848\",\"properties\":{\"matinhxa\":\"11.1862\",\"maxa\":1862},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Na Sầm (xã)",
- "truocsn": "Thị trấn Na Sầm, Xã Hoàng Việt, Xã Bắc Hùng",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1810\",\"properties\":{\"matinhxa\":\"11.1824\",\"maxa\":1824},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Nhân Lý (xã)",
- "truocsn": "Xã Mai Sao, Xã Bắc Thủy, Xã Lâm Sơn, Xã Nhân Lý",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1806\",\"properties\":{\"matinhxa\":\"11.1820\",\"maxa\":1820},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Nhất Hòa (xã)",
- "truocsn": "Xã Tân Thành (huyện Bắc Sơn), Xã Nhất Tiến, Xã Nhất Hòa",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1824\",\"properties\":{\"matinhxa\":\"11.1838\",\"maxa\":1838},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Quan Sơn (xã)",
- "truocsn": "Xã Hữu Kiên, Xã Quan Sơn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1808\",\"properties\":{\"matinhxa\":\"11.1822\",\"maxa\":1822},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Quốc Khánh (xã)",
- "truocsn": "Xã Tri Phương, Xã Đội Cấn, Xã Quốc Khánh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1827\",\"properties\":{\"matinhxa\":\"11.1841\",\"maxa\":1841},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Quốc Việt (xã)",
- "truocsn": "Xã Đào Viên, Xã Quốc Việt",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1831\",\"properties\":{\"matinhxa\":\"11.1845\",\"maxa\":1845},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Quý Hòa (xã)",
- "truocsn": "Xã Vĩnh Yên, Xã Quý Hòa",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1833\",\"properties\":{\"matinhxa\":\"11.1847\",\"maxa\":1847},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Tam Thanh (phường)",
- "truocsn": "Phường Tam Thanh, Xã Hoàng Đồng",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1787\",\"properties\":{\"matinhxa\":\"11.1801\",\"maxa\":1801},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Tân Đoàn (xã)",
- "truocsn": "Xã Tân Thành (huyện Cao Lộc), Xã Tràng Phái, Xã Tân Đoàn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1817\",\"properties\":{\"matinhxa\":\"11.1831\",\"maxa\":1831},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Thành (huyện Hữu Lũng), Xã Hòa Lạc, Xã Hòa Sơn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1846\",\"properties\":{\"matinhxa\":\"11.1860\",\"maxa\":1860},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Tân Yên, Xã Kim Đồng, Xã Tân Tiến",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1828\",\"properties\":{\"matinhxa\":\"11.1842\",\"maxa\":1842},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Tân Tri (xã)",
- "truocsn": "Xã Đồng Ý, Xã Vạn Thủy, Xã Tân Tri",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1820\",\"properties\":{\"matinhxa\":\"11.1834\",\"maxa\":1834},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Tân Văn (xã)",
- "truocsn": "Xã Hồng Thái (huyện Bình Gia), Xã Bình La, Xã Tân Văn",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1839\",\"properties\":{\"matinhxa\":\"11.1853\",\"maxa\":1853},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Thái Bình (xã)",
- "truocsn": "Thị trấn Nông Trường Thái Bình, Xã Lâm Ca, Xã Thái Bình",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1856\",\"properties\":{\"matinhxa\":\"11.1870\",\"maxa\":1870},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Thất Khê (xã)",
- "truocsn": "Xã Chi Lăng (huyện Tràng Định), Xã Chí Minh, Thị trấn Thất Khê",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1825\",\"properties\":{\"matinhxa\":\"11.1839\",\"maxa\":1839},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Thiện Hòa (xã)",
- "truocsn": "Xã Yên Lỗ, Xã Thiện Hòa",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1835\",\"properties\":{\"matinhxa\":\"11.1849\",\"maxa\":1849},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Thiện Long (xã)",
- "truocsn": "Xã Hòa Bình (huyện Bình Gia), Xã Tân Hòa, Xã Thiện Long",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1837\",\"properties\":{\"matinhxa\":\"11.1851\",\"maxa\":1851},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Thiện Tân (xã)",
- "truocsn": "Xã Thanh Sơn, Xã Đồng Tiến, Xã Thiện Tân",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1844\",\"properties\":{\"matinhxa\":\"11.1858\",\"maxa\":1858},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Thiện Thuật (xã)",
- "truocsn": "Xã Quang Trung, Xã Thiện Thuật",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1836\",\"properties\":{\"matinhxa\":\"11.1850\",\"maxa\":1850},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Thống Nhất (xã)",
- "truocsn": "Xã Minh Hiệp, Xã Hữu Lân, Xã Thống Nhất",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1841\",\"properties\":{\"matinhxa\":\"11.1855\",\"maxa\":1855},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Thụy Hùng (xã)",
- "truocsn": "Xã Thụy Hùng (huyện Văn Lãng), Xã Thanh Long, Xã Trùng Khánh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1809\",\"properties\":{\"matinhxa\":\"11.1823\",\"maxa\":1823},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Tràng Định (xã)",
- "truocsn": "Xã Đề Thám, Xã Hùng Sơn, Xã Hùng Việt",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1829\",\"properties\":{\"matinhxa\":\"11.1843\",\"maxa\":1843},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Tri Lễ (xã)",
- "truocsn": "Xã Lương Năng, Xã Hữu Lễ, Xã Tri Lễ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1818\",\"properties\":{\"matinhxa\":\"11.1832\",\"maxa\":1832},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Tuấn Sơn (xã)",
- "truocsn": "Xã Minh Sơn, Xã Minh Hòa, Xã Hòa Thắng",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1847\",\"properties\":{\"matinhxa\":\"11.1861\",\"maxa\":1861},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Văn Lãng (xã)",
- "truocsn": "Xã Bắc Việt, Xã Bắc La, Xã Tân Tác, Xã Thành Hòa",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1811\",\"properties\":{\"matinhxa\":\"11.1825\",\"maxa\":1825},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Vạn Linh (xã)",
- "truocsn": "Xã Hòa Bình (huyện Chi Lăng), Xã Y Tịch, Xã Vạn Linh",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1807\",\"properties\":{\"matinhxa\":\"11.1821\",\"maxa\":1821},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Vân Nham (xã)",
- "truocsn": "Xã Minh Tiến, Xã Nhật Tiến, Xã Vân Nham",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1845\",\"properties\":{\"matinhxa\":\"11.1859\",\"maxa\":1859},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Văn Quan (xã)",
- "truocsn": "Xã Hòa Bình (huyện Văn Quan), Xã Tú Xuyên, Thị trấn Văn Quan",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1814\",\"properties\":{\"matinhxa\":\"11.1828\",\"maxa\":1828},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Vũ Lăng (xã)",
- "truocsn": "Xã Tân Lập, Xã Tân Hương, Xã Chiêu Vũ, Xã Vũ Lăng",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1822\",\"properties\":{\"matinhxa\":\"11.1836\",\"maxa\":1836},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Vũ Lễ (xã)",
- "truocsn": "Xã Chiến Thắng (huyện Bắc Sơn), Xã Vũ Sơn, Xã Vũ Lễ",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1823\",\"properties\":{\"matinhxa\":\"11.1837\",\"maxa\":1837},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Xuân Dương (xã)",
- "truocsn": "Xã Nam Quan, Xã Ái Quốc, Xã Xuân Dương",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1853\",\"properties\":{\"matinhxa\":\"11.1867\",\"maxa\":1867},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Yên Bình (xã)",
- "truocsn": "Xã Hòa Bình (huyện Hữu Lũng), Xã Quyết Thắng, Xã Yên Bình",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1843\",\"properties\":{\"matinhxa\":\"11.1857\",\"maxa\":1857},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Yên Phúc (xã)",
- "truocsn": "Xã An Sơn, Xã Bình Phúc, Xã Yên Phúc",
- "provinceName": "tỉnh Lạng Sơn",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1819\",\"properties\":{\"matinhxa\":\"11.1833\",\"maxa\":1833},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Sinh (phường)",
- "truocsn": "Phường Bình Dương, Xã An Sinh, Xã Việt Dân, Phường Đức Chính",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1900\",\"properties\":{\"matinhxa\":\"3.1914\",\"maxa\":1914},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Chẽ (xã)",
- "truocsn": "Thị trấn Ba Chẽ, Xã Thanh Sơn, Xã Nam Sơn, Xã Đồn Đạc, Xã Hải Lạng",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1882\",\"properties\":{\"matinhxa\":\"3.1896\",\"maxa\":1896},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bãi Cháy (phường)",
- "truocsn": "Phường Hùng Thắng, Phường Bãi Cháy",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1869\",\"properties\":{\"matinhxa\":\"3.1883\",\"maxa\":1883},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bình Khê (phường)",
- "truocsn": "Phường Tràng An, Phường Bình Khê, Xã Tràng Lương",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1860\",\"properties\":{\"matinhxa\":\"3.1874\",\"maxa\":1874},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bình Liêu (xã)",
- "truocsn": "Thị trấn Bình Liêu, Xã Húc Động, Xã Vô Ngại",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1875\",\"properties\":{\"matinhxa\":\"3.1889\",\"maxa\":1889},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cái Chiên (xã)",
- "truocsn": "xã Cái Chiên (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3299\",\"properties\":{\"matinhxa\":\"3.3315\",\"maxa\":3315},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Cẩm Phả (phường)",
- "truocsn": "Phường Cẩm Trung, Phường Cẩm Thành, Phường Cẩm Bình, Phường Cẩm Tây, Phường Cẩm Đông",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1873\",\"properties\":{\"matinhxa\":\"3.1887\",\"maxa\":1887},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cao Xanh (phường)",
- "truocsn": "Phường Hà Khánh, Phường Cao Xanh",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1880\",\"properties\":{\"matinhxa\":\"3.1894\",\"maxa\":1894},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cô Tô (đặc khu)",
- "truocsn": "Thị trấn Cô Tô, Xã Đồng Tiến, Xã Thanh Lân",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3292\",\"properties\":{\"matinhxa\":\"3.3308\",\"maxa\":3308},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cửa Ông (phường)",
- "truocsn": "Phường Cẩm Phú, Phường Cẩm Thịnh, Phường Cẩm Sơn, Phường Cửa Ông",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1874\",\"properties\":{\"matinhxa\":\"3.1888\",\"maxa\":1888},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đầm Hà (xã)",
- "truocsn": "Thị trấn Đầm Hà, Xã Tân Bình, Xã Đại Bình, Xã Tân Lập, Xã Đầm Hà",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1892\",\"properties\":{\"matinhxa\":\"3.1906\",\"maxa\":1906},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Điền Xá (xã)",
- "truocsn": "Xã Hà Lâu, Xã Điền Xá, Xã Yên Than",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1876\",\"properties\":{\"matinhxa\":\"3.1890\",\"maxa\":1890},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đông Mai (phường)",
- "truocsn": "Phường Minh Thành, Phường Đông Mai",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1879\",\"properties\":{\"matinhxa\":\"3.1893\",\"maxa\":1893},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đông Ngũ (xã)",
- "truocsn": "Xã Đông Hải, Xã Đại Dực, Xã Đông Ngũ",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1896\",\"properties\":{\"matinhxa\":\"3.1910\",\"maxa\":1910},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông Triều (phường)",
- "truocsn": "Phường Thủy An, Phường Hưng Đạo, Phường Hồng Phong, Xã Nguyễn Huệ, Phường Đức Chính",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1901\",\"properties\":{\"matinhxa\":\"3.1915\",\"maxa\":1915},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đường Hoa (xã)",
- "truocsn": "Xã Quảng Sơn, Xã Đường Hoa, Xã Quảng Long",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1895\",\"properties\":{\"matinhxa\":\"3.1909\",\"maxa\":1909},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Hà An (phường)",
- "truocsn": "Phường Tân An, Phường Hà An, Xã Hoàng Tân, Xã Liên Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1865\",\"properties\":{\"matinhxa\":\"3.1879\",\"maxa\":1879},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hà Lầm (phường)",
- "truocsn": "Phường Cao Thắng, Phường Hà Trung, Phường Hà Lầm",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1870\",\"properties\":{\"matinhxa\":\"3.1884\",\"maxa\":1884},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hạ Long (phường)",
- "truocsn": "Phường Hồng Hà, Phường Hồng Hải",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3297\",\"properties\":{\"matinhxa\":\"3.3313\",\"maxa\":3313},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hà Tu (phường)",
- "truocsn": "Phường Hà Phong, Phường Hà Tu",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3283\",\"properties\":{\"matinhxa\":\"3.3299\",\"maxa\":3299},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hải Hòa (xã)",
- "truocsn": "Xã Hải Lạng, Xã Hải Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1899\",\"properties\":{\"matinhxa\":\"3.1913\",\"maxa\":1913},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hải Lạng (xã)",
- "truocsn": "Xã Đồng Rui, Xã Hải Lạng, Xã Hải Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1885\",\"properties\":{\"matinhxa\":\"3.1899\",\"maxa\":1899},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hải Ninh (xã)",
- "truocsn": "Xã Quảng Nghĩa, Xã Hải Tiến",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1888\",\"properties\":{\"matinhxa\":\"3.1902\",\"maxa\":1902},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Hải Sơn (xã)",
- "truocsn": "Xã Bắc Sơn, Xã Hải Sơn",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1887\",\"properties\":{\"matinhxa\":\"3.1901\",\"maxa\":1901},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hiệp Hòa (phường)",
- "truocsn": "Phường Cộng Hòa, Xã Sông Khoai, Xã Hiệp Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1878\",\"properties\":{\"matinhxa\":\"3.1892\",\"maxa\":1892},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hoàng Quế (phường)",
- "truocsn": "Phường Yên Đức, Phường Hoàng Quế, Xã Hồng Thái Tây, Xã Hồng Thái Đông",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1861\",\"properties\":{\"matinhxa\":\"3.1875\",\"maxa\":1875},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hoành Bồ (phường)",
- "truocsn": "Phường Hoành Bồ, Xã Sơn Dương, Xã Lê Lợi, Xã Đồng Lâm",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1866\",\"properties\":{\"matinhxa\":\"3.1880\",\"maxa\":1880},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hoành Mô (xã)",
- "truocsn": "Xã Đồng Văn, Xã Hoành Mô",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1893\",\"properties\":{\"matinhxa\":\"3.1907\",\"maxa\":1907},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hồng Gai (phường)",
- "truocsn": "Phường Bạch Đằng, Phường Trần Hưng Đạo, Phường Hồng Gai",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3293\",\"properties\":{\"matinhxa\":\"3.3309\",\"maxa\":3309},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Kỳ Thượng (xã)",
- "truocsn": "Xã Thanh Lâm, Xã Đạp Thanh, Xã Kỳ Thượng",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1883\",\"properties\":{\"matinhxa\":\"3.1897\",\"maxa\":1897},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Liên Hòa (phường)",
- "truocsn": "Phường Phong Hải, Xã Liên Vị, Xã Tiền Phong, Xã Liên Hòa",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1881\",\"properties\":{\"matinhxa\":\"3.1895\",\"maxa\":1895},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Lục Hồn (xã)",
- "truocsn": "Xã Đồng Tâm, Xã Lục Hồn",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1894\",\"properties\":{\"matinhxa\":\"3.1908\",\"maxa\":1908},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Lương Minh (xã)",
- "truocsn": "Xã Đồng Sơn, Xã Lương Minh",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1862\",\"properties\":{\"matinhxa\":\"3.1876\",\"maxa\":1876},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Mạo Khê (phường)",
- "truocsn": "Phường Xuân Sơn, Phường Kim Sơn, Phường Yên Thọ, Phường Mạo Khê",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1902\",\"properties\":{\"matinhxa\":\"3.1916\",\"maxa\":1916},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Móng Cái 1 (phường)",
- "truocsn": "Phường Trần Phú, Phường Hải Hòa, Phường Bình Ngọc, Phường Trà Cổ, Xã Hải Xuân",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1904\",\"properties\":{\"matinhxa\":\"3.1918\",\"maxa\":1918},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Móng Cái 2 (phường)",
- "truocsn": "Phường Ninh Dương, Phường Ka Long, Xã Vạn Ninh",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1898\",\"properties\":{\"matinhxa\":\"3.1912\",\"maxa\":1912},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Móng Cái 3 (phường)",
- "truocsn": "Phường Hải Yên, Xã Hải Đông",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1890\",\"properties\":{\"matinhxa\":\"3.1904\",\"maxa\":1904},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Mông Dương (phường)",
- "truocsn": "Phường Mông Dương, Xã Dương Huy",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1872\",\"properties\":{\"matinhxa\":\"3.1886\",\"maxa\":1886},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Phong Cốc (phường)",
- "truocsn": "Phường Nam Hòa, Phường Yên Hải, Phường Phong Cốc, Xã Cẩm La",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1877\",\"properties\":{\"matinhxa\":\"3.1891\",\"maxa\":1891},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Quảng Đức (xã)",
- "truocsn": "Xã Quảng Thành, Xã Quảng Thịnh, Xã Quảng Đức",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1897\",\"properties\":{\"matinhxa\":\"3.1911\",\"maxa\":1911},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Quảng Hà (xã)",
- "truocsn": "Thị trấn Quảng Hà, Xã Quảng Minh, Xã Quảng Chính, Xã Quảng Phong, Xã Quảng Long",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1889\",\"properties\":{\"matinhxa\":\"3.1903\",\"maxa\":1903},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Quang Hanh (phường)",
- "truocsn": "Phường Cẩm Thạch, Phường Cẩm Thủy, Phường Quang Hanh",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1871\",\"properties\":{\"matinhxa\":\"3.1885\",\"maxa\":1885},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Quảng La (xã)",
- "truocsn": "Xã Bằng Cả, Xã Dân Chủ, Xã Tân Dân, Xã Quảng La",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1863\",\"properties\":{\"matinhxa\":\"3.1877\",\"maxa\":1877},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Quảng Tân (xã)",
- "truocsn": "Xã Quảng An, Xã Dực Yên, Xã Quảng Lâm, Xã Quảng Tân",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1891\",\"properties\":{\"matinhxa\":\"3.1905\",\"maxa\":1905},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Quảng Yên (phường)",
- "truocsn": "Phường Yên Giang, Phường Quảng Yên, Xã Tiền An",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1886\",\"properties\":{\"matinhxa\":\"3.1900\",\"maxa\":1900},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Thống Nhất (xã)",
- "truocsn": "Xã Vũ Oai, Xã Hòa Bình, Xã Thống Nhất, Xã Đồng Lâm",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1867\",\"properties\":{\"matinhxa\":\"3.1881\",\"maxa\":1881},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Tiên Yên (xã)",
- "truocsn": "Thị trấn Tiên Yên, Xã Phong Dụ, Xã Tiên Lãng, Xã Yên Than, Xã Đại Dực, Xã Đông Ngũ, Xã Vô Ngại",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1884\",\"properties\":{\"matinhxa\":\"3.1898\",\"maxa\":1898},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Tuần Châu (phường)",
- "truocsn": "Phường Đại Yên, Phường Tuần Châu, Phường Hà Khẩu",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1903\",\"properties\":{\"matinhxa\":\"3.1917\",\"maxa\":1917},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Uông Bí (phường)",
- "truocsn": "Phường Quang Trung, Phường Thanh Sơn, Phường Yên Thanh, Phường Trưng Vương",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1858\",\"properties\":{\"matinhxa\":\"3.1872\",\"maxa\":1872},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Vân Đồn (đặc khu)",
- "truocsn": "Thị trấn Cái Rồng, Xã Bản Sen, Xã Bình Dân, Xã Đài Xuyên, Xã Đoàn Kết, Xã Đông Xá, Xã Hạ Long, Xã Minh Châu, Xã Ngọc Vừng, Xã Quan Lạn, Xã Thắng Lợi, Xã Vạn Yên",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3298\",\"properties\":{\"matinhxa\":\"3.3314\",\"maxa\":3314},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Vàng Danh (phường)",
- "truocsn": "Phường Bắc Sơn, Phường Nam Khê, Phường Vàng Danh, Phường Trưng Vương",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1868\",\"properties\":{\"matinhxa\":\"3.1882\",\"maxa\":1882},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Việt Hưng (phường)",
- "truocsn": "Phường Giếng Đáy, Phường Việt Hưng, Phường Hà Khẩu",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1864\",\"properties\":{\"matinhxa\":\"3.1878\",\"maxa\":1878},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Vĩnh Thực (xã)",
- "truocsn": "Xã Vĩnh Trung, Xã Vĩnh Thực",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3300\",\"properties\":{\"matinhxa\":\"3.3316\",\"maxa\":3316},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Yên Tử (phường)",
- "truocsn": "Phường Phương Đông, Phường Phương Nam, Xã Thượng Yên Công",
- "provinceName": "tỉnh Quảng Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1859\",\"properties\":{\"matinhxa\":\"3.1873\",\"maxa\":1873},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Bình (xã)",
- "truocsn": "Xã Hưng Thi, Xã Thống Nhất, Xã An Bình",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1675\",\"properties\":{\"matinhxa\":\"12.1689\",\"maxa\":1689},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Nghĩa (xã)",
- "truocsn": "Thị trấn Ba Hàng Đồi, Xã Phú Nghĩa, Xã Phú Thành",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1647\",\"properties\":{\"matinhxa\":\"12.1660\",\"maxa\":1660},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Âu Cơ (phường)",
- "truocsn": "Phường Thanh Vinh, Phường Âu Cơ, Xã Thanh Minh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1567\",\"properties\":{\"matinhxa\":\"12.1580\",\"maxa\":1580},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bản Nguyên (xã)",
- "truocsn": "Xã Cao Xá, Xã Vĩnh Lại, Xã Bản Nguyên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1573\",\"properties\":{\"matinhxa\":\"12.1586\",\"maxa\":1586},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bằng Luân (xã)",
- "truocsn": "Xã Bằng Doãn, Xã Phúc Lai, Xã Bằng Luân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1543\",\"properties\":{\"matinhxa\":\"12.1556\",\"maxa\":1556},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bao La (xã)",
- "truocsn": "Xã Mai Hịch, Xã Xăm Khòe, Xã Bao La",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1687\",\"properties\":{\"matinhxa\":\"12.1701\",\"maxa\":1701},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Nguyên (xã)",
- "truocsn": "Thị trấn Hương Canh, Xã Tam Hợp, Xã Quất Lưu, Xã Sơn Lôi",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1630\",\"properties\":{\"matinhxa\":\"12.1643\",\"maxa\":1643},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Phú (xã)",
- "truocsn": "Xã Tiên Du, Xã An Đạo, Xã Bình Phú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1591\",\"properties\":{\"matinhxa\":\"12.1604\",\"maxa\":1604},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Tuyền (xã)",
- "truocsn": "Thị trấn Bá Hiến, Xã Trung Mỹ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1629\",\"properties\":{\"matinhxa\":\"12.1642\",\"maxa\":1642},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Xuyên (xã)",
- "truocsn": "Thị trấn Gia Khánh, Xã Hương Sơn, Xã Thiện Kế",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1628\",\"properties\":{\"matinhxa\":\"12.1641\",\"maxa\":1641},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cẩm Khê (xã)",
- "truocsn": "Thị trấn Cẩm Khê, Xã Minh Tân, Xã Phong Thịnh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1566\",\"properties\":{\"matinhxa\":\"12.1579\",\"maxa\":1579},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cao Dương (xã)",
- "truocsn": "Xã Thanh Cao, Xã Thanh Sơn, Xã Cao Dương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1649\",\"properties\":{\"matinhxa\":\"12.1662\",\"maxa\":1662},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cao Phong (xã)",
- "truocsn": "Thị trấn Cao Phong, Xã Hợp Phong, Xã Thu Phong",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1658\",\"properties\":{\"matinhxa\":\"12.1671\",\"maxa\":1671},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cao Sơn (xã)",
- "truocsn": "Xã Tân Minh, Xã Cao Sơn (huyện Đà Bắc)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1677\",\"properties\":{\"matinhxa\":\"12.1691\",\"maxa\":1691},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Chân Mộng (xã)",
- "truocsn": "Xã Hùng Long, Xã Yên Kiện, Xã Chân Mộng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1546\",\"properties\":{\"matinhxa\":\"12.1559\",\"maxa\":1559},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Chí Đám (xã)",
- "truocsn": "Xã Hùng Xuyên, Xã Chí Đám",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1544\",\"properties\":{\"matinhxa\":\"12.1557\",\"maxa\":1557},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Chí Tiên (xã)",
- "truocsn": "Xã Sơn Cương, Xã Thanh Hà, Xã Chí Tiên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1580\",\"properties\":{\"matinhxa\":\"12.1593\",\"maxa\":1593},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cự Đồng (xã)",
- "truocsn": "Xã Tất Thắng, Xã Thắng Sơn, Xã Cự Đồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1578\",\"properties\":{\"matinhxa\":\"12.1591\",\"maxa\":1591},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đà Bắc (xã)",
- "truocsn": "Thị trấn Đà Bắc, Xã Hiền Lương (huyện Đà Bắc), Xã Toàn Sơn, Xã Tú Lý",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1681\",\"properties\":{\"matinhxa\":\"12.1695\",\"maxa\":1695},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đại Đình (xã)",
- "truocsn": "Thị trấn Đại Đình, Xã Bồ Lý",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1627\",\"properties\":{\"matinhxa\":\"12.1640\",\"maxa\":1640},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đại Đồng (xã)",
- "truocsn": "Xã Ân Nghĩa, Xã Tân Mỹ, Xã Yên Nghiệp",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1672\",\"properties\":{\"matinhxa\":\"12.1686\",\"maxa\":1686},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Dân Chủ (xã)",
- "truocsn": "Xã Bảo Thanh, Xã Trị Quận, Xã Hạ Giáp, Xã Gia Thanh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1555\",\"properties\":{\"matinhxa\":\"12.1568\",\"maxa\":1568},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đan Thượng (xã)",
- "truocsn": "Xã Tứ Hiệp, Xã Đại Phạm, Xã Hà Lương, Xã Đan Thượng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1602\",\"properties\":{\"matinhxa\":\"12.1615\",\"maxa\":1615},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đạo Trù (xã)",
- "truocsn": "Xã Yên Dương, Xã Đạo Trù",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1626\",\"properties\":{\"matinhxa\":\"12.1639\",\"maxa\":1639},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đào Xá (xã)",
- "truocsn": "Xã Xuân Lộc, Xã Thạch Đồng, Xã Tân Phương, Xã Đào Xá",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1570\",\"properties\":{\"matinhxa\":\"12.1583\",\"maxa\":1583},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đoan Hùng (xã)",
- "truocsn": "Thị trấn Đoan Hùng, Xã Hợp Nhất, Xã Ngọc Quan",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1542\",\"properties\":{\"matinhxa\":\"12.1555\",\"maxa\":1555},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đồng Lương (xã)",
- "truocsn": "Xã Điêu Lương, Xã Yên Dưỡng, Xã Đồng Lương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1587\",\"properties\":{\"matinhxa\":\"12.1600\",\"maxa\":1600},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đông Thành (xã)",
- "truocsn": "Xã Khải Xuân, Xã Võ Lao, Xã Đông Thành",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1588\",\"properties\":{\"matinhxa\":\"12.1601\",\"maxa\":1601},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Đức Nhàn (xã)",
- "truocsn": "Xã Mường Chiềng, Xã Nánh Nghê",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1683\",\"properties\":{\"matinhxa\":\"12.1697\",\"maxa\":1697},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Dũng Tiến (xã)",
- "truocsn": "Xã Cuối Hạ, Xã Mỵ Hòa, Xã Nuông Dăm",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1656\",\"properties\":{\"matinhxa\":\"12.1669\",\"maxa\":1669},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hạ Hòa (xã)",
- "truocsn": "Thị trấn Hạ Hòa, Xã Minh Hạc, Xã Ấm Hạ, Xã Gia Điền",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1547\",\"properties\":{\"matinhxa\":\"12.1560\",\"maxa\":1560},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hải Lựu (xã)",
- "truocsn": "Xã Nhân Đạo, Xã Đôn Nhân, Xã Phương Khoan, Xã Hải Lựu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1614\",\"properties\":{\"matinhxa\":\"12.1627\",\"maxa\":1627},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hiền Lương (xã)",
- "truocsn": "Xã Hiền Lương (huyện Hạ Hòa), Xã Xuân Áng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1603\",\"properties\":{\"matinhxa\":\"12.1616\",\"maxa\":1616},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hiền Quan (xã)",
- "truocsn": "Xã Thanh Uyên, Xã Bắc Sơn, Xã Hiền Quan",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1562\",\"properties\":{\"matinhxa\":\"12.1575\",\"maxa\":1575},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hòa Bình (phường)",
- "truocsn": "Phường Đồng Tiến, Phường Hữu Nghị, Phường Phương Lâm, Phường Quỳnh Lâm, Phường Tân Thịnh, Phường Thịnh Lang, Phường Trung Minh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1651\",\"properties\":{\"matinhxa\":\"12.1664\",\"maxa\":1664},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hoàng An (xã)",
- "truocsn": "Xã Hoàng Đan, Xã Hoàng Lâu, Xã An Hòa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1624\",\"properties\":{\"matinhxa\":\"12.1637\",\"maxa\":1637},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hoàng Cương (xã)",
- "truocsn": "Xã Ninh Dân, Xã Mạn Lạn, Xã Hoàng Cương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1577\",\"properties\":{\"matinhxa\":\"12.1590\",\"maxa\":1590},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hội Thịnh (xã)",
- "truocsn": "Xã Duy Phiên, Xã Thanh Vân, Xã Hội Thịnh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1623\",\"properties\":{\"matinhxa\":\"12.1636\",\"maxa\":1636},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hợp Kim (xã)",
- "truocsn": "Xã Kim Lập, Xã Nam Thượng, Xã Sào Báy",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1660\",\"properties\":{\"matinhxa\":\"12.1673\",\"maxa\":1673},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hợp Lý (xã)",
- "truocsn": "Xã Ngọc Mỹ (huyện Lập Thạch), Xã Quang Sơn, Xã Hợp Lý",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1643\",\"properties\":{\"matinhxa\":\"12.1656\",\"maxa\":1656},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hùng Việt (xã)",
- "truocsn": "Xã Nhật Tiến, Xã Hùng Việt",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1569\",\"properties\":{\"matinhxa\":\"12.1582\",\"maxa\":1582},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hương Cần (xã)",
- "truocsn": "Xã Yên Lương, Xã Yên Lãng, Xã Hương Cần",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1600\",\"properties\":{\"matinhxa\":\"12.1613\",\"maxa\":1613},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hy Cương (xã)",
- "truocsn": "Xã Thanh Đình, Xã Chu Hóa, Xã Hy Cương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1560\",\"properties\":{\"matinhxa\":\"12.1573\",\"maxa\":1573},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Khả Cửu (xã)",
- "truocsn": "Xã Đông Cửu, Xã Thượng Cửu, Xã Khả Cửu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1590\",\"properties\":{\"matinhxa\":\"12.1603\",\"maxa\":1603},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Kim Bôi (xã)",
- "truocsn": "Thị trấn Bo, Xã Vĩnh Đồng, Xã Kim Bôi",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1665\",\"properties\":{\"matinhxa\":\"12.1679\",\"maxa\":1679},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Kỳ Sơn (phường)",
- "truocsn": "Phường Kỳ Sơn, Xã Độc Lập, Xã Mông Hóa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1679\",\"properties\":{\"matinhxa\":\"12.1693\",\"maxa\":1693},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Lạc Lương (xã)",
- "truocsn": "Xã Bảo Hiệu, Xã Đa Phúc, Xã Lạc Sỹ, Xã Lạc Lương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1664\",\"properties\":{\"matinhxa\":\"12.1678\",\"maxa\":1678},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lạc Sơn (xã)",
- "truocsn": "Thị trấn Vụ Bản, Xã Hương Nhượng, Xã Vũ Bình",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1650\",\"properties\":{\"matinhxa\":\"12.1663\",\"maxa\":1663},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Lạc Thủy (xã)",
- "truocsn": "Thị trấn Chi Nê, Xã Đồng Tâm, Xã Khoan Dụ, Xã Yên Bồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1646\",\"properties\":{\"matinhxa\":\"12.1659\",\"maxa\":1659},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Lai Đồng (xã)",
- "truocsn": "Xã Kiệt Sơn, Xã Tân Sơn, Xã Đồng Sơn, Xã Lai Đồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1568\",\"properties\":{\"matinhxa\":\"12.1581\",\"maxa\":1581},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Lâm Thao (xã)",
- "truocsn": "Thị trấn Hùng Sơn, Thị trấn Lâm Thao, Xã Thạch Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1565\",\"properties\":{\"matinhxa\":\"12.1578\",\"maxa\":1578},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Lập Thạch (xã)",
- "truocsn": "Thị trấn Lập Thạch, Xã Xuân Hòa, Xã Tử Du, Xã Vân Trục",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1612\",\"properties\":{\"matinhxa\":\"12.1625\",\"maxa\":1625},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Liên Châu (xã)",
- "truocsn": "Xã Đại Tự, Xã Hồng Châu, Xã Liên Châu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1636\",\"properties\":{\"matinhxa\":\"12.1649\",\"maxa\":1649},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Liên Hòa (xã)",
- "truocsn": "Thị trấn Hoa Sơn, Xã Bàn Giản, Xã Liên Hòa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1616\",\"properties\":{\"matinhxa\":\"12.1629\",\"maxa\":1629},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Liên Minh (xã)",
- "truocsn": "Xã Đỗ Sơn, Xã Đỗ Xuyên, Xã Lương Lỗ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1584\",\"properties\":{\"matinhxa\":\"12.1597\",\"maxa\":1597},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Liên Sơn (xã)",
- "truocsn": "Xã Cư Yên, Xã Liên Sơn, Xã Cao Sơn (huyện Lương Sơn)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3311\",\"properties\":{\"matinhxa\":\"12.3327\",\"maxa\":3327},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Long Cốc (xã)",
- "truocsn": "Xã Tam Thanh, Xã Vinh Tiền, Xã Long Cốc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1575\",\"properties\":{\"matinhxa\":\"12.1588\",\"maxa\":1588},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Lương Sơn (xã)",
- "truocsn": "Thị trấn Lương Sơn, Xã Hòa Sơn, Xã Lâm Sơn, Xã Nhuận Trạch, Xã Tân Vinh, Xã Cao Sơn (huyện Lương Sơn)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1682\",\"properties\":{\"matinhxa\":\"12.1696\",\"maxa\":1696},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Mai Châu (xã)",
- "truocsn": "Thị trấn Mai Châu, Xã Nà Phòn, Xã Thành Sơn, Xã Tòng Đậu, Xã Đồng Tân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1685\",\"properties\":{\"matinhxa\":\"12.1699\",\"maxa\":1699},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Mai Hạ (xã)",
- "truocsn": "Xã Chiềng Châu, Xã Vạn Mai, Xã Mai Hạ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1688\",\"properties\":{\"matinhxa\":\"12.1702\",\"maxa\":1702},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Minh Đài (xã)",
- "truocsn": "Xã Mỹ Thuận, Xã Văn Luông, Xã Minh Đài",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1598\",\"properties\":{\"matinhxa\":\"12.1611\",\"maxa\":1611},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Minh Hòa (xã)",
- "truocsn": "Xã Ngọc Lập, Xã Ngọc Đồng, Xã Minh Hòa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1594\",\"properties\":{\"matinhxa\":\"12.1607\",\"maxa\":1607},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Mường Bi (xã)",
- "truocsn": "Xã Mỹ Hòa, Xã Phong Phú, Xã Phú Cường",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1644\",\"properties\":{\"matinhxa\":\"12.1657\",\"maxa\":1657},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Mường Động (xã)",
- "truocsn": "Xã Đông Bắc, Xã Hợp Tiến, Xã Tú Sơn, Xã Vĩnh Tiến",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1655\",\"properties\":{\"matinhxa\":\"12.1668\",\"maxa\":1668},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Mường Hoa (xã)",
- "truocsn": "Xã Phú Vinh, Xã Suối Hoa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1654\",\"properties\":{\"matinhxa\":\"12.1667\",\"maxa\":1667},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Mường Thàng (xã)",
- "truocsn": "Xã Dũng Phong, Xã Nam Phong, Xã Tây Phong, Xã Thạch Yên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1652\",\"properties\":{\"matinhxa\":\"12.1665\",\"maxa\":1665},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Mường Vang (xã)",
- "truocsn": "Xã Tân Lập (huyện Lạc Sơn), Xã Quý Hòa, Xã Tuân Đạo",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1673\",\"properties\":{\"matinhxa\":\"12.1687\",\"maxa\":1687},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nật Sơn (xã)",
- "truocsn": "Xã Xuân Thủy (huyện Kim Bôi), Xã Bình Sơn, Xã Đú Sáng, Xã Hùng Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1653\",\"properties\":{\"matinhxa\":\"12.1666\",\"maxa\":1666},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Ngọc Sơn (xã)",
- "truocsn": "Xã Ngọc Lâu, Xã Tự Do, Xã Ngọc Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1669\",\"properties\":{\"matinhxa\":\"12.1683\",\"maxa\":1683},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nguyệt Đức (xã)",
- "truocsn": "Xã Văn Tiến, Xã Trung Kiên, Xã Trung Hà, Xã Nguyệt Đức",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1635\",\"properties\":{\"matinhxa\":\"12.1648\",\"maxa\":1648},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Nhân Nghĩa (xã)",
- "truocsn": "Xã Mỹ Thành, Xã Văn Nghĩa, Xã Nhân Nghĩa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1657\",\"properties\":{\"matinhxa\":\"12.1670\",\"maxa\":1670},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Nông Trang (phường)",
- "truocsn": "Phường Minh Phương, Phường Nông Trang, Xã Thụy Vân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1561\",\"properties\":{\"matinhxa\":\"12.1574\",\"maxa\":1574},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Pà Cò (xã)",
- "truocsn": "Xã Cun Pheo, Xã Hang Kia, Xã Pà Cò, Xã Đồng Tân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1686\",\"properties\":{\"matinhxa\":\"12.1700\",\"maxa\":1700},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Phong Châu (phường)",
- "truocsn": "Phường Phong Châu, Xã Phú Hộ, Xã Hà Thạch",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1579\",\"properties\":{\"matinhxa\":\"12.1592\",\"maxa\":1592},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Phú Khê (xã)",
- "truocsn": "Xã Hương Lung, Xã Phú Khê",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1581\",\"properties\":{\"matinhxa\":\"12.1594\",\"maxa\":1594},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Phú Mỹ (xã)",
- "truocsn": "Xã Liên Hoa, Xã Lệ Mỹ, Xã Phú Mỹ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1553\",\"properties\":{\"matinhxa\":\"12.1566\",\"maxa\":1566},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Phù Ninh (xã)",
- "truocsn": "Thị trấn Phong Châu, Xã Phú Nham, Xã Phú Lộc, Xã Phù Ninh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1592\",\"properties\":{\"matinhxa\":\"12.1605\",\"maxa\":1605},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Phú Thọ (phường)",
- "truocsn": "Phường Hùng Vương (thị xã Phú Thọ), Xã Văn Lung, Xã Hà Lộc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1571\",\"properties\":{\"matinhxa\":\"12.1584\",\"maxa\":1584},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Phúc Yên (phường)",
- "truocsn": "Phường Hùng Vương (thành phố Phúc Yên), Phường Hai Bà Trưng, Phường Phúc Thắng, Phường Tiền Châu, Phường Nam Viêm",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1610\",\"properties\":{\"matinhxa\":\"12.1623\",\"maxa\":1623},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Phùng Nguyên (xã)",
- "truocsn": "Xã Tứ Xã, Xã Sơn Vi, Xã Phùng Nguyên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1576\",\"properties\":{\"matinhxa\":\"12.1589\",\"maxa\":1589},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Quảng Yên (xã)",
- "truocsn": "Xã Đại An, Xã Đông Lĩnh, Xã Quảng Yên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1552\",\"properties\":{\"matinhxa\":\"12.1565\",\"maxa\":1565},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quy Đức (xã)",
- "truocsn": "Xã Đoàn Kết (huyện Đà Bắc), Xã Đồng Ruộng, Xã Trung Thành, Xã Yên Hoà",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1680\",\"properties\":{\"matinhxa\":\"12.1694\",\"maxa\":1694},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Quyết Thắng (xã)",
- "truocsn": "Xã Chí Đạo, Xã Định Cư, Xã Quyết Thắng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1676\",\"properties\":{\"matinhxa\":\"12.1690\",\"maxa\":1690},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Sơn Đông (xã)",
- "truocsn": "Xã Tây Sơn, Xã Cao Phong, Xã Sơn Đông",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1620\",\"properties\":{\"matinhxa\":\"12.1633\",\"maxa\":1633},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Sơn Lương (xã)",
- "truocsn": "Xã Mỹ Lương, Xã Mỹ Lung, Xã Lương Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1604\",\"properties\":{\"matinhxa\":\"12.1617\",\"maxa\":1617},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Sông Lô (xã)",
- "truocsn": "Xã Đồng Thịnh (huyện Sông Lô), Xã Tứ Yên, Xã Đức Bác, Xã Yên Thạch",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1618\",\"properties\":{\"matinhxa\":\"12.1631\",\"maxa\":1631},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tam Đảo (xã)",
- "truocsn": "Thị trấn Hợp Châu, Thị trấn Tam Đảo, Xã Hồ Sơn, Xã Minh Quang",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1625\",\"properties\":{\"matinhxa\":\"12.1638\",\"maxa\":1638},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tam Dương (xã)",
- "truocsn": "Thị trấn Hợp Hòa, Thị trấn Kim Long, Xã Hướng Đạo, Xã Đạo Tú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1621\",\"properties\":{\"matinhxa\":\"12.1634\",\"maxa\":1634},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tam Dương Bắc (xã)",
- "truocsn": "Xã Đồng Tĩnh, Xã Hoàng Hoa, Xã Tam Quan",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1622\",\"properties\":{\"matinhxa\":\"12.1635\",\"maxa\":1635},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tam Hồng (xã)",
- "truocsn": "Thị trấn Tam Hồng, Xã Yên Phương, Xã Yên Đồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1634\",\"properties\":{\"matinhxa\":\"12.1647\",\"maxa\":1647},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tam Nông (xã)",
- "truocsn": "Thị trấn Hưng Hóa, Xã Dân Quyền, Xã Hương Nộn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1596\",\"properties\":{\"matinhxa\":\"12.1609\",\"maxa\":1609},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Tam Sơn (xã)",
- "truocsn": "Xã Tân Lập (huyện Sông Lô), Xã Đồng Quế, Thị trấn Tam Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1617\",\"properties\":{\"matinhxa\":\"12.1630\",\"maxa\":1630},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tân Hòa (phường)",
- "truocsn": "Phường Tân Hòa, Xã Hòa Bình, Xã Yên Mông",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1662\",\"properties\":{\"matinhxa\":\"12.1676\",\"maxa\":1676},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Tân Lạc (xã)",
- "truocsn": "Thị trấn Mãn Đức, Xã Ngọc Mỹ (huyện Tân Lạc), Xã Đông Lai, Xã Thanh Hối, Xã Tử Nê",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1645\",\"properties\":{\"matinhxa\":\"12.1658\",\"maxa\":1658},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Tân Mai (xã)",
- "truocsn": "Xã Sơn Thủy (huyện Mai Châu), Xã Tân Thành",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1659\",\"properties\":{\"matinhxa\":\"12.1672\",\"maxa\":1672},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tân Pheo (xã)",
- "truocsn": "Xã Đồng Chum, Xã Giáp Đắt, Xã Tân Pheo",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1684\",\"properties\":{\"matinhxa\":\"12.1698\",\"maxa\":1698},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tân Sơn (xã)",
- "truocsn": "Thị trấn Tân Phú, Xã Thu Ngạc, Xã Thạch Kiệt",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1556\",\"properties\":{\"matinhxa\":\"12.1569\",\"maxa\":1569},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Tây Cốc (xã)",
- "truocsn": "Xã Phú Lâm, Xã Ca Đình, Xã Tây Cốc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1545\",\"properties\":{\"matinhxa\":\"12.1558\",\"maxa\":1558},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tề Lỗ (xã)",
- "truocsn": "Xã Đồng Văn, Xã Trung Nguyên, Xã Tề Lỗ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1633\",\"properties\":{\"matinhxa\":\"12.1646\",\"maxa\":1646},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Thái Hòa (xã)",
- "truocsn": "Xã Bắc Bình, Xã Liễn Sơn, Xã Thái Hòa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1615\",\"properties\":{\"matinhxa\":\"12.1628\",\"maxa\":1628},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Thanh Ba (xã)",
- "truocsn": "Thị trấn Thanh Ba, Xã Đồng Xuân, Xã Hanh Cù, Xã Vân Lĩnh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1551\",\"properties\":{\"matinhxa\":\"12.1564\",\"maxa\":1564},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Thanh Miếu (phường)",
- "truocsn": "Phường Thọ Sơn, Phường Tiên Cát, Phường Bạch Hạc, Phường Thanh Miếu, Xã Sông Lô",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1586\",\"properties\":{\"matinhxa\":\"12.1599\",\"maxa\":1599},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Thanh Sơn (xã)",
- "truocsn": "Thị trấn Thanh Sơn, Xã Sơn Hùng, Xã Giáp Lai, Xã Thạch Khoán, Xã Thục Luyện",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1558\",\"properties\":{\"matinhxa\":\"12.1571\",\"maxa\":1571},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Thanh Thủy (xã)",
- "truocsn": "Xã Sơn Thủy (huyện Thanh Thủy), Xã Đoan Hạ, Xã Bảo Yên, Thị trấn Thanh Thủy",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1595\",\"properties\":{\"matinhxa\":\"12.1608\",\"maxa\":1608},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Thịnh Minh (xã)",
- "truocsn": "Xã Hợp Thành, Xã Quang Tiến, Xã Thịnh Minh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1678\",\"properties\":{\"matinhxa\":\"12.1692\",\"maxa\":1692},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Thổ Tang (xã)",
- "truocsn": "Thị trấn Thổ Tang, Xã Thượng Trưng, Xã Tuân Chính",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1641\",\"properties\":{\"matinhxa\":\"12.1654\",\"maxa\":1654},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Thọ Văn (xã)",
- "truocsn": "Xã Dị Nậu, Xã Tề Lễ, Xã Thọ Văn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1583\",\"properties\":{\"matinhxa\":\"12.1596\",\"maxa\":1596},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Thống Nhất (phường)",
- "truocsn": "Phường Dân Chủ, Phường Thái Bình, Phường Thống Nhất, Xã Vầy Nưa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1674\",\"properties\":{\"matinhxa\":\"12.1688\",\"maxa\":1688},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Thu Cúc (xã)",
- "truocsn": "xã Thu Cúc (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1606\",\"properties\":{\"matinhxa\":\"12.1619\",\"maxa\":1619},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Thung Nai (xã)",
- "truocsn": "Xã Bắc Phong, Xã Bình Thanh, Xã Thung Nai",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1670\",\"properties\":{\"matinhxa\":\"12.1684\",\"maxa\":1684},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Thượng Cốc (xã)",
- "truocsn": "Xã Miền Đồi, Xã Văn Sơn, Xã Thượng Cốc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1661\",\"properties\":{\"matinhxa\":\"12.1674\",\"maxa\":1674},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Thượng Long (xã)",
- "truocsn": "Xã Phúc Khánh, Xã Nga Hoàng, Xã Thượng Long",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1564\",\"properties\":{\"matinhxa\":\"12.1577\",\"maxa\":1577},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Tiên Lữ (xã)",
- "truocsn": "Xã Xuân Lôi, Xã Văn Quán, Xã Đồng Ích, Xã Tiên Lữ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1619\",\"properties\":{\"matinhxa\":\"12.1632\",\"maxa\":1632},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Tiên Lương (xã)",
- "truocsn": "Xã Phượng Vĩ, Xã Minh Thắng, Xã Tiên Lương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1554\",\"properties\":{\"matinhxa\":\"12.1567\",\"maxa\":1567},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Tiền Phong (xã)",
- "truocsn": "Xã Tiền Phong, Xã Vầy Nưa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1663\",\"properties\":{\"matinhxa\":\"12.1677\",\"maxa\":1677},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Toàn Thắng (xã)",
- "truocsn": "Xã Gia Mô, Xã Lỗ Sơn, Xã Nhân Mỹ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1648\",\"properties\":{\"matinhxa\":\"12.1661\",\"maxa\":1661},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Trạm Thản (xã)",
- "truocsn": "Xã Tiên Phú, Xã Trung Giáp, Xã Trạm Thản",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1607\",\"properties\":{\"matinhxa\":\"12.1620\",\"maxa\":1620},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Trung Sơn (xã)",
- "truocsn": "xã Trung Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1605\",\"properties\":{\"matinhxa\":\"12.1618\",\"maxa\":1618},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Tu Vũ (xã)",
- "truocsn": "Xã Đồng Trung, Xã Hoàng Xá, Xã Tu Vũ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1597\",\"properties\":{\"matinhxa\":\"12.1610\",\"maxa\":1610},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Vân Bán (xã)",
- "truocsn": "Xã Tùng Khê, Xã Tam Sơn, Xã Văn Bán",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1574\",\"properties\":{\"matinhxa\":\"12.1587\",\"maxa\":1587},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Văn Lang (xã)",
- "truocsn": "Xã Vô Tranh, Xã Bằng Giã, Xã Minh Côi, Xã Văn Lang",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1549\",\"properties\":{\"matinhxa\":\"12.1562\",\"maxa\":1562},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Văn Miếu (xã)",
- "truocsn": "Xã Tân Lập, Xã Tân Minh (huyện Thanh Sơn), Xã Văn Miếu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1601\",\"properties\":{\"matinhxa\":\"12.1614\",\"maxa\":1614},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Vân Phú (phường)",
- "truocsn": "Phường Vân Phú, Xã Phượng Lâu, Xã Hùng Lô, Xã Kim Đức",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1557\",\"properties\":{\"matinhxa\":\"12.1570\",\"maxa\":1570},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Vân Sơn (xã)",
- "truocsn": "Xã Ngổ Luông, Xã Quyết Chiến, Xã Vân Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1666\",\"properties\":{\"matinhxa\":\"12.1680\",\"maxa\":1680},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Vạn Xuân (xã)",
- "truocsn": "Xã Quang Húc, Xã Lam Sơn, Xã Vạn Xuân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1599\",\"properties\":{\"matinhxa\":\"12.1612\",\"maxa\":1612},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Việt Trì (phường)",
- "truocsn": "Phường Tân Dân, Phường Gia Cẩm, Phường Minh Nông, Phường Dữu Lâu, Xã Trưng Vương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1593\",\"properties\":{\"matinhxa\":\"12.1606\",\"maxa\":1606},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Vĩnh An (xã)",
- "truocsn": "Xã Kim Xá, Xã Yên Bình, Xã Chấn Hưng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1638\",\"properties\":{\"matinhxa\":\"12.1651\",\"maxa\":1651},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Vĩnh Chân (xã)",
- "truocsn": "Xã Lang Sơn, Xã Yên Luật, Xã Vĩnh Chân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1550\",\"properties\":{\"matinhxa\":\"12.1563\",\"maxa\":1563},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Vĩnh Hưng (xã)",
- "truocsn": "Xã Nghĩa Hưng, Xã Yên Lập, Xã Đại Đồng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1639\",\"properties\":{\"matinhxa\":\"12.1652\",\"maxa\":1652},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Vĩnh Phú (xã)",
- "truocsn": "Xã An Nhân, Xã Vĩnh Thịnh, Xã Ngũ Kiên, Xã Vĩnh Phú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1642\",\"properties\":{\"matinhxa\":\"12.1655\",\"maxa\":1655},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "131",
- "ten": "Vĩnh Phúc (phường)",
- "truocsn": "Phường Định Trung, Phường Liên Bảo, Phường Khai Quang, Phường Ngô Quyền, Phường Đống Đa",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1609\",\"properties\":{\"matinhxa\":\"12.1622\",\"maxa\":1622},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "132",
- "ten": "Vĩnh Thành (xã)",
- "truocsn": "Xã Sao Đại Việt, Xã Lũng Hòa, Xã Tân Phú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1640\",\"properties\":{\"matinhxa\":\"12.1653\",\"maxa\":1653},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "133",
- "ten": "Vĩnh Tường (xã)",
- "truocsn": "Thị trấn Vĩnh Tường, Thị trấn Tứ Trưng, Xã Lương Điền, Xã Vũ Di",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1637\",\"properties\":{\"matinhxa\":\"12.1650\",\"maxa\":1650},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "134",
- "ten": "Vĩnh Yên (phường)",
- "truocsn": "Phường Tích Sơn, Phường Hội Hợp, Phường Đồng Tâm, Xã Thanh Trù",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1608\",\"properties\":{\"matinhxa\":\"12.1621\",\"maxa\":1621},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "135",
- "ten": "Võ Miếu (xã)",
- "truocsn": "Xã Địch Quả, Xã Cự Thắng, Xã Võ Miếu",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1582\",\"properties\":{\"matinhxa\":\"12.1595\",\"maxa\":1595},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "136",
- "ten": "Xuân Đài (xã)",
- "truocsn": "Xã Kim Thượng, Xã Xuân Sơn, Xã Xuân Đài",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1585\",\"properties\":{\"matinhxa\":\"12.1598\",\"maxa\":1598},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "137",
- "ten": "Xuân Hòa (phường)",
- "truocsn": "Phường Đồng Xuân, Phường Xuân Hòa, Xã Cao Minh, Xã Ngọc Thanh",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1611\",\"properties\":{\"matinhxa\":\"12.1624\",\"maxa\":1624},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "138",
- "ten": "Xuân Lãng (xã)",
- "truocsn": "Thị trấn Thanh Lãng, Thị trấn Đạo Đức, Xã Tân Phong, Xã Phú Xuân",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1631\",\"properties\":{\"matinhxa\":\"12.1644\",\"maxa\":1644},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "139",
- "ten": "Xuân Lũng (xã)",
- "truocsn": "Xã Tiên Kiên, Xã Xuân Huy, Xã Xuân Lũng",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1572\",\"properties\":{\"matinhxa\":\"12.1585\",\"maxa\":1585},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "140",
- "ten": "Xuân Viên (xã)",
- "truocsn": "Xã Xuân Thủy (huyện Yên Lập), Xã Xuân An, Xã Xuân Viên",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1559\",\"properties\":{\"matinhxa\":\"12.1572\",\"maxa\":1572},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "141",
- "ten": "Yên Kỳ (xã)",
- "truocsn": "Xã Hương Xạ, Xã Phương Viên, Xã Yên Kỳ",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1548\",\"properties\":{\"matinhxa\":\"12.1561\",\"maxa\":1561},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "142",
- "ten": "Yên Lạc (xã)",
- "truocsn": "Thị trấn Yên Lạc, Xã Bình Định, Xã Đồng Cương",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1632\",\"properties\":{\"matinhxa\":\"12.1645\",\"maxa\":1645},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "143",
- "ten": "Yên Lãng (xã)",
- "truocsn": "Xã Quang Yên, Xã Lãng Công",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1613\",\"properties\":{\"matinhxa\":\"12.1626\",\"maxa\":1626},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "144",
- "ten": "Yên Lập (xã)",
- "truocsn": "Thị trấn Yên Lập, Xã Đồng Thịnh (huyện Yên Lập), Xã Hưng Long, Xã Đồng Lạc",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1589\",\"properties\":{\"matinhxa\":\"12.1602\",\"maxa\":1602},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "145",
- "ten": "Yên Phú (xã)",
- "truocsn": "Xã Bình Hẻm, Xã Xuất Hóa, Xã Yên Phú",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1668\",\"properties\":{\"matinhxa\":\"12.1682\",\"maxa\":1682},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "146",
- "ten": "Yên Sơn (xã)",
- "truocsn": "Xã Tinh Nhuệ, Xã Lương Nha, Xã Yên Sơn",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1563\",\"properties\":{\"matinhxa\":\"12.1576\",\"maxa\":1576},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "147",
- "ten": "Yên Thủy (xã)",
- "truocsn": "Thị trấn Hàng Trạm, Xã Lạc Thịnh, Xã Phú Lai",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1671\",\"properties\":{\"matinhxa\":\"12.1685\",\"maxa\":1685},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "148",
- "ten": "Yên Trị (xã)",
- "truocsn": "Xã Đoàn Kết (huyện Yên Thủy), Xã Hữu Lợi, Xã Ngọc Lương, Xã Yên Trị",
- "provinceName": "tỉnh Phú Thọ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1667\",\"properties\":{\"matinhxa\":\"12.1681\",\"maxa\":1681},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Lạc (xã)",
- "truocsn": "Xã Lệ Viễn, Xã An Lạc",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2121\",\"properties\":{\"matinhxa\":\"2.2135\",\"maxa\":2135},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bắc Giang (phường)",
- "truocsn": "Phường Thọ Xương, Phường Ngô Quyền, Phường Xương Giang, Phường Hoàng Văn Thụ, Phường Trần Phú, Phường Dĩnh Kế, Phường Dĩnh Trì",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2146\",\"properties\":{\"matinhxa\":\"2.2160\",\"maxa\":2160},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bắc Lũng (xã)",
- "truocsn": "Xã Yên Sơn, Xã Lan Mẫu, Xã Khám Lạng, Xã Bắc Lũng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2178\",\"properties\":{\"matinhxa\":\"2.2192\",\"maxa\":2192},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bảo Đài (xã)",
- "truocsn": "Xã Bảo Sơn, Xã Thanh Lâm, Xã Tam Dị, Xã Bảo Đài",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2176\",\"properties\":{\"matinhxa\":\"2.2190\",\"maxa\":2190},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Biển Động (xã)",
- "truocsn": "Thị trấn Biển Động, Xã Kim Sơn, Xã Phú Nhuận",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2113\",\"properties\":{\"matinhxa\":\"2.2127\",\"maxa\":2127},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Biên Sơn (xã)",
- "truocsn": "Xã Phong Vân, Xã Biên Sơn, Trường bắn TB1",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2111\",\"properties\":{\"matinhxa\":\"2.2125\",\"maxa\":2125},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bố Hạ (xã)",
- "truocsn": "Thị trấn Bố Hạ, Xã Đông Sơn, Xã Hương Vĩ",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2164\",\"properties\":{\"matinhxa\":\"2.2178\",\"maxa\":2178},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bồng Lai (phường)",
- "truocsn": "Phường Cách Bi, Phường Bồng Lai, Xã Mộ Đạo",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2191\",\"properties\":{\"matinhxa\":\"2.2205\",\"maxa\":2205},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cẩm Lý (xã)",
- "truocsn": "Xã Đan Hội, Xã Cẩm Lý",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2179\",\"properties\":{\"matinhxa\":\"2.2193\",\"maxa\":2193},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cảnh Thụy (phường)",
- "truocsn": "Phường Cảnh Thụy, Xã Tiến Dũng, Xã Tư Mại",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2153\",\"properties\":{\"matinhxa\":\"2.2167\",\"maxa\":2167},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cao Đức (xã)",
- "truocsn": "Xã Vạn Ninh, Xã Cao Đức",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2135\",\"properties\":{\"matinhxa\":\"2.2149\",\"maxa\":2149},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Chi Lăng (xã)",
- "truocsn": "Xã Yên Giả, Xã Chi Lăng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2181\",\"properties\":{\"matinhxa\":\"2.2195\",\"maxa\":2195},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Chũ (phường)",
- "truocsn": "Phường Thanh Hải, Phường Hồng Giang, Phường Trù Hựu, Phường Chũ",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2106\",\"properties\":{\"matinhxa\":\"2.2120\",\"maxa\":2120},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đa Mai (phường)",
- "truocsn": "Phường Tân Mỹ, Phường Mỹ Độ, Phường Song Mai, Phường Đa Mai, Xã Quế Nham",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2147\",\"properties\":{\"matinhxa\":\"2.2161\",\"maxa\":2161},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đại Đồng (xã)",
- "truocsn": "Xã Tri Phương, Xã Hoàn Sơn, Xã Đại Đồng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2125\",\"properties\":{\"matinhxa\":\"2.2139\",\"maxa\":2139},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đại Lai (xã)",
- "truocsn": "Xã Song Giang, Xã Đại Lai",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2136\",\"properties\":{\"matinhxa\":\"2.2150\",\"maxa\":2150},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đại Sơn (xã)",
- "truocsn": "Xã Giáo Liêm, Xã Phúc Sơn, Xã Đại Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2119\",\"properties\":{\"matinhxa\":\"2.2133\",\"maxa\":2133},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đào Viên (phường)",
- "truocsn": "Phường Phù Lương, Xã Ngọc Xá, Xã Đào Viên",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2185\",\"properties\":{\"matinhxa\":\"2.2199\",\"maxa\":2199},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đèo Gia (xã)",
- "truocsn": "Xã Tân Lập, Xã Đèo Gia",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2115\",\"properties\":{\"matinhxa\":\"2.2129\",\"maxa\":2129},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đông Cứu (xã)",
- "truocsn": "Xã Giang Sơn, Xã Lãng Ngâm, Xã Đông Cứu",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2138\",\"properties\":{\"matinhxa\":\"2.2152\",\"maxa\":2152},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đồng Kỳ (xã)",
- "truocsn": "Xã Đồng Hưu, Xã Đồng Vương, Xã Đồng Kỳ",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2163\",\"properties\":{\"matinhxa\":\"2.2177\",\"maxa\":2177},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đồng Nguyên (phường)",
- "truocsn": "Phường Trang Hạ, Phường Đồng Kỵ, Phường Đồng Nguyên",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2199\",\"properties\":{\"matinhxa\":\"2.2213\",\"maxa\":2213},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đông Phú (xã)",
- "truocsn": "Xã Đông Hưng, Xã Đông Phú",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2175\",\"properties\":{\"matinhxa\":\"2.2189\",\"maxa\":2189},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đồng Việt (xã)",
- "truocsn": "Xã Đức Giang, Xã Đồng Phúc, Xã Đồng Việt",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2187\",\"properties\":{\"matinhxa\":\"2.2201\",\"maxa\":2201},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Dương Hưu (xã)",
- "truocsn": "Xã Long Sơn, Xã Dương Hưu",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2124\",\"properties\":{\"matinhxa\":\"2.2138\",\"maxa\":2138},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Gia Bình (xã)",
- "truocsn": "Thị trấn Gia Bình, Xã Xuân Lai, Xã Quỳnh Phú, Xã Đại Bái",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2134\",\"properties\":{\"matinhxa\":\"2.2148\",\"maxa\":2148},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hạp Lĩnh (phường)",
- "truocsn": "Phường Khắc Niệm, Phường Hạp Lĩnh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2203\",\"properties\":{\"matinhxa\":\"2.2217\",\"maxa\":2217},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hiệp Hòa (xã)",
- "truocsn": "Thị trấn Thắng, Xã Đông Lỗ, Xã Đoan Bái, Xã Danh Thắng, Xã Lương Phong",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2156\",\"properties\":{\"matinhxa\":\"2.2170\",\"maxa\":2170},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hoàng Vân (xã)",
- "truocsn": "Xã Đồng Tiến (huyện Hiệp Hòa), Xã Toàn Thắng, Xã Ngọc Sơn, Xã Hoàng Vân",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2157\",\"properties\":{\"matinhxa\":\"2.2171\",\"maxa\":2171},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hợp Thịnh (xã)",
- "truocsn": "Xã Thường Thắng, Xã Mai Trung, Xã Hùng Thái, Xã Sơn Thịnh, Xã Hợp Thịnh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2158\",\"properties\":{\"matinhxa\":\"2.2172\",\"maxa\":2172},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Kép (xã)",
- "truocsn": "Thị trấn Kép, Xã Quang Thịnh, Xã Hương Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2171\",\"properties\":{\"matinhxa\":\"2.2185\",\"maxa\":2185},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Kiên Lao (xã)",
- "truocsn": "Xã Kiên Thành, Xã Kiên Lao",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2110\",\"properties\":{\"matinhxa\":\"2.2124\",\"maxa\":2124},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Kinh Bắc (phường)",
- "truocsn": "Phường Suối Hoa, Phường Tiền Ninh Vệ, Phường Vạn An, Phường Hòa Long, Phường Khúc Xuyên, Phường Kinh Bắc",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2144\",\"properties\":{\"matinhxa\":\"2.2158\",\"maxa\":2158},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Lâm Thao (xã)",
- "truocsn": "Xã Bình Định, Xã Quảng Phú, Xã Lâm Thao",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2142\",\"properties\":{\"matinhxa\":\"2.2156\",\"maxa\":2156},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Lạng Giang (xã)",
- "truocsn": "Thị trấn Vôi, Xã Xương Lâm, Xã Hương Lạc, Xã Tân Hưng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2169\",\"properties\":{\"matinhxa\":\"2.2183\",\"maxa\":2183},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Liên Bão (xã)",
- "truocsn": "Xã Hiên Vân, Xã Việt Đoàn, Xã Liên Bão",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2131\",\"properties\":{\"matinhxa\":\"2.2145\",\"maxa\":2145},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Lục Nam (xã)",
- "truocsn": "Thị trấn Phương Sơn, Thị trấn Đồi Ngô, Xã Cương Sơn, Xã Tiên Nha, Xã Chu Điện",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2174\",\"properties\":{\"matinhxa\":\"2.2188\",\"maxa\":2188},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lục Ngạn (xã)",
- "truocsn": "Thị trấn Phì Điền, Xã Giáp Sơn, Xã Đồng Cốc, Xã Tân Hoa, Xã Tân Quang",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2112\",\"properties\":{\"matinhxa\":\"2.2126\",\"maxa\":2126},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lục Sơn (xã)",
- "truocsn": "Xã Bình Sơn, Xã Lục Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2105\",\"properties\":{\"matinhxa\":\"2.2119\",\"maxa\":2119},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Lương Tài (xã)",
- "truocsn": "Thị trấn Thứa, Xã Phú Hòa, Xã Tân Lãng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2139\",\"properties\":{\"matinhxa\":\"2.2153\",\"maxa\":2153},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Mão Điền (phường)",
- "truocsn": "Phường An Bình, Xã Hoài Thượng, Xã Mão Điền",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2194\",\"properties\":{\"matinhxa\":\"2.2208\",\"maxa\":2208},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Mỹ Thái (xã)",
- "truocsn": "Xã Xuân Hương, Xã Dương Đức, Xã Tân Thanh, Xã Mỹ Thái",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2172\",\"properties\":{\"matinhxa\":\"2.2186\",\"maxa\":2186},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Nam Dương (xã)",
- "truocsn": "Xã Tân Mộc, Xã Nam Dương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2114\",\"properties\":{\"matinhxa\":\"2.2128\",\"maxa\":2128},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Nam Sơn (phường)",
- "truocsn": "Phường Vân Dương, Phường Nam Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2202\",\"properties\":{\"matinhxa\":\"2.2216\",\"maxa\":2216},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Nếnh (phường)",
- "truocsn": "Phường Quang Châu, Phường Vân Trung, Phường Tăng Tiến, Phường Nếnh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2155\",\"properties\":{\"matinhxa\":\"2.2169\",\"maxa\":2169},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nghĩa Phương (xã)",
- "truocsn": "Xã Trường Giang, Xã Huyền Sơn, Xã Nghĩa Phương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2177\",\"properties\":{\"matinhxa\":\"2.2191\",\"maxa\":2191},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Ngọc Thiện (xã)",
- "truocsn": "Xã Song Vân, Xã Ngọc Châu, Xã Ngọc Vân, Xã Việt Ngọc, Xã Ngọc Thiện",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2168\",\"properties\":{\"matinhxa\":\"2.2182\",\"maxa\":2182},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Nhã Nam (xã)",
- "truocsn": "Thị trấn Nhã Nam, Xã Tân Trung, Xã Liên Sơn, Xã An Dương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2166\",\"properties\":{\"matinhxa\":\"2.2180\",\"maxa\":2180},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Nhân Hòa (phường)",
- "truocsn": "Phường Đại Xuân, Phường Nhân Hòa, Xã Việt Thống",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2183\",\"properties\":{\"matinhxa\":\"2.2197\",\"maxa\":2197},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Nhân Thắng (xã)",
- "truocsn": "Thị trấn Nhân Thắng, Xã Thái Bảo, Xã Bình Dương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2137\",\"properties\":{\"matinhxa\":\"2.2151\",\"maxa\":2151},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Ninh Xá (phường)",
- "truocsn": "Phường Ninh Xá, Xã Nguyệt Đức",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2200\",\"properties\":{\"matinhxa\":\"2.2214\",\"maxa\":2214},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phật Tích (xã)",
- "truocsn": "Xã Minh Đạo, Xã Cảnh Hưng, Xã Phật Tích",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2132\",\"properties\":{\"matinhxa\":\"2.2146\",\"maxa\":2146},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phù Khê (phường)",
- "truocsn": "Phường Châu Khê, Phường Hương Mạc, Phường Phù Khê",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2198\",\"properties\":{\"matinhxa\":\"2.2212\",\"maxa\":2212},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phù Lãng (xã)",
- "truocsn": "Xã Châu Phong, Xã Đức Long, Xã Phù Lãng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2190\",\"properties\":{\"matinhxa\":\"2.2204\",\"maxa\":2204},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phúc Hoà (xã)",
- "truocsn": "Xã Hợp Đức, Xã Liên Chung, Xã Phúc Hòa",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2167\",\"properties\":{\"matinhxa\":\"2.2181\",\"maxa\":2181},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phương Liễu (phường)",
- "truocsn": "Phường Phượng Mao, Phường Phương Liễu",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2184\",\"properties\":{\"matinhxa\":\"2.2198\",\"maxa\":2198},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Phượng Sơn (phường)",
- "truocsn": "Phường Phượng Sơn, Xã Quý Sơn, Xã Mỹ An",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2116\",\"properties\":{\"matinhxa\":\"2.2130\",\"maxa\":2130},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Quang Trung (xã)",
- "truocsn": "Xã Lam Sơn, Xã Quang Trung",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2149\",\"properties\":{\"matinhxa\":\"2.2163\",\"maxa\":2163},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Quế Võ (phường)",
- "truocsn": "Phường Phố Mới, Phường Bằng An, Phường Việt Hùng, Phường Quế Tân",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2180\",\"properties\":{\"matinhxa\":\"2.2194\",\"maxa\":2194},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Sa Lý (xã)",
- "truocsn": "Xã Phong Minh, Xã Sa Lý",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2108\",\"properties\":{\"matinhxa\":\"2.2122\",\"maxa\":2122},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Sơn Động (xã)",
- "truocsn": "Thị trấn An Châu, Xã An Bá, Xã Vĩnh An",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2117\",\"properties\":{\"matinhxa\":\"2.2131\",\"maxa\":2131},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Sơn Hải (xã)",
- "truocsn": "Xã Hộ Đáp, Xã Sơn Hải",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2109\",\"properties\":{\"matinhxa\":\"2.2123\",\"maxa\":2123},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Song Liễu (phường)",
- "truocsn": "Phường Xuân Lâm, Phường Hà Mãn, Xã Ngũ Thái, Xã Song Liễu",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2201\",\"properties\":{\"matinhxa\":\"2.2215\",\"maxa\":2215},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tam Đa (xã)",
- "truocsn": "Xã Thụy Hòa, Xã Đông Phong, Xã Tam Đa",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2126\",\"properties\":{\"matinhxa\":\"2.2140\",\"maxa\":2140},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tam Giang (xã)",
- "truocsn": "Xã Hòa Tiến, Xã Tam Giang",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2127\",\"properties\":{\"matinhxa\":\"2.2141\",\"maxa\":2141},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tam Sơn (phường)",
- "truocsn": "Phường Tương Giang, Phường Tam Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2197\",\"properties\":{\"matinhxa\":\"2.2211\",\"maxa\":2211},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tam Tiến (xã)",
- "truocsn": "Xã Tiến Thắng, Xã An Thượng, Xã Tam Tiến",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2161\",\"properties\":{\"matinhxa\":\"2.2175\",\"maxa\":2175},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tân An (phường)",
- "truocsn": "Phường Tân An, Xã Quỳnh Sơn, Xã Trí Yên, Xã Lãng Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2151\",\"properties\":{\"matinhxa\":\"2.2165\",\"maxa\":2165},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Chi (xã)",
- "truocsn": "Xã Lạc Vệ, Xã Tân Chi",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2133\",\"properties\":{\"matinhxa\":\"2.2147\",\"maxa\":2147},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Dĩnh (xã)",
- "truocsn": "Xã Tân Dĩnh, Xã Thái Đào, Xã Đại Lâm",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2173\",\"properties\":{\"matinhxa\":\"2.2187\",\"maxa\":2187},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Sơn (xã)",
- "truocsn": "Xã Cấm Sơn, Xã Tân Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2107\",\"properties\":{\"matinhxa\":\"2.2121\",\"maxa\":2121},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tân Tiến (phường)",
- "truocsn": "Phường Hương Gián, Phường Tân Tiến, Xã Xuân Phú",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2152\",\"properties\":{\"matinhxa\":\"2.2166\",\"maxa\":2166},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tân Yên (xã)",
- "truocsn": "Thị trấn Cao Thượng, Xã Cao Xá, Xã Việt Lập, Xã Ngọc Lý",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2165\",\"properties\":{\"matinhxa\":\"2.2179\",\"maxa\":2179},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tây Yên Tử (xã)",
- "truocsn": "Thị trấn Tây Yên Tử, Xã Thanh Luận",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2118\",\"properties\":{\"matinhxa\":\"2.2132\",\"maxa\":2132},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thuận Thành (phường)",
- "truocsn": "Phường Hồ, Phường Song Hồ, Phường Gia Đông, Xã Đại Đồng Thành",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2193\",\"properties\":{\"matinhxa\":\"2.2207\",\"maxa\":2207},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tiên Du (xã)",
- "truocsn": "Thị trấn Lim, Xã Nội Duệ, Xã Phú Lâm",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2130\",\"properties\":{\"matinhxa\":\"2.2144\",\"maxa\":2144},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tiên Lục (xã)",
- "truocsn": "Xã Đào Mỹ, Xã Nghĩa Hòa, Xã An Hà, Xã Nghĩa Hưng, Xã Tiên Lục",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2170\",\"properties\":{\"matinhxa\":\"2.2184\",\"maxa\":2184},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Tiền Phong (phường)",
- "truocsn": "Phường Nội Hoàng, Phường Song Khê, Phường Đồng Sơn, Phường Tiền Phong",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2148\",\"properties\":{\"matinhxa\":\"2.2162\",\"maxa\":2162},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Trạm Lộ (phường)",
- "truocsn": "Phường Trạm Lộ, Xã Nghĩa Đạo",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2196\",\"properties\":{\"matinhxa\":\"2.2210\",\"maxa\":2210},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Trí Quả (phường)",
- "truocsn": "Phường Thanh Khương, Phường Trí Quả, Xã Đình Tổ",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2195\",\"properties\":{\"matinhxa\":\"2.2209\",\"maxa\":2209},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Trung Chính (xã)",
- "truocsn": "Xã Phú Lương, Xã Quang Minh, Xã Trung Chính",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2141\",\"properties\":{\"matinhxa\":\"2.2155\",\"maxa\":2155},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Trung Kênh (xã)",
- "truocsn": "Xã An Thịnh, Xã An Tập, Xã Trung Kênh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2140\",\"properties\":{\"matinhxa\":\"2.2154\",\"maxa\":2154},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trường Sơn (xã)",
- "truocsn": "Xã Vô Tranh, Xã Trường Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2104\",\"properties\":{\"matinhxa\":\"2.2118\",\"maxa\":2118},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tự Lạn (phường)",
- "truocsn": "Phường Tự Lạn, Xã Việt Tiến, Xã Thượng Lan, Xã Hương Mai",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2188\",\"properties\":{\"matinhxa\":\"2.2202\",\"maxa\":2202},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Từ Sơn (phường)",
- "truocsn": "Phường Đông Ngàn, Phường Tân Hồng, Phường Phù Chẩn, Phường Đình Bảng",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2192\",\"properties\":{\"matinhxa\":\"2.2206\",\"maxa\":2206},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tuấn Đạo (xã)",
- "truocsn": "xã Tuấn Đạo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2123\",\"properties\":{\"matinhxa\":\"2.2137\",\"maxa\":2137},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Vân Hà (phường)",
- "truocsn": "Phường Ninh Sơn, Phường Quảng Minh, Xã Tiên Sơn, Xã Trung Sơn, Xã Vân Hà",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2154\",\"properties\":{\"matinhxa\":\"2.2168\",\"maxa\":2168},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Văn Môn (xã)",
- "truocsn": "Xã Yên Phụ, Xã Đông Thọ, Xã Văn Môn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2129\",\"properties\":{\"matinhxa\":\"2.2143\",\"maxa\":2143},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Vân Sơn (xã)",
- "truocsn": "Xã Hữu Sản, Xã Vân Sơn",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2120\",\"properties\":{\"matinhxa\":\"2.2134\",\"maxa\":2134},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Việt Yên (phường)",
- "truocsn": "Phường Bích Động, Phường Hồng Thái, Xã Minh Đức, Xã Nghĩa Trung",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2189\",\"properties\":{\"matinhxa\":\"2.2203\",\"maxa\":2203},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Võ Cường (phường)",
- "truocsn": "Phường Đại Phúc, Phường Phong Khê, Phường Võ Cường",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2145\",\"properties\":{\"matinhxa\":\"2.2159\",\"maxa\":2159},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Vũ Ninh (phường)",
- "truocsn": "Phường Kim Chân, Phường Đáp Cầu, Phường Thị Cầu, Phường Vũ Ninh",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2143\",\"properties\":{\"matinhxa\":\"2.2157\",\"maxa\":2157},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Xuân Cẩm (xã)",
- "truocsn": "Thị trấn Bắc Lý, Xã Hương Lâm, Xã Mai Đình, Xã Châu Minh, Xã Xuân Cẩm",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2159\",\"properties\":{\"matinhxa\":\"2.2173\",\"maxa\":2173},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Xuân Lương (xã)",
- "truocsn": "Xã Đồng Tiến (huyện Yên Thế), Xã Canh Nậu, Xã Xuân Lương",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2160\",\"properties\":{\"matinhxa\":\"2.2174\",\"maxa\":2174},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Yên Định (xã)",
- "truocsn": "Xã Cẩm Đàn, Xã Yên Định",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2122\",\"properties\":{\"matinhxa\":\"2.2136\",\"maxa\":2136},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Yên Dũng (phường)",
- "truocsn": "Phường Tân Liễu, Phường Nham Biền, Xã Yên Lư",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2150\",\"properties\":{\"matinhxa\":\"2.2164\",\"maxa\":2164},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Yên Phong (xã)",
- "truocsn": "Thị trấn Chờ, Xã Trung Nghĩa, Xã Long Châu, Xã Đông Tiến",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2182\",\"properties\":{\"matinhxa\":\"2.2196\",\"maxa\":2196},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Yên Thế (xã)",
- "truocsn": "Thị trấn Phồn Xương, Xã Đồng Lạc, Xã Đồng Tâm, Xã Tân Hiệp, Xã Tân Sỏi",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2162\",\"properties\":{\"matinhxa\":\"2.2176\",\"maxa\":2176},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Yên Trung (xã)",
- "truocsn": "Xã Dũng Liệt, Xã Yên Trung",
- "provinceName": "tỉnh Bắc Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2128\",\"properties\":{\"matinhxa\":\"2.2142\",\"maxa\":2142},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Ái Quốc (phường)",
- "truocsn": "Phường Ái Quốc, Xã Quyết Thắng, Xã Hồng Lạc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.858\",\"properties\":{\"matinhxa\":\"4.869\",\"maxa\":869},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Biên (phường)",
- "truocsn": "Phường An Dương, Phường An Biên, Phường Trần Nguyên Hãn, Phường Vĩnh Niệm",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1194\",\"properties\":{\"matinhxa\":\"4.1205\",\"maxa\":1205},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Dương (phường)",
- "truocsn": "Phường Nam Sơn (quận An Dương), Phường An Hải, Phường Lê Lợi, Phường Đồng Thái, Phường Tân Tiến, Phường An Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1169\",\"properties\":{\"matinhxa\":\"4.1180\",\"maxa\":1180},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Hải (phường)",
- "truocsn": "Phường An Đồng, Phường Hồng Thái, Phường Lê Lợi, Phường An Hải, Phường Đồng Thái",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1236\",\"properties\":{\"matinhxa\":\"4.1247\",\"maxa\":1247},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Hưng (xã)",
- "truocsn": "Xã An Thái, Xã An Thọ, Xã Chiến Thắng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1053\",\"properties\":{\"matinhxa\":\"4.1064\",\"maxa\":1064},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Khánh (xã)",
- "truocsn": "Xã Tân Viên, Xã Mỹ Đức, Xã Thái Sơn",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1075\",\"properties\":{\"matinhxa\":\"4.1086\",\"maxa\":1086},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "An Lão (xã)",
- "truocsn": "Thị trấn An Lão, Xã An Thắng, Xã Tân Dân, Xã An Tiến, Thị trấn Trường Sơn, Xã Thái Sơn",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1095\",\"properties\":{\"matinhxa\":\"4.1106\",\"maxa\":1106},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "An Phong (phường)",
- "truocsn": "Phường An Hòa, Phường Hồng Phong, Phường Đại Bản, Phường Lê Thiện, Phường Tân Tiến, Phường Lê Lợi",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1097\",\"properties\":{\"matinhxa\":\"4.1108\",\"maxa\":1108},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "An Phú (xã)",
- "truocsn": "Xã An Bình, Xã An Phú, Xã Cộng Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.963\",\"properties\":{\"matinhxa\":\"4.974\",\"maxa\":974},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "An Quang (xã)",
- "truocsn": "Xã Quốc Tuấn, Xã Quang Trung (huyện An Lão), Xã Quang Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1082\",\"properties\":{\"matinhxa\":\"4.1093\",\"maxa\":1093},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "An Thành (xã)",
- "truocsn": "Xã Ngũ Phúc (huyện Kim Thành), Xã Kim Tân, Xã Kim Đính",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.945\",\"properties\":{\"matinhxa\":\"4.956\",\"maxa\":956},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "An Trường (xã)",
- "truocsn": "Xã Bát Trang, Xã Trường Thọ, Xã Trường Thành",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1096\",\"properties\":{\"matinhxa\":\"4.1107\",\"maxa\":1107},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bắc An Phụ (phường)",
- "truocsn": "Phường Thất Hùng, Xã Bạch Đằng (thị xã Kinh Môn), Xã Lê Ninh, Phường Văn Đức",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.860\",\"properties\":{\"matinhxa\":\"4.871\",\"maxa\":871},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bắc Thanh Miện (xã)",
- "truocsn": "Xã Hồng Quang, Xã Lam Sơn, Xã Lê Hồng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1045\",\"properties\":{\"matinhxa\":\"4.1056\",\"maxa\":1056},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Bạch Đằng (phường)",
- "truocsn": "Phường Minh Đức, Xã Bạch Đằng (thành phố Thủy Nguyên), Phường Phạm Ngũ Lão",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1171\",\"properties\":{\"matinhxa\":\"4.1182\",\"maxa\":1182},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Bạch Long Vĩ (đặc khu)",
- "truocsn": "Huyện Bạch Long Vĩ",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3310\",\"properties\":{\"matinhxa\":\"4.3326\",\"maxa\":3326},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Bình Giang (xã)",
- "truocsn": "Xã Tân Việt (huyện Bình Giang), Xã Long Xuyên, Xã Hồng Khê, Xã Cổ Bì, Xã Vĩnh Hồng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1012\",\"properties\":{\"matinhxa\":\"4.1023\",\"maxa\":1023},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cẩm Giang (xã)",
- "truocsn": "Thị trấn Cẩm Giang, Xã Định Sơn, Xã Cẩm Hoàng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1010\",\"properties\":{\"matinhxa\":\"4.1021\",\"maxa\":1021},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Cẩm Giàng (xã)",
- "truocsn": "Xã Lương Điền, Xã Ngọc Liên, Xã Cẩm Hưng, Xã Phúc Điền",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1015\",\"properties\":{\"matinhxa\":\"4.1026\",\"maxa\":1026},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Cát Hải (đặc khu)",
- "truocsn": "Thị trấn Cát Hải, Thị trấn Cát Bà, Xã Đồng Bài, Xã Hoàng Châu, Xã Nghĩa Lộ, Xã Văn Phong, Xã Gia Luận, Xã Hiền Hào, Xã Phù Long, Xã Trân Châu, Xã Việt Hải, Xã Xuân Đám",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.989\",\"properties\":{\"matinhxa\":\"4.1000\",\"maxa\":1000},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Chấn Hưng (xã)",
- "truocsn": "Xã Nam Hưng (huyện Tiên Lãng), Xã Bắc Hưng, Xã Đông Hưng, Xã Tây Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1129\",\"properties\":{\"matinhxa\":\"4.1140\",\"maxa\":1140},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Chí Linh (phường)",
- "truocsn": "Phường Phả Lại, Phường Cổ Thành, Xã Nhân Huệ",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.861\",\"properties\":{\"matinhxa\":\"4.872\",\"maxa\":872},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Chí Minh (xã)",
- "truocsn": "Xã An Thanh, Xã Văn Tố, Xã Chí Minh",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.886\",\"properties\":{\"matinhxa\":\"4.897\",\"maxa\":897},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Chu Văn An (phường)",
- "truocsn": "Phường Sao Đỏ, Phường Văn An, Phường Chí Minh, Phường Thái Học, Phường Cộng Hòa, Phường Văn Đức",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.862\",\"properties\":{\"matinhxa\":\"4.873\",\"maxa\":873},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đại Sơn (xã)",
- "truocsn": "Xã Bình Lãng, Xã Đại Sơn, Xã Thanh Hải, Xã Hưng Đạo (huyện Tứ Kỳ)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.952\",\"properties\":{\"matinhxa\":\"4.963\",\"maxa\":963},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đồ Sơn (phường)",
- "truocsn": "Phường Hải Sơn, Phường Tân Thành, Phường Vạn Hương, Phường Ngọc Xuyên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.988\",\"properties\":{\"matinhxa\":\"4.999\",\"maxa\":999},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đông Hải (phường)",
- "truocsn": "Phường Đông Hải 1, Phường Đông Hải 2, Phường Nam Hải",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.969\",\"properties\":{\"matinhxa\":\"4.980\",\"maxa\":980},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đường An (xã)",
- "truocsn": "Xã Thúc Kháng, Xã Thái Minh, Xã Tân Hồng, Xã Thái Dương, Xã Thái Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1011\",\"properties\":{\"matinhxa\":\"4.1022\",\"maxa\":1022},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Dương Kinh (phường)",
- "truocsn": "Phường Hòa Nghĩa, Phường Tân Thành, Phường Anh Dũng, Phường Hải Thành",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.983\",\"properties\":{\"matinhxa\":\"4.994\",\"maxa\":994},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Gia Lộc (xã)",
- "truocsn": "Xã Gia Tiến, Thị trấn Gia Lộc, Xã Gia Phúc, Xã Yết Kiêu, Xã Lê Lợi (huyện Gia Lộc)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1000\",\"properties\":{\"matinhxa\":\"4.1011\",\"maxa\":1011},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Gia Phúc (xã)",
- "truocsn": "Xã Toàn Thắng, Xã Hoàng Diệu, Xã Hồng Hưng, Xã Thống Kênh, Xã Đoàn Thượng, Xã Quang Đức, Thị trấn Gia Lộc, Xã Gia Phúc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.980\",\"properties\":{\"matinhxa\":\"4.991\",\"maxa\":991},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Gia Viên (phường)",
- "truocsn": "Phường Đằng Giang, Phường Cầu Đất, Phường Lạch Tray, Phường Gia Viên, Phường Đông Khê",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1193\",\"properties\":{\"matinhxa\":\"4.1204\",\"maxa\":1204},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hà Bắc (xã)",
- "truocsn": "Xã Tân Việt (huyện Thanh Hà), Xã Cẩm Việt, Xã Hồng Lạc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.938\",\"properties\":{\"matinhxa\":\"4.949\",\"maxa\":949},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hà Đông (xã)",
- "truocsn": "Xã Thanh Hồng, Xã Vĩnh Cường, Xã Thanh Quang",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.966\",\"properties\":{\"matinhxa\":\"4.977\",\"maxa\":977},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hà Nam (xã)",
- "truocsn": "Xã Thanh Xuân, Xã Liên Mạc, Xã Thanh Lang, Xã Thanh An, Xã Hòa Bình",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.944\",\"properties\":{\"matinhxa\":\"4.955\",\"maxa\":955},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hà Tây (xã)",
- "truocsn": "Xã Tân An, Xã An Phượng, Xã Thanh Hải",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.953\",\"properties\":{\"matinhxa\":\"4.964\",\"maxa\":964},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hải An (phường)",
- "truocsn": "Phường Cát Bi, Phường Đằng Lâm, Phường Thành Tô, Phường Đằng Hải, Phường Tràng Cát, Phường Nam Hải, Phường Đông Hải 2",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1197\",\"properties\":{\"matinhxa\":\"4.1208\",\"maxa\":1208},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hải Dương (phường)",
- "truocsn": "Phường Trần Hưng Đạo (thành phố Hải Dương), Phường Nhị Châu, Phường Ngọc Châu, Phường Quang Trung",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.967\",\"properties\":{\"matinhxa\":\"4.978\",\"maxa\":978},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hải Hưng (xã)",
- "truocsn": "Xã Tân Trào (huyện Thanh Miện), Xã Ngô Quyền, Xã Đoàn Kết",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1046\",\"properties\":{\"matinhxa\":\"4.1057\",\"maxa\":1057},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hòa Bình (phường)",
- "truocsn": "Phường Hòa Bình, Phường An Lư, Phường Thủy Hà",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1172\",\"properties\":{\"matinhxa\":\"4.1183\",\"maxa\":1183},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hồng An (phường)",
- "truocsn": "Phường Quán Toan, Phường An Hồng, Phường An Hưng, Phường Đại Bản, Phường Lê Thiện, Phường Tân Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1223\",\"properties\":{\"matinhxa\":\"4.1234\",\"maxa\":1234},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hồng Bàng (phường)",
- "truocsn": "Phường Hoàng Văn Thụ, Phường Minh Khai, Phường Phan Bội Châu, Phường Thượng Lý, Phường Sở Dầu, Phường Hùng Vương, Phường Gia Viên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1178\",\"properties\":{\"matinhxa\":\"4.1189\",\"maxa\":1189},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hồng Châu (xã)",
- "truocsn": "Xã Tân Quang, Xã Văn Hội, Xã Hưng Long",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1038\",\"properties\":{\"matinhxa\":\"4.1049\",\"maxa\":1049},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hợp Tiến (xã)",
- "truocsn": "Xã Nam Hưng (huyện Nam Sách), Xã Nam Tân, Xã Hợp Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.864\",\"properties\":{\"matinhxa\":\"4.875\",\"maxa\":875},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hưng Đạo (phường)",
- "truocsn": "Phường Đa Phúc, Phường Hưng Đạo, Phường Anh Dũng, Phường Hải Thành",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1174\",\"properties\":{\"matinhxa\":\"4.1185\",\"maxa\":1185},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Hùng Thắng (xã)",
- "truocsn": "Xã Hùng Thắng (huyện Tiên Lãng), Xã Vinh Quang",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.987\",\"properties\":{\"matinhxa\":\"4.998\",\"maxa\":998},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Kẻ Sặt (xã)",
- "truocsn": "Xã Vĩnh Hưng, Xã Hùng Thắng (huyện Bình Giang), Thị trấn Kẻ Sặt, Xã Vĩnh Hồng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1014\",\"properties\":{\"matinhxa\":\"4.1025\",\"maxa\":1025},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Khúc Thừa Dụ (xã)",
- "truocsn": "Xã Bình Xuyên, Xã Hồng Phong (huyện Ninh Giang), Xã Kiến Phúc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1039\",\"properties\":{\"matinhxa\":\"4.1050\",\"maxa\":1050},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Kiến An (phường)",
- "truocsn": "Phường Nam Sơn (quận Kiến An), Phường Đồng Hòa, Phường Bắc Sơn, Phường Trần Thành Ngọ, Phường Văn Đẩu",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1198\",\"properties\":{\"matinhxa\":\"4.1209\",\"maxa\":1209},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Kiến Hải (xã)",
- "truocsn": "Xã Tân Phong, Xã Đại Hợp (huyện Kiến Thụy), Xã Tú Sơn, Xã Đoàn Xá",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.986\",\"properties\":{\"matinhxa\":\"4.997\",\"maxa\":997},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Kiến Hưng (xã)",
- "truocsn": "Xã Tân Trào (huyện Kiến Thụy), Xã Kiến Hưng, Xã Đoàn Xá",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.984\",\"properties\":{\"matinhxa\":\"4.995\",\"maxa\":995},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Kiến Minh (xã)",
- "truocsn": "Xã Minh Tân (huyện Kiến Thụy), Xã Đại Đồng, Xã Đông Phương",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1203\",\"properties\":{\"matinhxa\":\"4.1214\",\"maxa\":1214},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Kiến Thụy (xã)",
- "truocsn": "Thị trấn Núi Đối, Xã Thanh Sơn (huyện Kiến Thụy), Xã Thuận Thiên, Xã Hữu Bằng, Xã Kiến Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1204\",\"properties\":{\"matinhxa\":\"4.1215\",\"maxa\":1215},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Kim Thành (xã)",
- "truocsn": "Xã Đồng Cẩm, Xã Tam Kỳ, Xã Đại Đức, Xã Hòa Bình",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.865\",\"properties\":{\"matinhxa\":\"4.876\",\"maxa\":876},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Kinh Môn (phường)",
- "truocsn": "Phường An Lưu, Phường Hiệp An, Phường Long Xuyên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1035\",\"properties\":{\"matinhxa\":\"4.1046\",\"maxa\":1046},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Lạc Phượng (xã)",
- "truocsn": "Xã Quang Trung (huyện Tứ Kỳ), Xã Lạc Phượng, Xã Tiên Động",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1043\",\"properties\":{\"matinhxa\":\"4.1054\",\"maxa\":1054},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Lai Khê (xã)",
- "truocsn": "Xã Lai Khê, Xã Vũ Dũng, Xã Tuấn Việt, Xã Cộng Hoà, Xã Thanh An, Xã Cẩm Việt",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.941\",\"properties\":{\"matinhxa\":\"4.952\",\"maxa\":952},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Lê Chân (phường)",
- "truocsn": "Phường Hàng Kênh, Phường Dư Hàng Kênh, Phường Kênh Dương, Phường An Biên, Phường Trần Nguyên Hãn, Phường Vĩnh Niệm, Phường Cầu Đất, Phường Lạch Tray",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1196\",\"properties\":{\"matinhxa\":\"4.1207\",\"maxa\":1207},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Lê Đại Hành (phường)",
- "truocsn": "Phường Tân Dân (thành phố Chí Linh), Phường An Lạc, Phường Đồng Lạc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1021\",\"properties\":{\"matinhxa\":\"4.1032\",\"maxa\":1032},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Lê Ích Mộc (phường)",
- "truocsn": "Phường Quảng Thanh, Phường Lê Hồng Phong, Xã Quang Trung (thành phố Thủy Nguyên)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1224\",\"properties\":{\"matinhxa\":\"4.1235\",\"maxa\":1235},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Lê Thanh Nghị (phường)",
- "truocsn": "Phường Tân Bình, Phường Thanh Bình, Phường Lê Thanh Nghị, Phường Trần Phú",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.825\",\"properties\":{\"matinhxa\":\"4.836\",\"maxa\":836},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Lưu Kiếm (phường)",
- "truocsn": "Phường Trần Hưng Đạo (thành phố Thủy Nguyên), Phường Lưu Kiếm, Xã Liên Xuân, Xã Quang Trung (thành phố Thủy Nguyên)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1170\",\"properties\":{\"matinhxa\":\"4.1181\",\"maxa\":1181},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Mao Điền (xã)",
- "truocsn": "Xã Tân Trường, Xã Cẩm Đông, Xã Phúc Điền",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1013\",\"properties\":{\"matinhxa\":\"4.1024\",\"maxa\":1024},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Nam An Phụ (xã)",
- "truocsn": "Xã Quang Thành, Xã Lạc Long, Xã Thăng Long, Xã Tuấn Việt, Xã Vũ Dũng, Xã Cộng Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.962\",\"properties\":{\"matinhxa\":\"4.973\",\"maxa\":973},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Nam Đồ Sơn (phường)",
- "truocsn": "Phường Minh Đức (quận Đồ Sơn), Phường Bàng La, Phường Hợp Đức, Phường Vạn Hương, Phường Ngọc Xuyên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.985\",\"properties\":{\"matinhxa\":\"4.996\",\"maxa\":996},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Nam Đồng (phường)",
- "truocsn": "Phường Nam Đồng, Xã Tiền Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1001\",\"properties\":{\"matinhxa\":\"4.1012\",\"maxa\":1012},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nam Sách (xã)",
- "truocsn": "Thị trấn Nam Sách, Xã Hồng Phong (huyện Nam Sách), Xã Đồng Lạc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.982\",\"properties\":{\"matinhxa\":\"4.993\",\"maxa\":993},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nam Thanh Miện (xã)",
- "truocsn": "Xã Hồng Phong (huyện Thanh Miện), Xã Thanh Giang, Xã Chi Lăng Bắc, Xã Chi Lăng Nam",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1037\",\"properties\":{\"matinhxa\":\"4.1048\",\"maxa\":1048},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nam Triệu (phường)",
- "truocsn": "Phường Nam Triệu Giang, Phường Lập Lễ, Phường Tam Hưng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.971\",\"properties\":{\"matinhxa\":\"4.982\",\"maxa\":982},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nghi Dương (xã)",
- "truocsn": "Xã Ngũ Phúc (huyện Kiến Thụy), Xã Kiến Quốc, Xã Du Lễ",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1048\",\"properties\":{\"matinhxa\":\"4.1059\",\"maxa\":1059},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Ngô Quyền (phường)",
- "truocsn": "Phường Máy Chai, Phường Vạn Mỹ, Phường Cầu Tre, Phường Gia Viên, Phường Đông Khê",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.968\",\"properties\":{\"matinhxa\":\"4.979\",\"maxa\":979},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Nguyễn Bỉnh Khiêm (xã)",
- "truocsn": "Xã Trấn Dương, Xã Hòa Bình, Xã Lý Học",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1105\",\"properties\":{\"matinhxa\":\"4.1116\",\"maxa\":1116},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Nguyễn Đại Năng (phường)",
- "truocsn": "Phường Thái Thịnh, Phường Hiến Thành, Xã Minh Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1022\",\"properties\":{\"matinhxa\":\"4.1033\",\"maxa\":1033},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nguyên Giáp (xã)",
- "truocsn": "Xã Hà Kỳ, Xã Nguyên Giáp, Xã Hà Thanh, Xã Tiên Động",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1044\",\"properties\":{\"matinhxa\":\"4.1055\",\"maxa\":1055},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nguyễn Lương Bằng (xã)",
- "truocsn": "Xã Phạm Kha, Xã Nhân Quyền, Xã Thanh Tùng, Xã Đoàn Tùng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.883\",\"properties\":{\"matinhxa\":\"4.894\",\"maxa\":894},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nguyễn Trãi (phường)",
- "truocsn": "Phường Bến Tắm, Xã Bắc An, Xã Hoàng Hoa Thám",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1017\",\"properties\":{\"matinhxa\":\"4.1028\",\"maxa\":1028},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Nhị Chiểu (phường)",
- "truocsn": "Phường Tân Dân (thị xã Kinh Môn), Phường Minh Tân, Phường Duy Tân, Phường Phú Thứ",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.859\",\"properties\":{\"matinhxa\":\"4.870\",\"maxa\":870},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Ninh Giang (xã)",
- "truocsn": "Thị trấn Ninh Giang, Xã Vĩnh Hòa (huyện Ninh Giang), Xã Hồng Dụ, Xã Hiệp Lực",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1042\",\"properties\":{\"matinhxa\":\"4.1053\",\"maxa\":1053},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Phạm Sư Mạnh (phường)",
- "truocsn": "Phường Phạm Thái, Phường An Sinh, Phường Hiệp Sơn",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1019\",\"properties\":{\"matinhxa\":\"4.1030\",\"maxa\":1030},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Phù Liễn (phường)",
- "truocsn": "Phường Bắc Hà, Phường Ngọc Sơn, Thị trấn Trường Sơn, Phường Nam Sơn (quận Kiến An), Phường Đồng Hòa, Phường Bắc Sơn, Phường Trần Thành Ngọ, Phường Văn Đẩu",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1226\",\"properties\":{\"matinhxa\":\"4.1237\",\"maxa\":1237},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Phú Thái (xã)",
- "truocsn": "Thị trấn Phú Thái, Xã Kim Xuyên, Xã Kim Anh, Xã Kim Liên, Xã Thượng Quận",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.857\",\"properties\":{\"matinhxa\":\"4.868\",\"maxa\":868},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quyết Thắng (xã)",
- "truocsn": "Xã Đại Thắng, Xã Tiên Cường, Xã Tự Cường",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1059\",\"properties\":{\"matinhxa\":\"4.1070\",\"maxa\":1070},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Tân Phong (huyện Ninh Giang), Xã An Đức, Xã Đức Phúc",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1040\",\"properties\":{\"matinhxa\":\"4.1051\",\"maxa\":1051},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tân Hưng (phường)",
- "truocsn": "Phường Hải Tân, Phường Tân Hưng, Xã Ngọc Sơn, Phường Trần Phú",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.981\",\"properties\":{\"matinhxa\":\"4.992\",\"maxa\":992},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tân Kỳ (xã)",
- "truocsn": "Xã Đại Hợp (huyện Tứ Kỳ), Xã Tân Kỳ, Xã Dân An, Xã Kỳ Sơn, Xã Hưng Đạo (huyện Tứ Kỳ)",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.884\",\"properties\":{\"matinhxa\":\"4.895\",\"maxa\":895},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tân Minh (xã)",
- "truocsn": "Xã Cấp Tiến, Xã Kiến Thiết, Xã Đoàn Lập, Xã Tân Minh",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1134\",\"properties\":{\"matinhxa\":\"4.1145\",\"maxa\":1145},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Thạch Khôi (phường)",
- "truocsn": "Phường Thạch Khôi, Xã Gia Xuyên, Xã Liên Hồng, Xã Thống Nhất",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.836\",\"properties\":{\"matinhxa\":\"4.847\",\"maxa\":847},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Thái Tân (xã)",
- "truocsn": "Xã Minh Tân (huyện Nam Sách), Xã An Sơn, Xã Thái Tân",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1009\",\"properties\":{\"matinhxa\":\"4.1020\",\"maxa\":1020},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Thành Đông (phường)",
- "truocsn": "Phường Cẩm Thượng, Phường Bình Hàn, Phường Nguyễn Trãi, Xã An Thượng",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.826\",\"properties\":{\"matinhxa\":\"4.837\",\"maxa\":837},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Thanh Hà (xã)",
- "truocsn": "Thị trấn Thanh Hà, Xã Thanh Sơn (huyện Thanh Hà), Xã Thanh Tân",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.964\",\"properties\":{\"matinhxa\":\"4.975\",\"maxa\":975},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Thanh Miện (xã)",
- "truocsn": "Xã Cao Thắng, Xã Ngũ Hùng, Xã Tứ Cường, Thị trấn Thanh Miện",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.881\",\"properties\":{\"matinhxa\":\"4.892\",\"maxa\":892},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Thiên Hương (phường)",
- "truocsn": "Phường Thiên Hương, Phường Hoàng Lâm, Phường Lê Hồng Phong, Phường Hoa Động",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1205\",\"properties\":{\"matinhxa\":\"4.1216\",\"maxa\":1216},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Thượng Hồng (xã)",
- "truocsn": "Xã Bình Xuyên (huyện Bình Giang), Xã Thanh Tùng, Xã Đoàn Tùng, Xã Thúc Kháng, Xã Thái Minh, Xã Tân Hồng, Xã Thái Dương, Xã Thái Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1036\",\"properties\":{\"matinhxa\":\"4.1047\",\"maxa\":1047},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Thủy Nguyên (phường)",
- "truocsn": "Phường Dương Quan, Phường Thủy Đường, Phường Hoa Động, Phường An Lư, Phường Thủy Hà",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.970\",\"properties\":{\"matinhxa\":\"4.981\",\"maxa\":981},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Tiên Lãng (xã)",
- "truocsn": "Thị trấn Tiên Lãng, Xã Quyết Tiến, Xã Tiên Thanh, Xã Khởi Nghĩa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1151\",\"properties\":{\"matinhxa\":\"4.1162\",\"maxa\":1162},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tiên Minh (xã)",
- "truocsn": "Xã Tiên Thắng, Xã Tiên Minh, Xã Tân Minh",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1146\",\"properties\":{\"matinhxa\":\"4.1157\",\"maxa\":1157},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Trần Hưng Đạo (phường)",
- "truocsn": "Xã Lê Lợi, Xã Hưng Đạo (thành phố Chí Linh), Phường Cộng Hòa",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1018\",\"properties\":{\"matinhxa\":\"4.1029\",\"maxa\":1029},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Trần Liễu (phường)",
- "truocsn": "Phường An Phụ, Xã Hiệp Hòa, Xã Thượng Quận",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.965\",\"properties\":{\"matinhxa\":\"4.976\",\"maxa\":976},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Trần Nhân Tông (phường)",
- "truocsn": "Phường Hoàng Tân, Phường Hoàng Tiến, Phường Văn Đức",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1016\",\"properties\":{\"matinhxa\":\"4.1027\",\"maxa\":1027},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Trần Phú (xã)",
- "truocsn": "Xã Quốc Tuấn (huyện Nam Sách), Xã Hiệp Cát, Xã Trần Phú",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.863\",\"properties\":{\"matinhxa\":\"4.874\",\"maxa\":874},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Trường Tân (xã)",
- "truocsn": "Xã Phạm Trấn, Xã Nhật Quang, Xã Thống Kênh, Xã Đoàn Thượng, Xã Quang Đức, Thị trấn Thanh Miện",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.882\",\"properties\":{\"matinhxa\":\"4.893\",\"maxa\":893},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tứ Kỳ (xã)",
- "truocsn": "Thị trấn Tứ Kỳ, Xã Minh Đức, Xã Quang Khải, Xã Quang Phục",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.885\",\"properties\":{\"matinhxa\":\"4.896\",\"maxa\":896},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tứ Minh (phường)",
- "truocsn": "Xã Cẩm Đoài, Phường Tứ Minh, Thị trấn Lai Cách",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1008\",\"properties\":{\"matinhxa\":\"4.1019\",\"maxa\":1019},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Tuệ Tĩnh (xã)",
- "truocsn": "Xã Đức Chính, Xã Cẩm Vũ, Xã Cẩm Văn",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.979\",\"properties\":{\"matinhxa\":\"4.990\",\"maxa\":990},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Việt Hòa (xã)",
- "truocsn": "Phường Việt Hòa, Xã Cao An, Phường Tứ Minh, Thị trấn Lai Cách",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.978\",\"properties\":{\"matinhxa\":\"4.989\",\"maxa\":989},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Việt Khê (xã)",
- "truocsn": "Xã Ninh Sơn, Xã Liên Xuân",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1225\",\"properties\":{\"matinhxa\":\"4.1236\",\"maxa\":1236},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Vĩnh Am (xã)",
- "truocsn": "Xã Tam Cường, Xã Cao Minh, Xã Liên Am",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1100\",\"properties\":{\"matinhxa\":\"4.1111\",\"maxa\":1111},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Vĩnh Bảo (xã)",
- "truocsn": "Thị trấn Vĩnh Bảo, Xã Vĩnh Hưng (huyện Vĩnh Bảo), Xã Tân Hưng, Xã Tân Liên",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1168\",\"properties\":{\"matinhxa\":\"4.1179\",\"maxa\":1179},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Vĩnh Hải (xã)",
- "truocsn": "Xã Tiền Phong, Xã Vĩnh Hải",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1121\",\"properties\":{\"matinhxa\":\"4.1132\",\"maxa\":1132},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Vĩnh Hòa (phường)",
- "truocsn": "Xã Vĩnh Hòa (huyện Vĩnh Bảo), Xã Hùng Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1166\",\"properties\":{\"matinhxa\":\"4.1177\",\"maxa\":1177},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Vĩnh Lại (xã)",
- "truocsn": "Xã Ứng Hòe, Xã Tân Hương, Xã Nghĩa An",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1041\",\"properties\":{\"matinhxa\":\"4.1052\",\"maxa\":1052},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Vĩnh Thịnh (xã)",
- "truocsn": "Xã Thắng Thủy, Xã Trung Lập, Xã Việt Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1167\",\"properties\":{\"matinhxa\":\"4.1178\",\"maxa\":1178},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Vĩnh Thuận (xã)",
- "truocsn": "Xã Vĩnh An, Xã Giang Biên, Xã Dũng Tiến",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1054\",\"properties\":{\"matinhxa\":\"4.1065\",\"maxa\":1065},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Yết Kiêu (xã)",
- "truocsn": "Xã Thống Nhất, Xã Lê Lợi (huyện Gia Lộc), Xã Yết Kiêu",
- "provinceName": "thành phố Hải Phòng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1047\",\"properties\":{\"matinhxa\":\"4.1058\",\"maxa\":1058},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "A Sào (xã)",
- "truocsn": "Xã An Đồng, Xã An Hiệp, Xã An Thái, Xã An Khê",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.653\",\"properties\":{\"matinhxa\":\"5.655\",\"maxa\":655},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ái Quốc (xã)",
- "truocsn": "Xã Tây Giang, Xã Ái Quốc",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.696\",\"properties\":{\"matinhxa\":\"5.704\",\"maxa\":704},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ân Thi (xã)",
- "truocsn": "Thị trấn Ân Thi, Xã Quang Vinh, Xã Hoàng Hoa Thám",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.689\",\"properties\":{\"matinhxa\":\"5.695\",\"maxa\":695},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bắc Đông Hưng (xã)",
- "truocsn": "Xã Đông Cường, Xã Đông Xá, Xã Đông Phương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.668\",\"properties\":{\"matinhxa\":\"5.670\",\"maxa\":670},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bắc Đông Quan (xã)",
- "truocsn": "Xã Hà Giang, Xã Đông Kinh, Xã Đông Vinh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.658\",\"properties\":{\"matinhxa\":\"5.660\",\"maxa\":660},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bắc Thái Ninh (xã)",
- "truocsn": "Xã Thái Phúc, Xã Dương Hồng Thủy",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.657\",\"properties\":{\"matinhxa\":\"5.659\",\"maxa\":659},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bắc Thụy Anh (xã)",
- "truocsn": "Xã Thụy Quỳnh, Xã Thụy Văn, Xã Thụy Việt",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.643\",\"properties\":{\"matinhxa\":\"5.645\",\"maxa\":645},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bắc Tiên Hưng (xã)",
- "truocsn": "Xã Liên An Đô, Xã Lô Giang, Xã Mê Linh, Xã Phú Lương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.661\",\"properties\":{\"matinhxa\":\"5.663\",\"maxa\":663},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Định (xã)",
- "truocsn": "Xã Hồng Tiến, Xã Nam Bình, Xã Bình Định",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.763\",\"properties\":{\"matinhxa\":\"5.774\",\"maxa\":774},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Nguyên (xã)",
- "truocsn": "Xã Thanh Tân, Xã An Bình, Xã Bình Nguyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.767\",\"properties\":{\"matinhxa\":\"5.778\",\"maxa\":778},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Thanh (xã)",
- "truocsn": "Xã Minh Tân, Xã Minh Quang (huyện Kiến Xương), Xã Bình Thanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.750\",\"properties\":{\"matinhxa\":\"5.761\",\"maxa\":761},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Châu Ninh (xã)",
- "truocsn": "Xã Đại Tập, Xã Tứ Dân, Xã Tân Châu, Xã Đông Ninh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.798\",\"properties\":{\"matinhxa\":\"5.809\",\"maxa\":809},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Chí Minh (xã)",
- "truocsn": "Xã Thuần Hưng, Xã Nguyễn Huệ, Xã Chí Minh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.780\",\"properties\":{\"matinhxa\":\"5.791\",\"maxa\":791},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đại Đồng (xã)",
- "truocsn": "Xã Việt Hưng, Xã Lương Tài, Xã Đại Đồng, Xã Đình Dù, Xã Lạc Đạo",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.727\",\"properties\":{\"matinhxa\":\"5.738\",\"maxa\":738},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Diên Hà (xã)",
- "truocsn": "Xã Quang Trung (huyện Hưng Hà), Xã Văn Cẩm, Xã Duyên Hải",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.664\",\"properties\":{\"matinhxa\":\"5.666\",\"maxa\":666},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đoàn Đào (xã)",
- "truocsn": "Xã Phan Sào Nam, Xã Minh Hoàng, Xã Đoàn Đào",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.795\",\"properties\":{\"matinhxa\":\"5.806\",\"maxa\":806},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đồng Bằng (xã)",
- "truocsn": "Xã An Cầu, Xã An Ấp, Xã An Lễ, Xã An Quý",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.667\",\"properties\":{\"matinhxa\":\"5.669\",\"maxa\":669},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đồng Châu (xã)",
- "truocsn": "Xã Đông Hoàng (huyện Tiền Hải), Xã Đông Cơ, Xã Đông Lâm, Xã Đông Minh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.695\",\"properties\":{\"matinhxa\":\"5.702\",\"maxa\":702},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đông Hưng (xã)",
- "truocsn": "Thị trấn Đông Hưng, Xã Nguyên Xá (huyện Đông Hưng), Xã Đông La, Xã Đông Các, Xã Đông Sơn, Xã Đông Hợp",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.660\",\"properties\":{\"matinhxa\":\"5.662\",\"maxa\":662},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đông Quan (xã)",
- "truocsn": "Xã Đông Á, Xã Đông Tân, Xã Đông Quan",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.670\",\"properties\":{\"matinhxa\":\"5.672\",\"maxa\":672},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đông Thái Ninh (xã)",
- "truocsn": "Xã Mỹ Lộc, Xã Tân Học, Xã Thái Đô, Xã Thái Xuyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3356\",\"properties\":{\"matinhxa\":\"5.673\",\"maxa\":673},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đông Thụy Anh (xã)",
- "truocsn": "Xã Thụy Trường, Xã Thụy Xuân, Xã An Tân, Xã Hồng Dũng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.642\",\"properties\":{\"matinhxa\":\"5.644\",\"maxa\":644},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đông Tiền Hải (xã)",
- "truocsn": "Xã Đông Xuyên, Xã Đông Quang, Xã Đông Long, Xã Đông Trà",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3357\",\"properties\":{\"matinhxa\":\"5.703\",\"maxa\":703},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đông Tiên Hưng (xã)",
- "truocsn": "Xã Phong Dương Tiến, Xã Phú Châu",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.652\",\"properties\":{\"matinhxa\":\"5.654\",\"maxa\":654},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đức Hợp (xã)",
- "truocsn": "Xã Phú Thọ, Xã Mai Động, Xã Đức Hợp",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.794\",\"properties\":{\"matinhxa\":\"5.805\",\"maxa\":805},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đường Hào (phường)",
- "truocsn": "Phường Dị Sử, Phường Phùng Chí Kiên, Xã Xuân Dục, Xã Hưng Long, Xã Ngọc Lâm",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.694\",\"properties\":{\"matinhxa\":\"5.700\",\"maxa\":700},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hiệp Cường (xã)",
- "truocsn": "Xã Song Mai, Xã Hùng An, Xã Hiệp Cường, Xã Ngọc Thanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.779\",\"properties\":{\"matinhxa\":\"5.790\",\"maxa\":790},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hoàn Long (xã)",
- "truocsn": "Xã Đông Tảo, Xã Đồng Than, Xã Hoàn Long",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.812\",\"properties\":{\"matinhxa\":\"5.823\",\"maxa\":823},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hoàng Hoa Thám (xã)",
- "truocsn": "Thị trấn Vương, Xã Hưng Đạo, Xã Nhật Tân, Xã An Viên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.791\",\"properties\":{\"matinhxa\":\"5.802\",\"maxa\":802},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hồng Châu (phường)",
- "truocsn": "Phường Hồng Châu, Xã Quảng Châu, Xã Hoàng Hanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.786\",\"properties\":{\"matinhxa\":\"5.797\",\"maxa\":797},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hồng Minh (xã)",
- "truocsn": "Xã Chí Hòa, Xã Minh Hòa, Xã Hồng Minh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.644\",\"properties\":{\"matinhxa\":\"5.646\",\"maxa\":646},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hồng Quang (xã)",
- "truocsn": "Xã Hồ Tùng Mậu, Xã Tiền Phong, Xã Hạ Lễ, Xã Hồng Quang",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.774\",\"properties\":{\"matinhxa\":\"5.785\",\"maxa\":785},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hồng Vũ (xã)",
- "truocsn": "Xã Vũ Công, Xã Hồng Vũ",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.757\",\"properties\":{\"matinhxa\":\"5.768\",\"maxa\":768},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hưng Hà (xã)",
- "truocsn": "Xã Hòa Bình, Xã Minh Khai, Xã Thống Nhất (huyện Hưng Hà), Xã Kim Trung, Xã Hồng Lĩnh, Xã Văn Lang, Thị trấn Hưng Hà",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.646\",\"properties\":{\"matinhxa\":\"5.648\",\"maxa\":648},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hưng Phú (xã)",
- "truocsn": "Xã Nam Phú, Xã Nam Hưng, Xã Nam Trung",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.683\",\"properties\":{\"matinhxa\":\"5.688\",\"maxa\":688},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Khoái Châu (xã)",
- "truocsn": "Thị trấn Khoái Châu, Xã Liên Khê, Xã Phùng Hưng, Xã Đông Kết",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.782\",\"properties\":{\"matinhxa\":\"5.793\",\"maxa\":793},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Kiến Xương (xã)",
- "truocsn": "Xã Bình Minh, Xã Quang Trung (huyện Kiến Xương), Xã Quang Minh, Xã Quang Bình, Thị trấn Kiến Xương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.765\",\"properties\":{\"matinhxa\":\"5.776\",\"maxa\":776},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lạc Đạo (xã)",
- "truocsn": "Xã Chỉ Đạo, Xã Minh Hải, Xã Lạc Đạo",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.811\",\"properties\":{\"matinhxa\":\"5.822\",\"maxa\":822},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lê Lợi (xã)",
- "truocsn": "Xã Thống Nhất (huyện Kiến Xương), Xã Lê Lợi",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.773\",\"properties\":{\"matinhxa\":\"5.784\",\"maxa\":784},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Lê Quý Đôn (xã)",
- "truocsn": "Xã Minh Tân (huyện Hưng Hà), Xã Độc Lập, Xã Hồng An",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.645\",\"properties\":{\"matinhxa\":\"5.647\",\"maxa\":647},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Long Hưng (xã)",
- "truocsn": "Thị trấn Hưng Nhân, Xã Thái Hưng (huyện Hưng Hà), Xã Tân Lễ, Xã Tiến Đức, Xã Liên Hiệp",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.648\",\"properties\":{\"matinhxa\":\"5.650\",\"maxa\":650},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Lương Bằng (xã)",
- "truocsn": "Thị trấn Lương Bằng, Xã Phạm Ngũ Lão, Xã Chính Nghĩa, Xã Diên Hồng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.778\",\"properties\":{\"matinhxa\":\"5.789\",\"maxa\":789},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mễ Sở (xã)",
- "truocsn": "Xã Bình Minh (huyện Khoái Châu), Xã Thắng Lợi, Xã Mễ Sở",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.807\",\"properties\":{\"matinhxa\":\"5.818\",\"maxa\":818},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Minh Thọ (xã)",
- "truocsn": "Xã Quỳnh Hoa, Xã Quỳnh Minh, Xã Quỳnh Giao, Xã Quỳnh Thọ",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.654\",\"properties\":{\"matinhxa\":\"5.656\",\"maxa\":656},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Mỹ Hào (phường)",
- "truocsn": "Phường Bần Yên Nhân, Phường Nhân Hòa, Phường Phan Đình Phùng, Xã Cẩm Xá",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.728\",\"properties\":{\"matinhxa\":\"5.739\",\"maxa\":739},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nam Cường (xã)",
- "truocsn": "Xã Nam Thịnh, Xã Nam Tiến, Xã Nam Chính, Xã Nam Cường",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.684\",\"properties\":{\"matinhxa\":\"5.689\",\"maxa\":689},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nam Đông Hưng (xã)",
- "truocsn": "Xã Đông Hoàng (huyện Đông Hưng), Xã Xuân Quang Động",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.651\",\"properties\":{\"matinhxa\":\"5.653\",\"maxa\":653},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Nam Thái Ninh (xã)",
- "truocsn": "Xã Thái Thọ, Xã Thái Thịnh, Xã Thuần Thành",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.697\",\"properties\":{\"matinhxa\":\"5.707\",\"maxa\":707},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Nam Thụy Anh (xã)",
- "truocsn": "Xã Thụy Thanh, Xã Thụy Phong, Xã Thụy Duyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.675\",\"properties\":{\"matinhxa\":\"5.678\",\"maxa\":678},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Nam Tiền Hải (xã)",
- "truocsn": "Xã Nam Hồng, Xã Nam Hà, Xã Nam Hải",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.688\",\"properties\":{\"matinhxa\":\"5.693\",\"maxa\":693},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Nam Tiên Hưng (xã)",
- "truocsn": "Xã Liên Hoa, Xã Hồng Giang, Xã Trọng Quan, Xã Minh Phú",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.669\",\"properties\":{\"matinhxa\":\"5.671\",\"maxa\":671},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Nghĩa Dân (xã)",
- "truocsn": "Xã Đồng Thanh (huyện Kim Động), Xã Vĩnh Xá, Xã Toàn Thắng, Xã Nghĩa Dân",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.783\",\"properties\":{\"matinhxa\":\"5.794\",\"maxa\":794},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Nghĩa Trụ (xã)",
- "truocsn": "Xã Long Hưng, Xã Vĩnh Khúc, Xã Nghĩa Trụ",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.810\",\"properties\":{\"matinhxa\":\"5.821\",\"maxa\":821},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Ngọc Lâm (xã)",
- "truocsn": "Xã Quỳnh Hoàng, Xã Quỳnh Lâm, Xã Quỳnh Ngọc",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.650\",\"properties\":{\"matinhxa\":\"5.652\",\"maxa\":652},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Ngự Thiên (xã)",
- "truocsn": "Xã Tân Hòa (huyện Hưng Hà), Xã Canh Tân, Xã Cộng Hòa, Xã Hòa Tiến",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.649\",\"properties\":{\"matinhxa\":\"5.651\",\"maxa\":651},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Nguyễn Du (xã)",
- "truocsn": "Xã Châu Sơn, Xã Quỳnh Khê, Xã Quỳnh Nguyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.665\",\"properties\":{\"matinhxa\":\"5.667\",\"maxa\":667},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Nguyễn Trãi (xã)",
- "truocsn": "Xã Đặng Lễ, Xã Cẩm Ninh, Xã Đa Lộc, Xã Nguyễn Trãi",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.781\",\"properties\":{\"matinhxa\":\"5.792\",\"maxa\":792},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Nguyễn Văn Linh (xã)",
- "truocsn": "Xã Ngọc Long, Xã Liêu Xá, Xã Nguyễn Văn Linh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.729\",\"properties\":{\"matinhxa\":\"5.740\",\"maxa\":740},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Như Quỳnh (xã)",
- "truocsn": "Thị trấn Như Quỳnh, Xã Tân Quang, Xã Lạc Hồng, Xã Trưng Trắc, Xã Đình Dù",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.813\",\"properties\":{\"matinhxa\":\"5.824\",\"maxa\":824},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Phạm Ngũ Lão (xã)",
- "truocsn": "Xã Bắc Sơn (huyện Ân Thi), Xã Phù Ủng, Xã Đào Dương, Xã Bãi Sậy",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.692\",\"properties\":{\"matinhxa\":\"5.698\",\"maxa\":698},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phố Hiến (phường)",
- "truocsn": "Phường An Tảo, Phường Lê Lợi, Phường Hiến Nam, Phường Minh Khai, Xã Trung Nghĩa, Xã Liên Phương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.787\",\"properties\":{\"matinhxa\":\"5.798\",\"maxa\":798},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phụ Dực (xã)",
- "truocsn": "Thị trấn An Bài, Xã An Ninh (huyện Quỳnh Phụ), Xã An Vũ, Xã An Mỹ, Xã An Thanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.682\",\"properties\":{\"matinhxa\":\"5.687\",\"maxa\":687},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phụng Công (xã)",
- "truocsn": "Xã Xuân Quan, Xã Cửu Cao, Xã Phụng Công",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.808\",\"properties\":{\"matinhxa\":\"5.819\",\"maxa\":819},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Quang Hưng (xã)",
- "truocsn": "Thị trấn Trần Cao, Xã Minh Tân (huyện Phù Cừ), Xã Tống Phan, Xã Quang Hưng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.724\",\"properties\":{\"matinhxa\":\"5.735\",\"maxa\":735},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Quang Lịch (xã)",
- "truocsn": "Xã Hòa Bình (huyện Kiến Xương), Xã Vũ Lễ, Xã Quang Lịch",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.766\",\"properties\":{\"matinhxa\":\"5.777\",\"maxa\":777},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Quỳnh An (xã)",
- "truocsn": "Xã Trang Bảo Xá, Xã An Vinh, Xã Đông Hải",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.662\",\"properties\":{\"matinhxa\":\"5.664\",\"maxa\":664},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Quỳnh Phụ (xã)",
- "truocsn": "Thị trấn Quỳnh Côi, Xã Quỳnh Hải, Xã Quỳnh Hội, Xã Quỳnh Hồng, Xã Quỳnh Mỹ, Xã Quỳnh Hưng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.666\",\"properties\":{\"matinhxa\":\"5.668\",\"maxa\":668},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Sơn Nam (phường)",
- "truocsn": "Phường Lam Sơn, Xã Phú Cường, Xã Hùng Cường, Xã Bảo Khê, Xã Ngọc Thanh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.790\",\"properties\":{\"matinhxa\":\"5.801\",\"maxa\":801},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Hưng (xã)",
- "truocsn": "Xã Thủ Sỹ, Xã Phương Nam, Xã Tân Hưng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.699\",\"properties\":{\"matinhxa\":\"5.710\",\"maxa\":710},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Thuận (xã)",
- "truocsn": "Xã Tân Lập (huyện Vũ Thư), Xã Tự Tân, Xã Bách Thuận",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.718\",\"properties\":{\"matinhxa\":\"5.729\",\"maxa\":729},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Đồng Tiến (huyện Quỳnh Phụ), Xã An Dục, Xã An Tràng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.676\",\"properties\":{\"matinhxa\":\"5.679\",\"maxa\":679},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tây Thái Ninh (xã)",
- "truocsn": "Xã Sơn Hà, Xã Thái Giang",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.655\",\"properties\":{\"matinhxa\":\"5.657\",\"maxa\":657},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tây Thụy Anh (xã)",
- "truocsn": "Xã Thụy Chính, Xã Thụy Dân, Xã Thụy Ninh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.681\",\"properties\":{\"matinhxa\":\"5.686\",\"maxa\":686},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tây Tiền Hải (xã)",
- "truocsn": "Xã Phương Công, Xã Vân Trường, Xã Bắc Hải",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.764\",\"properties\":{\"matinhxa\":\"5.775\",\"maxa\":775},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thái Bình (phường)",
- "truocsn": "Phường Lê Hồng Phong, Phường Bồ Xuyên, Phường Tiền Phong, Xã Tân Hòa (huyện Vũ Thư), Xã Phúc Thành, Xã Tân Phong, Xã Tân Bình",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.720\",\"properties\":{\"matinhxa\":\"5.731\",\"maxa\":731},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Thái Ninh (xã)",
- "truocsn": "Xã Thái Hưng (huyện Thái Thụy), Xã Thái Thượng, Xã Hòa An, Xã Thái Nguyên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.639\",\"properties\":{\"matinhxa\":\"5.641\",\"maxa\":641},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thái Thụy (xã)",
- "truocsn": "Thị trấn Diêm Điền, Xã Thụy Hải, Xã Thụy Trình, Xã Thụy Bình, Xã Thụy Liên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.640\",\"properties\":{\"matinhxa\":\"5.642\",\"maxa\":642},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thần Khê (xã)",
- "truocsn": "Xã Bắc Sơn (huyện Hưng Hà), Xã Đông Đô, Xã Tây Đô, Xã Chi Lăng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.663\",\"properties\":{\"matinhxa\":\"5.665\",\"maxa\":665},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thư Trì (xã)",
- "truocsn": "Xã Song Lãng, Xã Hiệp Hòa, Xã Minh Lãng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.719\",\"properties\":{\"matinhxa\":\"5.730\",\"maxa\":730},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thư Vũ (xã)",
- "truocsn": "Xã Việt Thuận, Xã Vũ Hội, Xã Vũ Vinh, Xã Vũ Vân",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.721\",\"properties\":{\"matinhxa\":\"5.732\",\"maxa\":732},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thượng Hồng (phường)",
- "truocsn": "Phường Bạch Sam, Phường Minh Đức, Xã Dương Quang, Xã Hòa Phong",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.726\",\"properties\":{\"matinhxa\":\"5.737\",\"maxa\":737},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Thụy Anh (xã)",
- "truocsn": "Xã Thụy Sơn, Xã Dương Phúc, Xã Thụy Hưng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.641\",\"properties\":{\"matinhxa\":\"5.643\",\"maxa\":643},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tiền Hải (xã)",
- "truocsn": "Thị trấn Tiền Hải, Xã An Ninh (huyện Tiền Hải), Xã Tây Ninh, Xã Tây Lương, Xã Vũ Lăng",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.677\",\"properties\":{\"matinhxa\":\"5.681\",\"maxa\":681},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tiên Hoa (xã)",
- "truocsn": "Xã Lệ Xá, Xã Trung Dũng, Xã Cương Chính",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.722\",\"properties\":{\"matinhxa\":\"5.733\",\"maxa\":733},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tiên Hưng (xã)",
- "truocsn": "Xã Minh Tân (huyện Đông Hưng), Xã Hồng Bạch, Xã Thăng Long, Xã Hồng Việt",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.659\",\"properties\":{\"matinhxa\":\"5.661\",\"maxa\":661},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tiên La (xã)",
- "truocsn": "Xã Tân Tiến (huyện Hưng Hà), Xã Thái Phương, Xã Đoan Hùng, Xã Phúc Khánh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.647\",\"properties\":{\"matinhxa\":\"5.649\",\"maxa\":649},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tiên Lữ (xã)",
- "truocsn": "Xã Thiện Phiến, Xã Hải Thắng, Xã Thụy Lôi",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.788\",\"properties\":{\"matinhxa\":\"5.799\",\"maxa\":799},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tiên Tiến (xã)",
- "truocsn": "Xã Đình Cao, Xã Nhật Quang, Xã Tiên Tiến",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.723\",\"properties\":{\"matinhxa\":\"5.734\",\"maxa\":734},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tống Trân (xã)",
- "truocsn": "Xã Tam Đa, Xã Nguyên Hòa, Xã Tống Trân",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.797\",\"properties\":{\"matinhxa\":\"5.808\",\"maxa\":808},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Trà Giang (xã)",
- "truocsn": "Xã Hồng Thái, Xã Quốc Tuấn, Xã Trà Giang",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.772\",\"properties\":{\"matinhxa\":\"5.783\",\"maxa\":783},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Trà Lý (phường)",
- "truocsn": "Phường Hoàng Diệu, Xã Đông Mỹ, Xã Đông Hoà, Xã Đông Thọ, Xã Đông Dương",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.725\",\"properties\":{\"matinhxa\":\"5.736\",\"maxa\":736},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Trần Hưng Đạo (phường)",
- "truocsn": "Phường Trần Hưng Đạo, Phường Đề Thám, Phường Quang Trung, Xã Phú Xuân",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.749\",\"properties\":{\"matinhxa\":\"5.760\",\"maxa\":760},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Trần Lãm (phường)",
- "truocsn": "Phường Trần Lãm, Phường Kỳ Bá, Xã Vũ Đông, Xã Vũ Lạc, Xã Vũ Chính, Xã Tây Sơn",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.746\",\"properties\":{\"matinhxa\":\"5.757\",\"maxa\":757},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Triệu Việt Vương (xã)",
- "truocsn": "Xã Phạm Hồng Thái, Xã Tân Dân, Xã Ông Đình, Xã An Vĩ",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.691\",\"properties\":{\"matinhxa\":\"5.697\",\"maxa\":697},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Văn Giang (xã)",
- "truocsn": "Xã Tân Tiến (huyện Văn Giang), Xã Liên Nghĩa, Thị trấn Văn Giang",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.809\",\"properties\":{\"matinhxa\":\"5.820\",\"maxa\":820},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Vạn Xuân (xã)",
- "truocsn": "Xã Đồng Thanh (huyện Vũ Thư), Xã Hồng Lý, Xã Việt Hùng, Xã Xuân Hòa",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.685\",\"properties\":{\"matinhxa\":\"5.690\",\"maxa\":690},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Việt Tiến (xã)",
- "truocsn": "Xã Đồng Tiến (huyện Khoái Châu), Xã Dân Tiến, Xã Việt Hòa",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.784\",\"properties\":{\"matinhxa\":\"5.795\",\"maxa\":795},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Việt Yên (xã)",
- "truocsn": "Xã Yên Phú, Xã Thanh Long, Xã Việt Yên",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.693\",\"properties\":{\"matinhxa\":\"5.699\",\"maxa\":699},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Vũ Phúc (phường)",
- "truocsn": "Phường Phú Khánh, Xã Nguyên Xá (huyện Vũ Thư), Xã Song An, Xã Trung An, Xã Vũ Phúc",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.742\",\"properties\":{\"matinhxa\":\"5.753\",\"maxa\":753},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Vũ Quý (xã)",
- "truocsn": "Xã Vũ An, Xã Vũ Ninh, Xã Vũ Trung, Xã Vũ Quý",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.745\",\"properties\":{\"matinhxa\":\"5.756\",\"maxa\":756},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Vũ Thư (xã)",
- "truocsn": "Xã Hòa Bình, Xã Minh Khai, Xã Minh Quang (huyện Vũ Thư), Xã Tam Quang, Xã Dũng Nghĩa, Thị trấn Vũ Thư",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.743\",\"properties\":{\"matinhxa\":\"5.754\",\"maxa\":754},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Vũ Tiên (xã)",
- "truocsn": "Xã Vũ Đoài, Xã Duy Nhất, Xã Hồng Phong, Xã Vũ Tiến",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.698\",\"properties\":{\"matinhxa\":\"5.709\",\"maxa\":709},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Xuân Trúc (xã)",
- "truocsn": "Xã Vân Du, Xã Quảng Lãng, Xã Xuân Trúc",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.785\",\"properties\":{\"matinhxa\":\"5.796\",\"maxa\":796},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Yên Mỹ (xã)",
- "truocsn": "Thị trấn Yên Mỹ, Xã Tân Lập (huyện Yên Mỹ), Xã Trung Hòa, Xã Tân Minh",
- "provinceName": "tỉnh Hưng Yên",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.690\",\"properties\":{\"matinhxa\":\"5.696\",\"maxa\":696},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bắc Lý (xã)",
- "truocsn": "Xã Chân Lý, Xã Đạo Lý, Xã Bắc Lý",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2801\",\"properties\":{\"matinhxa\":\"6.2817\",\"maxa\":2817},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Trung Lương, Xã Ngọc Lũ, Xã Bình An",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2837\",\"properties\":{\"matinhxa\":\"6.2853\",\"maxa\":2853},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bình Giang (xã)",
- "truocsn": "Xã Bồ Đề, Xã Vũ Bản, Xã An Ninh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2766\",\"properties\":{\"matinhxa\":\"6.2781\",\"maxa\":2781},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bình Lục (xã)",
- "truocsn": "Xã Bình Nghĩa, Xã Tràng An, Xã Đồng Du",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2800\",\"properties\":{\"matinhxa\":\"6.2816\",\"maxa\":2816},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bình Minh (xã)",
- "truocsn": "Thị trấn Bình Minh, Xã Cồn Thoi, Xã Kim Mỹ",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.852\",\"properties\":{\"matinhxa\":\"6.863\",\"maxa\":863},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bình Mỹ (xã)",
- "truocsn": "Thị trấn Bình Mỹ, Xã Đồn Xá, Xã La Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2818\",\"properties\":{\"matinhxa\":\"6.2834\",\"maxa\":2834},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Sơn (xã)",
- "truocsn": "Xã Tiêu Động, Xã An Lão, Xã An Đổ",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2817\",\"properties\":{\"matinhxa\":\"6.2833\",\"maxa\":2833},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cát Thành (xã)",
- "truocsn": "Thị trấn Cát Thành, Xã Việt Hùng, Xã Trực Đạo",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.820\",\"properties\":{\"matinhxa\":\"6.831\",\"maxa\":831},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Chất Bình (xã)",
- "truocsn": "Xã Xuân Chính, Xã Hồi Ninh, Xã Chất Bình",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.830\",\"properties\":{\"matinhxa\":\"6.841\",\"maxa\":841},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Châu Sơn (phường)",
- "truocsn": "Phường Thanh Tuyền, Phường Châu Sơn, Thị trấn Kiện Khê",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2827\",\"properties\":{\"matinhxa\":\"6.2843\",\"maxa\":2843},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cổ Lễ (xã)",
- "truocsn": "Thị trấn Cổ Lễ, Xã Trung Đông, Xã Trực Tuấn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.818\",\"properties\":{\"matinhxa\":\"6.829\",\"maxa\":829},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cúc Phương (xã)",
- "truocsn": "Xã Văn Phương, Xã Cúc Phương",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.753\",\"properties\":{\"matinhxa\":\"6.764\",\"maxa\":764},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đại Hoàng (xã)",
- "truocsn": "Xã Tiến Thắng (huyện Gia Viễn), Xã Gia Phương, Xã Gia Trung",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.741\",\"properties\":{\"matinhxa\":\"6.752\",\"maxa\":752},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Định Hóa (xã)",
- "truocsn": "Xã Văn Hải, Xã Kim Tân, Xã Định Hóa",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.759\",\"properties\":{\"matinhxa\":\"6.770\",\"maxa\":770},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông A (phường)",
- "truocsn": "Phường Lộc Hòa, Xã Mỹ Thắng, Xã Mỹ Hà",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.771\",\"properties\":{\"matinhxa\":\"6.782\",\"maxa\":782},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đông Hoa Lư (phường)",
- "truocsn": "Phường Ninh Phúc, Xã Khánh Hòa, Xã Khánh Phú, Xã Khánh An",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.740\",\"properties\":{\"matinhxa\":\"6.751\",\"maxa\":751},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đồng Thái (xã)",
- "truocsn": "Xã Yên Đồng (huyện Yên Mô), Xã Yên Thành, Xã Yên Thái",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.870\",\"properties\":{\"matinhxa\":\"6.881\",\"maxa\":881},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đồng Thịnh (xã)",
- "truocsn": "Xã Hoàng Nam, Xã Đồng Thịnh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.875\",\"properties\":{\"matinhxa\":\"6.886\",\"maxa\":886},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đồng Văn (phường)",
- "truocsn": "Phường Bạch Thượng, Phường Yên Bắc, Phường Đồng Văn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2793\",\"properties\":{\"matinhxa\":\"6.2809\",\"maxa\":2809},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Duy Hà (phường)",
- "truocsn": "Phường Duy Minh, Phường Duy Hải, Phường Hoàng Đông",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2794\",\"properties\":{\"matinhxa\":\"6.2810\",\"maxa\":2810},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Duy Tân (phường)",
- "truocsn": "Phường Châu Giang, Xã Mộc Hoàn, Phường Hòa Mạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2788\",\"properties\":{\"matinhxa\":\"6.2804\",\"maxa\":2804},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Duy Tiên (phường)",
- "truocsn": "Xã Chuyên Ngoại, Xã Trác Văn, Xã Yên Nam, Phường Hòa Mạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2787\",\"properties\":{\"matinhxa\":\"6.2803\",\"maxa\":2803},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Gia Hưng (xã)",
- "truocsn": "Xã Liên Sơn (huyện Gia Viễn), Xã Gia Phú, Xã Gia Hưng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.738\",\"properties\":{\"matinhxa\":\"6.749\",\"maxa\":749},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Gia Lâm (xã)",
- "truocsn": "Xã Gia Sơn, Xã Xích Thổ, Xã Gia Lâm",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.747\",\"properties\":{\"matinhxa\":\"6.758\",\"maxa\":758},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Gia Phong (xã)",
- "truocsn": "Xã Gia Lạc, Xã Gia Minh, Xã Gia Phong",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.736\",\"properties\":{\"matinhxa\":\"6.747\",\"maxa\":747},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Gia Trấn (xã)",
- "truocsn": "Xã Gia Thanh, Xã Gia Xuân, Xã Gia Trấn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.734\",\"properties\":{\"matinhxa\":\"6.745\",\"maxa\":745},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Gia Tường (xã)",
- "truocsn": "Xã Gia Thủy, Xã Đức Long, Xã Gia Tường",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.733\",\"properties\":{\"matinhxa\":\"6.744\",\"maxa\":744},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Gia Vân (xã)",
- "truocsn": "Xã Gia Lập, Xã Gia Vân, Xã Gia Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.739\",\"properties\":{\"matinhxa\":\"6.750\",\"maxa\":750},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Gia Viễn (xã)",
- "truocsn": "Thị trấn Thịnh Vượng, Xã Gia Hòa",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.737\",\"properties\":{\"matinhxa\":\"6.748\",\"maxa\":748},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Giao Bình (xã)",
- "truocsn": "Xã Giao Yến, Xã Bạch Long, Xã Giao Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.908\",\"properties\":{\"matinhxa\":\"6.919\",\"maxa\":919},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Giao Hòa (xã)",
- "truocsn": "Xã Hồng Thuận, Xã Giao An, Xã Giao Lạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.769\",\"properties\":{\"matinhxa\":\"6.780\",\"maxa\":780},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Giao Hưng (xã)",
- "truocsn": "Xã Giao Nhân, Xã Giao Long, Xã Giao Châu",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.892\",\"properties\":{\"matinhxa\":\"6.903\",\"maxa\":903},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Giao Minh (xã)",
- "truocsn": "Xã Giao Thiện, Xã Giao Hương, Xã Giao Thanh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.768\",\"properties\":{\"matinhxa\":\"6.779\",\"maxa\":779},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Giao Ninh (xã)",
- "truocsn": "Thị trấn Quất Lâm, Xã Giao Phong, Xã Giao Thịnh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.922\",\"properties\":{\"matinhxa\":\"6.933\",\"maxa\":933},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Giao Phúc (xã)",
- "truocsn": "Xã Giao Xuân, Xã Giao Hà, Xã Giao Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.898\",\"properties\":{\"matinhxa\":\"6.909\",\"maxa\":909},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Giao Thủy (xã)",
- "truocsn": "Thị trấn Giao Thủy, Xã Bình Hòa",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.821\",\"properties\":{\"matinhxa\":\"6.832\",\"maxa\":832},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hà Nam (phường)",
- "truocsn": "Phường Lam Hạ, Phường Tân Hiệp, Phường Quang Trung (thành phố Phủ Lý), Phường Hoàng Đông, Phường Tiên Nội, Xã Tiên Ngoại",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2829\",\"properties\":{\"matinhxa\":\"6.2845\",\"maxa\":2845},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hải An (xã)",
- "truocsn": "Xã Hải Phong, Xã Hải Giang, Xã Hải An",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.927\",\"properties\":{\"matinhxa\":\"6.938\",\"maxa\":938},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hải Anh (xã)",
- "truocsn": "Xã Hải Minh, Xã Hải Đường, Xã Hải Anh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.833\",\"properties\":{\"matinhxa\":\"6.844\",\"maxa\":844},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hải Hậu (xã)",
- "truocsn": "Thị trấn Yên Định, Xã Hải Trung, Xã Hải Long",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.832\",\"properties\":{\"matinhxa\":\"6.843\",\"maxa\":843},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hải Hưng (xã)",
- "truocsn": "Xã Hải Nam, Xã Hải Lộc, Xã Hải Hưng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.919\",\"properties\":{\"matinhxa\":\"6.930\",\"maxa\":930},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hải Quang (xã)",
- "truocsn": "Xã Hải Đông, Xã Hải Tây, Xã Hải Quang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.828\",\"properties\":{\"matinhxa\":\"6.839\",\"maxa\":839},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hải Thịnh (xã)",
- "truocsn": "Thị trấn Thịnh Long, Xã Hải Châu, Xã Hải Ninh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.937\",\"properties\":{\"matinhxa\":\"6.948\",\"maxa\":948},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hải Tiến (xã)",
- "truocsn": "Thị trấn Cồn, Xã Hải Sơn, Xã Hải Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.918\",\"properties\":{\"matinhxa\":\"6.929\",\"maxa\":929},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hải Xuân (xã)",
- "truocsn": "Xã Hải Phú, Xã Hải Hòa, Xã Hải Xuân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.835\",\"properties\":{\"matinhxa\":\"6.846\",\"maxa\":846},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Hiển Khánh (xã)",
- "truocsn": "Xã Hợp Hưng, Xã Trung Thành, Xã Quang Trung, Xã Hiển Khánh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.776\",\"properties\":{\"matinhxa\":\"6.787\",\"maxa\":787},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Hoa Lư (phường)",
- "truocsn": "Phường Ninh Mỹ, Phường Ninh Khánh, Phường Đông Thành, Phường Tân Thành, Phường Vân Giang, Phường Nam Thành, Phường Nam Bình, Phường Bích Đào, Xã Ninh Khang, Xã Ninh Nhất, Xã Ninh Tiến",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.732\",\"properties\":{\"matinhxa\":\"6.743\",\"maxa\":743},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Hồng Phong (xã)",
- "truocsn": "Xã Nghĩa Hồng, Xã Nghĩa Phong, Xã Nghĩa Phú",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.829\",\"properties\":{\"matinhxa\":\"6.840\",\"maxa\":840},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Hồng Quang (phường)",
- "truocsn": "Xã Hồng Quang (huyện Nam Trực), Xã Nghĩa An, Phường Nam Vân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.877\",\"properties\":{\"matinhxa\":\"6.888\",\"maxa\":888},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Khánh Hội (xã)",
- "truocsn": "Xã Khánh Mậu, Xã Khánh Thủy, Xã Khánh Hội",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.850\",\"properties\":{\"matinhxa\":\"6.861\",\"maxa\":861},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Khánh Nhạc (xã)",
- "truocsn": "Xã Khánh Hồng, Xã Khánh Nhạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.869\",\"properties\":{\"matinhxa\":\"6.880\",\"maxa\":880},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Khánh Thiện (xã)",
- "truocsn": "Xã Khánh Cường, Xã Khánh Lợi, Xã Khánh Thiện",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.744\",\"properties\":{\"matinhxa\":\"6.755\",\"maxa\":755},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Khánh Trung (xã)",
- "truocsn": "Xã Khánh Thành, Xã Khánh Công, Xã Khánh Trung",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.823\",\"properties\":{\"matinhxa\":\"6.834\",\"maxa\":834},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Kim Bảng (phường)",
- "truocsn": "Phường Quế, Phường Ngọc Sơn, Xã Văn Xá",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2824\",\"properties\":{\"matinhxa\":\"6.2840\",\"maxa\":2840},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Kim Đông (xã)",
- "truocsn": "Xã Kim Trung, Xã Kim Đông, Khu vực bãi bồi ven biển (do huyện Kim Sơn quản lý)",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.762\",\"properties\":{\"matinhxa\":\"6.773\",\"maxa\":773},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Kim Sơn (xã)",
- "truocsn": "Xã Kim Định, Xã Ân Hòa, Xã Hùng Tiến",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.814\",\"properties\":{\"matinhxa\":\"6.825\",\"maxa\":825},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Kim Thanh (phường)",
- "truocsn": "Phường Tân Tựu, Xã Hoàng Tây",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2795\",\"properties\":{\"matinhxa\":\"6.2811\",\"maxa\":2811},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Lai Thành (xã)",
- "truocsn": "Xã Yên Lộc (huyện Kim Sơn), Xã Tân Thành, Xã Lai Thành",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.853\",\"properties\":{\"matinhxa\":\"6.864\",\"maxa\":864},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Lê Hồ (phường)",
- "truocsn": "Phường Đại Cương, Phường Đồng Hoá, Phường Lê Hồ",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2791\",\"properties\":{\"matinhxa\":\"6.2807\",\"maxa\":2807},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Liêm Hà (xã)",
- "truocsn": "Xã Liêm Phong, Xã Liêm Cần, Xã Thanh Hà",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2823\",\"properties\":{\"matinhxa\":\"6.2839\",\"maxa\":2839},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Liêm Tuyền (phường)",
- "truocsn": "Phường Tân Liêm, Xã Đinh Xá, Xã Trịnh Xá",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2830\",\"properties\":{\"matinhxa\":\"6.2846\",\"maxa\":2846},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Liên Minh (xã)",
- "truocsn": "Xã Vĩnh Hào, Xã Đại Thắng, Xã Liên Minh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.915\",\"properties\":{\"matinhxa\":\"6.926\",\"maxa\":926},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Lý Nhân (xã)",
- "truocsn": "Xã Chính Lý, Xã Hợp Lý, Xã Văn Lý",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2816\",\"properties\":{\"matinhxa\":\"6.2832\",\"maxa\":2832},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Lý Thường Kiệt (phường)",
- "truocsn": "Xã Liên Sơn, Xã Thanh Sơn (thị xã Kim Bảng), Phường Thi Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2826\",\"properties\":{\"matinhxa\":\"6.2842\",\"maxa\":2842},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Minh Tân (xã)",
- "truocsn": "Xã Cộng Hòa, Xã Minh Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.789\",\"properties\":{\"matinhxa\":\"6.800\",\"maxa\":800},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Minh Thái (xã)",
- "truocsn": "Xã Trực Đại, Xã Trực Thái, Xã Trực Thắng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.920\",\"properties\":{\"matinhxa\":\"6.931\",\"maxa\":931},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Mỹ Lộc (phường)",
- "truocsn": "Phường Hưng Lộc, Xã Mỹ Thuận, Xã Mỹ Lộc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.775\",\"properties\":{\"matinhxa\":\"6.786\",\"maxa\":786},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nam Định (phường)",
- "truocsn": "Phường Quang Trung (thành phố Nam Định), Phường Vị Xuyên, Phường Lộc Vượng, Phường Cửa Bắc, Phường Trần Hưng Đạo, Phường Năng Tĩnh, Phường Cửa Nam, Xã Mỹ Phúc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.800\",\"properties\":{\"matinhxa\":\"6.811\",\"maxa\":811},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nam Đồng (xã)",
- "truocsn": "Xã Đồng Sơn, Xã Nam Thái",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.792\",\"properties\":{\"matinhxa\":\"6.803\",\"maxa\":803},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nam Hoa Lư (phường)",
- "truocsn": "Phường Ninh Phong, Phường Ninh Sơn, Xã Ninh Vân, Xã Ninh An, Xã Ninh Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.752\",\"properties\":{\"matinhxa\":\"6.763\",\"maxa\":763},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Nam Hồng (xã)",
- "truocsn": "Xã Tân Thịnh, Xã Nam Thắng, Xã Nam Hồng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.799\",\"properties\":{\"matinhxa\":\"6.810\",\"maxa\":810},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Nam Lý (xã)",
- "truocsn": "Xã Tiến Thắng (huyện Lý Nhân), Xã Phú Phúc, Xã Hòa Hậu",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2789\",\"properties\":{\"matinhxa\":\"6.2805\",\"maxa\":2805},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Nam Minh (xã)",
- "truocsn": "Xã Nam Dương, Xã Bình Minh, Xã Nam Tiến",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.793\",\"properties\":{\"matinhxa\":\"6.804\",\"maxa\":804},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nam Ninh (xã)",
- "truocsn": "Xã Nam Hoa, Xã Nam Lợi, Xã Nam Hải, Xã Nam Thanh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.796\",\"properties\":{\"matinhxa\":\"6.807\",\"maxa\":807},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nam Trực (xã)",
- "truocsn": "Thị trấn Nam Giang, Xã Nam Cường, Xã Nam Hùng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.874\",\"properties\":{\"matinhxa\":\"6.885\",\"maxa\":885},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nam Xang (xã)",
- "truocsn": "Xã Công Lý, Xã Nguyên Lý, Xã Đức Lý",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2797\",\"properties\":{\"matinhxa\":\"6.2813\",\"maxa\":2813},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Nghĩa Hưng (xã)",
- "truocsn": "Thị trấn Liễu Đề, Xã Nghĩa Thái, Xã Nghĩa Châu, Xã Nghĩa Trung",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.873\",\"properties\":{\"matinhxa\":\"6.884\",\"maxa\":884},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Nghĩa Lâm (xã)",
- "truocsn": "Xã Nghĩa Hùng, Xã Nghĩa Hải, Xã Nghĩa Lâm",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.824\",\"properties\":{\"matinhxa\":\"6.835\",\"maxa\":835},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Nghĩa Sơn (xã)",
- "truocsn": "Xã Nghĩa Lạc, Xã Nghĩa Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.936\",\"properties\":{\"matinhxa\":\"6.947\",\"maxa\":947},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Nguyễn Úy (phường)",
- "truocsn": "Phường Tượng Lĩnh, Phường Tân Sơn, Xã Nguyễn Úy",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2792\",\"properties\":{\"matinhxa\":\"6.2808\",\"maxa\":2808},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Nhân Hà (xã)",
- "truocsn": "Xã Nhân Thịnh, Xã Nhân Mỹ, Xã Xuân Khê",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2790\",\"properties\":{\"matinhxa\":\"6.2806\",\"maxa\":2806},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Nho Quan (xã)",
- "truocsn": "Thị trấn Nho Quan, Xã Đồng Phong, Xã Yên Quang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.751\",\"properties\":{\"matinhxa\":\"6.762\",\"maxa\":762},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Ninh Cường (xã)",
- "truocsn": "Thị trấn Ninh Cường, Xã Trực Cường, Xã Trực Hùng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.917\",\"properties\":{\"matinhxa\":\"6.928\",\"maxa\":928},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Ninh Giang (xã)",
- "truocsn": "Xã Trực Chính, Xã Phương Định, Xã Liêm Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.891\",\"properties\":{\"matinhxa\":\"6.902\",\"maxa\":902},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Phát Diệm (xã)",
- "truocsn": "Thị trấn Phát Diệm, Xã Thượng Kiệm, Xã Kim Chính",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.760\",\"properties\":{\"matinhxa\":\"6.771\",\"maxa\":771},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Phong Doanh (xã)",
- "truocsn": "Xã Phú Hưng, Xã Yên Thọ, Xã Yên Chính",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.909\",\"properties\":{\"matinhxa\":\"6.920\",\"maxa\":920},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Phú Long (xã)",
- "truocsn": "Xã Kỳ Phú, Xã Phú Long",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.761\",\"properties\":{\"matinhxa\":\"6.772\",\"maxa\":772},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Phủ Lý (phường)",
- "truocsn": "Phường Châu Cầu, Phường Thanh Châu, Phường Liêm Chính, Phường Quang Trung (thành phố Phủ Lý)",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2828\",\"properties\":{\"matinhxa\":\"6.2844\",\"maxa\":2844},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Phú Sơn (xã)",
- "truocsn": "Xã Thạch Bình, Xã Lạc Vân, Xã Phú Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.748\",\"properties\":{\"matinhxa\":\"6.759\",\"maxa\":759},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Phù Vân (phường)",
- "truocsn": "Phường Lê Hồng Phong, Xã Kim Bình, Xã Phù Vân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2836\",\"properties\":{\"matinhxa\":\"6.2852\",\"maxa\":2852},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Quang Hưng (xã)",
- "truocsn": "Xã Trực Khang, Xã Trực Mỹ, Xã Trực Thuận",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.872\",\"properties\":{\"matinhxa\":\"6.883\",\"maxa\":883},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Quang Thiện (xã)",
- "truocsn": "Xã Như Hòa, Xã Đồng Hướng, Xã Quang Thiện",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.854\",\"properties\":{\"matinhxa\":\"6.865\",\"maxa\":865},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Quỹ Nhất (xã)",
- "truocsn": "Thị trấn Quỹ Nhất, Xã Nghĩa Thành, Xã Nghĩa Lợi",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.921\",\"properties\":{\"matinhxa\":\"6.932\",\"maxa\":932},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Quỳnh Lưu (xã)",
- "truocsn": "Xã Phú Lộc, Xã Quỳnh Lưu",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.735\",\"properties\":{\"matinhxa\":\"6.746\",\"maxa\":746},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Rạng Đông (xã)",
- "truocsn": "Xã Nam Điền (huyện Nghĩa Hưng), Xã Phúc Thắng, Thị trấn Rạng Đông",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.834\",\"properties\":{\"matinhxa\":\"6.845\",\"maxa\":845},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tam Chúc (phường)",
- "truocsn": "Phường Ba Sao, Xã Khả Phong, Xã Thuỵ Lôi",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2825\",\"properties\":{\"matinhxa\":\"6.2841\",\"maxa\":2841},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tam Điệp (phường)",
- "truocsn": "Phường Bắc Sơn, Phường Tây Sơn, Xã Quang Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.856\",\"properties\":{\"matinhxa\":\"6.867\",\"maxa\":867},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Tân Minh (xã)",
- "truocsn": "Xã Trung Nghĩa, Xã Tân Minh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.770\",\"properties\":{\"matinhxa\":\"6.781\",\"maxa\":781},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tân Thanh (xã)",
- "truocsn": "Thị trấn Tân Thanh, Xã Thanh Thủy, Xã Thanh Phong",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2822\",\"properties\":{\"matinhxa\":\"6.2838\",\"maxa\":2838},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Tây Hoa Lư (phường)",
- "truocsn": "Phường Ninh Giang, Xã Trường Yên, Xã Ninh Hòa, Xã Phúc Sơn, Xã Gia Sinh, Xã Gia Tân",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.730\",\"properties\":{\"matinhxa\":\"6.741\",\"maxa\":741},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Thanh Bình (xã)",
- "truocsn": "Xã Liêm Sơn, Xã Liêm Thuận, Xã Liêm Túc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2821\",\"properties\":{\"matinhxa\":\"6.2837\",\"maxa\":2837},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Thanh Lâm (xã)",
- "truocsn": "Xã Thanh Nghị, Xã Thanh Tân, Xã Thanh Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2820\",\"properties\":{\"matinhxa\":\"6.2836\",\"maxa\":2836},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Thanh Liêm (xã)",
- "truocsn": "Xã Thanh Hương, Xã Thanh Tâm, Xã Thanh Nguyên",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2819\",\"properties\":{\"matinhxa\":\"6.2835\",\"maxa\":2835},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Thành Nam (phường)",
- "truocsn": "Phường Mỹ Xá, Xã Đại An",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.777\",\"properties\":{\"matinhxa\":\"6.788\",\"maxa\":788},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Thanh Sơn (xã)",
- "truocsn": "Xã Thanh Sơn (huyện Nho Quan), Xã Thượng Hòa, Xã Văn Phú",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.731\",\"properties\":{\"matinhxa\":\"6.742\",\"maxa\":742},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Thiên Trường (phường)",
- "truocsn": "Phường Lộc Hạ, Xã Mỹ Tân, Xã Mỹ Trung",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.878\",\"properties\":{\"matinhxa\":\"6.889\",\"maxa\":889},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Tiên Sơn (phường)",
- "truocsn": "Phường Tiên Sơn, Phường Tiên Nội, Xã Tiên Ngoại",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2834\",\"properties\":{\"matinhxa\":\"6.2850\",\"maxa\":2850},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Trần Thương (xã)",
- "truocsn": "Xã Trần Hưng Đạo, Xã Nhân Nghĩa, Xã Nhân Bình",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2796\",\"properties\":{\"matinhxa\":\"6.2812\",\"maxa\":2812},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Trực Ninh (xã)",
- "truocsn": "Xã Trực Thanh, Xã Trực Nội, Xã Trực Hưng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.876\",\"properties\":{\"matinhxa\":\"6.887\",\"maxa\":887},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Trung Sơn (phường)",
- "truocsn": "Phường Nam Sơn, Phường Trung Sơn, Xã Đông Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.754\",\"properties\":{\"matinhxa\":\"6.765\",\"maxa\":765},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Trường Thi (phường)",
- "truocsn": "Phường Trường Thi, Xã Thành Lợi",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.879\",\"properties\":{\"matinhxa\":\"6.890\",\"maxa\":890},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Vạn Thắng (xã)",
- "truocsn": "Xã Yên Thắng (huyện Ý Yên), Xã Yên Tiến, Xã Yên Lương",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.913\",\"properties\":{\"matinhxa\":\"6.924\",\"maxa\":924},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Vị Khê (phường)",
- "truocsn": "Xã Nam Điền (huyện Nam Trực), Phường Nam Phong",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.880\",\"properties\":{\"matinhxa\":\"6.891\",\"maxa\":891},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Vĩnh Trụ (xã)",
- "truocsn": "Thị trấn Vĩnh Trụ, Xã Nhân Chính, Xã Nhân Khang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2806\",\"properties\":{\"matinhxa\":\"6.2822\",\"maxa\":2822},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Vụ Bản (xã)",
- "truocsn": "Thị trấn Gôi, Xã Kim Thái, Xã Tam Thanh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.910\",\"properties\":{\"matinhxa\":\"6.921\",\"maxa\":921},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Vũ Dương (xã)",
- "truocsn": "Xã Yên Mỹ (huyện Ý Yên), Xã Yên Bình, Xã Yên Dương, Xã Yên Ninh",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.912\",\"properties\":{\"matinhxa\":\"6.923\",\"maxa\":923},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Xuân Giang (xã)",
- "truocsn": "Xã Xuân Tân, Xã Xuân Phú, Xã Xuân Giang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.819\",\"properties\":{\"matinhxa\":\"6.830\",\"maxa\":830},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Xuân Hồng (xã)",
- "truocsn": "Xã Xuân Châu, Xã Xuân Thành, Xã Xuân Thượng, Xã Xuân Hồng",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.816\",\"properties\":{\"matinhxa\":\"6.827\",\"maxa\":827},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Xuân Hưng (xã)",
- "truocsn": "Xã Xuân Vinh, Xã Trà Lũ, Xã Thọ Nghiệp",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.817\",\"properties\":{\"matinhxa\":\"6.828\",\"maxa\":828},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Xuân Trường (xã)",
- "truocsn": "Thị trấn Xuân Trường, Xã Xuân Phúc, Xã Xuân Ninh, Xã Xuân Ngọc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.815\",\"properties\":{\"matinhxa\":\"6.826\",\"maxa\":826},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Ý Yên (xã)",
- "truocsn": "Xã Yên Phong, Xã Hồng Quang (huyện Ý Yên), Xã Yên Khánh, Thị trấn Lâm",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.911\",\"properties\":{\"matinhxa\":\"6.922\",\"maxa\":922},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Yên Cường (xã)",
- "truocsn": "Xã Yên Nhân, Xã Yên Lộc (huyện Ý Yên), Xã Yên Phúc, Xã Yên Cường",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.914\",\"properties\":{\"matinhxa\":\"6.925\",\"maxa\":925},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Yên Đồng (xã)",
- "truocsn": "Xã Yên Đồng (huyện Ý Yên), Xã Yên Trị, Xã Yên Khang",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.916\",\"properties\":{\"matinhxa\":\"6.927\",\"maxa\":927},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Yên Khánh (xã)",
- "truocsn": "Thị trấn Yên Ninh, Xã Khánh Cư, Xã Khánh Vân, Xã Khánh Hải",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.827\",\"properties\":{\"matinhxa\":\"6.838\",\"maxa\":838},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Yên Mạc (xã)",
- "truocsn": "Xã Yên Mỹ (huyện Yên Mô), Xã Yên Lâm, Xã Yên Mạc",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.831\",\"properties\":{\"matinhxa\":\"6.842\",\"maxa\":842},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Yên Mô (xã)",
- "truocsn": "Thị trấn Yên Thịnh, Xã Khánh Dương, Xã Yên Hòa",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.871\",\"properties\":{\"matinhxa\":\"6.882\",\"maxa\":882},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Yên Sơn (phường)",
- "truocsn": "Phường Tân Bình, Xã Quảng Lạc, Xã Yên Sơn",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.851\",\"properties\":{\"matinhxa\":\"6.862\",\"maxa\":862},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Yên Thắng (phường)",
- "truocsn": "Xã Yên Thắng (huyện Yên Mô), Xã Khánh Thượng, Phường Yên Bình",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.855\",\"properties\":{\"matinhxa\":\"6.866\",\"maxa\":866},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Yên Từ (xã)",
- "truocsn": "Xã Yên Phong, Xã Yên Nhân (huyện Yên Mô), Xã Yên Từ",
- "provinceName": "tỉnh Ninh Bình",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.758\",\"properties\":{\"matinhxa\":\"6.769\",\"maxa\":769},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Nông (xã)",
- "truocsn": "Xã Tiến Nông, Xã Khuyến Nông, Xã Nông Trường, Xã An Nông",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2675\",\"properties\":{\"matinhxa\":\"16.2689\",\"maxa\":2689},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Đình (xã)",
- "truocsn": "Xã Nga Vịnh, Xã Nga Trường, Xã Nga Thiện, Xã Ba Đình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2646\",\"properties\":{\"matinhxa\":\"16.2660\",\"maxa\":2660},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bá Thước (xã)",
- "truocsn": "Thị trấn Cành Nàng, Xã Ban Công, Xã Hạ Trung",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2651\",\"properties\":{\"matinhxa\":\"16.2665\",\"maxa\":2665},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bát Mọt (xã)",
- "truocsn": "xã Bát Mọt (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2593\",\"properties\":{\"matinhxa\":\"16.2607\",\"maxa\":2607},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Biện Thượng (xã)",
- "truocsn": "Xã Vĩnh Hùng, Xã Minh Tân, Xã Vĩnh Thịnh, Xã Vĩnh An",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2618\",\"properties\":{\"matinhxa\":\"16.2632\",\"maxa\":2632},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bỉm Sơn (phường)",
- "truocsn": "Phường Đông Sơn, Phường Lam Sơn, Phường Ba Đình (thị xã Bỉm Sơn), Xã Hà Vinh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2642\",\"properties\":{\"matinhxa\":\"16.2656\",\"maxa\":2656},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Các Sơn (xã)",
- "truocsn": "Xã Anh Sơn, Xã Các Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2559\",\"properties\":{\"matinhxa\":\"16.2573\",\"maxa\":2573},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cẩm Tân (xã)",
- "truocsn": "Xã Cẩm Long, Xã Cẩm Phú, Xã Cẩm Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2650\",\"properties\":{\"matinhxa\":\"16.2664\",\"maxa\":2664},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cẩm Thạch (xã)",
- "truocsn": "Xã Cẩm Thành, Xã Cẩm Liên, Xã Cẩm Bình, Xã Cẩm Thạch",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2659\",\"properties\":{\"matinhxa\":\"16.2673\",\"maxa\":2673},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cẩm Thủy (xã)",
- "truocsn": "Thị trấn Phong Sơn, Xã Cẩm Ngọc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2647\",\"properties\":{\"matinhxa\":\"16.2661\",\"maxa\":2661},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cẩm Tú (xã)",
- "truocsn": "Xã Cẩm Quý, Xã Cẩm Giang, Xã Cẩm Lương, Xã Cẩm Tú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2648\",\"properties\":{\"matinhxa\":\"16.2662\",\"maxa\":2662},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cẩm Vân (xã)",
- "truocsn": "Xã Cẩm Tâm, Xã Cẩm Châu, Xã Cẩm Yên, Xã Cẩm Vân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2649\",\"properties\":{\"matinhxa\":\"16.2663\",\"maxa\":2663},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cổ Lũng (xã)",
- "truocsn": "Xã Lũng Cao, Xã Cổ Lũng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2657\",\"properties\":{\"matinhxa\":\"16.2671\",\"maxa\":2671},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Công Chính (xã)",
- "truocsn": "Xã Công Liêm, Xã Yên Mỹ, Xã Công Chính, Xã Thanh Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2560\",\"properties\":{\"matinhxa\":\"16.2574\",\"maxa\":2574},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đào Duy Từ (phường)",
- "truocsn": "Phường Nguyên Bình, Phường Xuân Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2556\",\"properties\":{\"matinhxa\":\"16.2570\",\"maxa\":2570},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Điền Lư (xã)",
- "truocsn": "Xã Ái Thượng, Xã Điền Trung, Xã Điền Lư",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2654\",\"properties\":{\"matinhxa\":\"16.2668\",\"maxa\":2668},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Điền Quang (xã)",
- "truocsn": "Xã Điền Thượng, Xã Điền Hạ, Xã Điền Quang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2652\",\"properties\":{\"matinhxa\":\"16.2666\",\"maxa\":2666},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Định Hòa (xã)",
- "truocsn": "Xã Định Bình, Xã Định Công, Xã Định Thành, Xã Định Hòa, Xã Thiệu Long",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2620\",\"properties\":{\"matinhxa\":\"16.2634\",\"maxa\":2634},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Định Tân (xã)",
- "truocsn": "Xã Định Hải (huyện Yên Định), Xã Định Hưng, Xã Định Tiến, Xã Định Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2621\",\"properties\":{\"matinhxa\":\"16.2635\",\"maxa\":2635},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đồng Lương (xã)",
- "truocsn": "Xã Tân Phúc (huyện Lang Chánh), Xã Đồng Lương",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2725\",\"properties\":{\"matinhxa\":\"16.2740\",\"maxa\":2740},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đông Quang (phường)",
- "truocsn": "Phường Quảng Thắng, Xã Đông Vinh, Xã Đông Quang, Xã Đông Yên, Xã Đông Văn, Xã Đông Phú, Xã Đông Nam, Phường An Hưng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2572\",\"properties\":{\"matinhxa\":\"16.2586\",\"maxa\":2586},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đông Sơn (phường)",
- "truocsn": "Phường Rừng Thông, Phường Đông Thịnh, Phường Đông Tân, Xã Đông Hòa, Xã Đông Minh, Xã Đông Hoàng, Xã Đông Khê, Xã Đông Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2577\",\"properties\":{\"matinhxa\":\"16.2591\",\"maxa\":2591},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đông Thành (xã)",
- "truocsn": "Xã Đồng Lộc, Xã Thành Lộc, Xã Cầu Lộc, Xã Tuy Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2625\",\"properties\":{\"matinhxa\":\"16.2639\",\"maxa\":2639},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đông Tiến (phường)",
- "truocsn": "Phường Đông Lĩnh, Phường Thiệu Khánh, Xã Đông Thanh, Xã Thiệu Vân, Xã Tân Châu, Xã Thiệu Giao, Xã Đông Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2576\",\"properties\":{\"matinhxa\":\"16.2590\",\"maxa\":2590},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đồng Tiến (xã)",
- "truocsn": "Xã Đồng Lợi, Xã Đồng Thắng, Xã Đồng Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2663\",\"properties\":{\"matinhxa\":\"16.2677\",\"maxa\":2677},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Giao An (xã)",
- "truocsn": "Xã Giao Thiện, Xã Giao An",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2724\",\"properties\":{\"matinhxa\":\"16.2739\",\"maxa\":2739},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hà Long (xã)",
- "truocsn": "Thị trấn Hà Long, Xã Hà Bắc, Xã Hà Giang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2644\",\"properties\":{\"matinhxa\":\"16.2658\",\"maxa\":2658},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hà Trung (xã)",
- "truocsn": "Xã Hà Đông, Xã Hà Ngọc, Xã Yến Sơn, Thị trấn Hà Trung, Xã Hà Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2623\",\"properties\":{\"matinhxa\":\"16.2637\",\"maxa\":2637},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hạc Thành (phường)",
- "truocsn": "Phường Phú Sơn, Phường Lam Sơn, Phường Ba Đình, Phường Ngọc Trạo, Phường Đông Sơn (thành phố Thanh Hóa), Phường Trường Thi, Phường Điện Biên, Phường Đông Hương, Phường Đông Hải, Phường Đông Vệ, Phường Đông Thọ, Phường An Hưng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2578\",\"properties\":{\"matinhxa\":\"16.2592\",\"maxa\":2592},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hải Bình (phường)",
- "truocsn": "Phường Mai Lâm, Phường Tĩnh Hải, Phường Hải Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2558\",\"properties\":{\"matinhxa\":\"16.2572\",\"maxa\":2572},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hải Lĩnh (phường)",
- "truocsn": "Xã Định Hải (thị xã Nghi Sơn), Phường Ninh Hải, Phường Hải Lĩnh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2555\",\"properties\":{\"matinhxa\":\"16.2569\",\"maxa\":2569},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hàm Rồng (phường)",
- "truocsn": "Phường Thiệu Dương, Phường Đông Cương, Phường Nam Ngạn, Phường Hàm Rồng, Phường Đông Thọ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2579\",\"properties\":{\"matinhxa\":\"16.2593\",\"maxa\":2593},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hậu Lộc (xã)",
- "truocsn": "Thị trấn Hậu Lộc, Xã Thuần Lộc, Xã Mỹ Lộc, Xã Lộc Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2622\",\"properties\":{\"matinhxa\":\"16.2636\",\"maxa\":2636},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hiền Kiệt (xã)",
- "truocsn": "Xã Hiền Chung, Xã Hiền Kiệt",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2693\",\"properties\":{\"matinhxa\":\"16.2707\",\"maxa\":2707},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hồ Vương (xã)",
- "truocsn": "Xã Nga Hải, Xã Nga Thành, Xã Nga Giáp, Xã Nga Liên",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2632\",\"properties\":{\"matinhxa\":\"16.2646\",\"maxa\":2646},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hoa Lộc (xã)",
- "truocsn": "Xã Xuân Lộc (huyện Hậu Lộc), Xã Liên Lộc, Xã Quang Lộc, Xã Phú Lộc, Xã Hòa Lộc, Xã Hoa Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2627\",\"properties\":{\"matinhxa\":\"16.2641\",\"maxa\":2641},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hóa Quỳ (xã)",
- "truocsn": "Xã Bình Lương, Xã Hóa Quỳ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2689\",\"properties\":{\"matinhxa\":\"16.2703\",\"maxa\":2703},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hoằng Châu (xã)",
- "truocsn": "Xã Hoằng Thắng, Xã Hoằng Phong, Xã Hoằng Lưu, Xã Hoằng Châu",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2604\",\"properties\":{\"matinhxa\":\"16.2618\",\"maxa\":2618},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hoằng Giang (xã)",
- "truocsn": "Xã Hoằng Xuân, Xã Hoằng Quỳ, Xã Hoằng Hợp, Xã Hoằng Giang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2591\",\"properties\":{\"matinhxa\":\"16.2605\",\"maxa\":2605},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hoằng Hóa (xã)",
- "truocsn": "Thị trấn Bút Sơn, Xã Hoằng Đức, Xã Hoằng Đồng, Xã Hoằng Đạo, Xã Hoằng Hà, Xã Hoằng Đạt",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2580\",\"properties\":{\"matinhxa\":\"16.2594\",\"maxa\":2594},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hoằng Lộc (xã)",
- "truocsn": "Xã Hoằng Thịnh, Xã Hoằng Thái, Xã Hoằng Thành, Xã Hoằng Trạch, Xã Hoằng Tân, Xã Hoằng Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2606\",\"properties\":{\"matinhxa\":\"16.2620\",\"maxa\":2620},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hoằng Phú (xã)",
- "truocsn": "Xã Hoằng Quý, Xã Hoằng Kim, Xã Hoằng Trung, Xã Hoằng Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2613\",\"properties\":{\"matinhxa\":\"16.2627\",\"maxa\":2627},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hoằng Sơn (xã)",
- "truocsn": "Xã Hoằng Trinh, Xã Hoằng Xuyên, Xã Hoằng Cát, Xã Hoằng Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2603\",\"properties\":{\"matinhxa\":\"16.2617\",\"maxa\":2617},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hoằng Thanh (xã)",
- "truocsn": "Xã Hoằng Đông, Xã Hoằng Ngọc, Xã Hoằng Phụ, Xã Hoằng Thanh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2608\",\"properties\":{\"matinhxa\":\"16.2622\",\"maxa\":2622},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hoằng Tiến (xã)",
- "truocsn": "Xã Hoằng Yến, Xã Hoằng Hải, Xã Hoằng Trường, Xã Hoằng Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2607\",\"properties\":{\"matinhxa\":\"16.2621\",\"maxa\":2621},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Hoạt Giang (xã)",
- "truocsn": "Xã Yên Dương, Xã Hoạt Giang, Thị trấn Hà Trung, Xã Hà Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2645\",\"properties\":{\"matinhxa\":\"16.2659\",\"maxa\":2659},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Hồi Xuân (xã)",
- "truocsn": "Thị trấn Hồi Xuân, Xã Phú Nghiêm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2705\",\"properties\":{\"matinhxa\":\"16.2719\",\"maxa\":2719},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Hợp Tiến (xã)",
- "truocsn": "Xã Hợp Lý, Xã Hợp Thắng, Xã Hợp Thành, Xã Triệu Thành, Xã Hợp Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2674\",\"properties\":{\"matinhxa\":\"16.2688\",\"maxa\":2688},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Kiên Thọ (xã)",
- "truocsn": "Xã Phúc Thịnh, Xã Phùng Minh, Xã Kiên Thọ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2699\",\"properties\":{\"matinhxa\":\"16.2713\",\"maxa\":2713},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Kim Tân (xã)",
- "truocsn": "Thị trấn Kim Tân, Xã Thành Hưng, Xã Thành Thọ, Xã Thạch Định, Xã Thành Trực, Xã Thành Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2633\",\"properties\":{\"matinhxa\":\"16.2647\",\"maxa\":2647},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Lam Sơn (xã)",
- "truocsn": "Thị trấn Lam Sơn, Xã Xuân Bái, Xã Thọ Xương",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2697\",\"properties\":{\"matinhxa\":\"16.2711\",\"maxa\":2711},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Linh Sơn (xã)",
- "truocsn": "Thị trấn Lang Chánh, Xã Trí Nang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2722\",\"properties\":{\"matinhxa\":\"16.2737\",\"maxa\":2737},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Lĩnh Toại (xã)",
- "truocsn": "Xã Hà Hải, Xã Hà Châu, Xã Thái Lai, Xã Lĩnh Toại",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2624\",\"properties\":{\"matinhxa\":\"16.2638\",\"maxa\":2638},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Luận Thành (xã)",
- "truocsn": "Xã Xuân Cao, Xã Luận Thành, Xã Luận Khê",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2597\",\"properties\":{\"matinhxa\":\"16.2611\",\"maxa\":2611},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Lương Sơn (xã)",
- "truocsn": "xã Lương Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2601\",\"properties\":{\"matinhxa\":\"16.2615\",\"maxa\":2615},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Lưu Vệ (xã)",
- "truocsn": "Thị trấn Tân Phong, Xã Quảng Đức, Xã Quảng Định",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2565\",\"properties\":{\"matinhxa\":\"16.2579\",\"maxa\":2579},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Mậu Lâm (xã)",
- "truocsn": "Xã Phú Nhuận, Xã Mậu Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2664\",\"properties\":{\"matinhxa\":\"16.2678\",\"maxa\":2678},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Minh Sơn (xã)",
- "truocsn": "Xã Minh Sơn (huyện Ngọc Lặc), Xã Lam Sơn, Xã Cao Ngọc, Xã Minh Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2700\",\"properties\":{\"matinhxa\":\"16.2714\",\"maxa\":2714},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Mường Chanh (xã)",
- "truocsn": "xã Mường Chanh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2713\",\"properties\":{\"matinhxa\":\"16.2728\",\"maxa\":2728},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Mường Lát (xã)",
- "truocsn": "Thị trấn Mường Lát",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2711\",\"properties\":{\"matinhxa\":\"16.2726\",\"maxa\":2726},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Mường Lý (xã)",
- "truocsn": "xã Mường Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2709\",\"properties\":{\"matinhxa\":\"16.2724\",\"maxa\":2724},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Mường Mìn (xã)",
- "truocsn": "xã Mường Mìn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2720\",\"properties\":{\"matinhxa\":\"16.2735\",\"maxa\":2735},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Na Mèo (xã)",
- "truocsn": "xã Na Mèo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2727\",\"properties\":{\"matinhxa\":\"16.2742\",\"maxa\":2742},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Nam Sầm Sơn (phường)",
- "truocsn": "Phường Quảng Vinh, Xã Quảng Minh, Xã Đại Hùng, Xã Quảng Giao",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2728\",\"properties\":{\"matinhxa\":\"16.2743\",\"maxa\":2743},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Nam Xuân (xã)",
- "truocsn": "Xã Nam Tiến, Xã Nam Xuân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2694\",\"properties\":{\"matinhxa\":\"16.2708\",\"maxa\":2708},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Nga An (xã)",
- "truocsn": "Xã Nga Điền, Xã Nga Phú, Xã Nga An",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2641\",\"properties\":{\"matinhxa\":\"16.2655\",\"maxa\":2655},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nga Sơn (xã)",
- "truocsn": "Thị trấn Nga Sơn, Xã Nga Yên, Xã Nga Thanh, Xã Nga Hiệp, Xã Nga Thủy",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2630\",\"properties\":{\"matinhxa\":\"16.2644\",\"maxa\":2644},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nga Thắng (xã)",
- "truocsn": "Xã Nga Văn, Xã Nga Phượng, Xã Nga Thạch, Xã Nga Thắng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2629\",\"properties\":{\"matinhxa\":\"16.2643\",\"maxa\":2643},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nghi Sơn (phường)",
- "truocsn": "Phường Hải Thượng, Xã Hải Hà, Xã Nghi Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2575\",\"properties\":{\"matinhxa\":\"16.2589\",\"maxa\":2589},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Ngọc Lặc (xã)",
- "truocsn": "Thị trấn Ngọc Lặc, Xã Mỹ Tân, Xã Thúy Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2682\",\"properties\":{\"matinhxa\":\"16.2696\",\"maxa\":2696},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Ngọc Liên (xã)",
- "truocsn": "Xã Lộc Thịnh, Xã Cao Thịnh, Xã Ngọc Sơn, Xã Ngọc Trung, Xã Ngọc Liên",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2681\",\"properties\":{\"matinhxa\":\"16.2695\",\"maxa\":2695},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Ngọc Sơn (phường)",
- "truocsn": "Xã Thanh Sơn (thị xã Nghi Sơn), Xã Thanh Thủy, Phường Hải Châu, Phường Hải Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2610\",\"properties\":{\"matinhxa\":\"16.2624\",\"maxa\":2624},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Ngọc Trạo (xã)",
- "truocsn": "Xã Thành An, Xã Thành Long, Xã Thành Tâm, Xã Ngọc Trạo",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2637\",\"properties\":{\"matinhxa\":\"16.2651\",\"maxa\":2651},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nguyệt Ấn (xã)",
- "truocsn": "Xã Phùng Giáo, Xã Vân Am, Xã Nguyệt Ấn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2703\",\"properties\":{\"matinhxa\":\"16.2717\",\"maxa\":2717},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nguyệt Viên (phường)",
- "truocsn": "Phường Tào Xuyên, Phường Long Anh, Phường Hoằng Quang, Phường Hoằng Đại",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2605\",\"properties\":{\"matinhxa\":\"16.2619\",\"maxa\":2619},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nhi Sơn (xã)",
- "truocsn": "xã Nhi Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2708\",\"properties\":{\"matinhxa\":\"16.2723\",\"maxa\":2723},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Như Thanh (xã)",
- "truocsn": "Thị trấn Bến Sung, Xã Xuân Khang, Xã Hải Long, Xã Yên Thọ (huyện Như Thanh)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2665\",\"properties\":{\"matinhxa\":\"16.2679\",\"maxa\":2679},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Như Xuân (xã)",
- "truocsn": "Thị trấn Yên Cát, Xã Tân Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2688\",\"properties\":{\"matinhxa\":\"16.2702\",\"maxa\":2702},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Nông Cống (xã)",
- "truocsn": "Thị trấn Nông Cống, Xã Vạn Thắng, Xã Vạn Hòa, Xã Vạn Thiện, Xã Minh Nghĩa, Xã Minh Khôi",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2571\",\"properties\":{\"matinhxa\":\"16.2585\",\"maxa\":2585},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Phú Lệ (xã)",
- "truocsn": "Xã Phú Sơn (huyện Quan Hóa), Xã Phú Thanh, Xã Phú Lệ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2691\",\"properties\":{\"matinhxa\":\"16.2705\",\"maxa\":2705},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Phú Xuân (xã)",
- "truocsn": "xã Phú Xuân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2692\",\"properties\":{\"matinhxa\":\"16.2706\",\"maxa\":2706},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Pù Luông (xã)",
- "truocsn": "Xã Thành Sơn (huyện Bá Thước), Xã Lũng Niêm, Xã Thành Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2655\",\"properties\":{\"matinhxa\":\"16.2669\",\"maxa\":2669},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Pù Nhi (xã)",
- "truocsn": "xã Pù Nhi (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3363\",\"properties\":{\"matinhxa\":\"16.2722\",\"maxa\":2722},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Quan Sơn (xã)",
- "truocsn": "Xã Trung Thượng, Thị trấn Sơn Lư",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2714\",\"properties\":{\"matinhxa\":\"16.2729\",\"maxa\":2729},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Quảng Bình (xã)",
- "truocsn": "Xã Quảng Lưu, Xã Quảng Lộc, Xã Quảng Thái, Xã Quảng Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2569\",\"properties\":{\"matinhxa\":\"16.2583\",\"maxa\":2583},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Quang Chiểu (xã)",
- "truocsn": "xã Quang Chiểu (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2712\",\"properties\":{\"matinhxa\":\"16.2727\",\"maxa\":2727},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Quảng Chính (xã)",
- "truocsn": "Xã Quảng Trường, Xã Quảng Khê, Xã Quảng Trung, Xã Quảng Chính",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2563\",\"properties\":{\"matinhxa\":\"16.2577\",\"maxa\":2577},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Quảng Ngọc (xã)",
- "truocsn": "Xã Quảng Hợp, Xã Quảng Văn, Xã Quảng Phúc, Xã Quảng Ngọc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2568\",\"properties\":{\"matinhxa\":\"16.2582\",\"maxa\":2582},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Quảng Ninh (xã)",
- "truocsn": "Xã Quảng Nhân, Xã Quảng Hải, Xã Quảng Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2570\",\"properties\":{\"matinhxa\":\"16.2584\",\"maxa\":2584},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Quảng Phú (phường)",
- "truocsn": "Phường Quảng Hưng, Phường Quảng Tâm, Phường Quảng Thành, Phường Quảng Đông, Phường Quảng Thịnh, Phường Quảng Cát, Phường Quảng Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2566\",\"properties\":{\"matinhxa\":\"16.2580\",\"maxa\":2580},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Quang Trung (phường)",
- "truocsn": "Phường Bắc Sơn, Phường Ngọc Trạo, Phường Phú Sơn, Xã Quang Trung (thị xã Bỉm Sơn)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2729\",\"properties\":{\"matinhxa\":\"16.2744\",\"maxa\":2744},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Quảng Yên (xã)",
- "truocsn": "Xã Quảng Trạch, Xã Quảng Hòa, Xã Quảng Long, Xã Quảng Yên",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2567\",\"properties\":{\"matinhxa\":\"16.2581\",\"maxa\":2581},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Quý Lộc (xã)",
- "truocsn": "Xã Yên Thọ (huyện Yên Định), Thị trấn Yên Lâm, Thị trấn Quý Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2640\",\"properties\":{\"matinhxa\":\"16.2654\",\"maxa\":2654},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Quý Lương (xã)",
- "truocsn": "Xã Lương Nội, Xã Lương Trung, Xã Lương Ngoại",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2656\",\"properties\":{\"matinhxa\":\"16.2670\",\"maxa\":2670},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Sầm Sơn (phường)",
- "truocsn": "Phường Bắc Sơn (thành phố Sầm Sơn), Phường Quảng Tiến, Phường Quảng Cư, Phường Trung Sơn, Phường Trường Sơn, Phường Quảng Châu, Phường Quảng Thọ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2561\",\"properties\":{\"matinhxa\":\"16.2575\",\"maxa\":2575},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Sao Vàng (xã)",
- "truocsn": "Thị trấn Sao Vàng, Xã Thọ Lâm, Xã Xuân Phú, Xã Xuân Sinh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2668\",\"properties\":{\"matinhxa\":\"16.2682\",\"maxa\":2682},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Sơn Điện (xã)",
- "truocsn": "xã Sơn Điện (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2719\",\"properties\":{\"matinhxa\":\"16.2734\",\"maxa\":2734},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Sơn Thủy (xã)",
- "truocsn": "xã Sơn Thủy (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2718\",\"properties\":{\"matinhxa\":\"16.2733\",\"maxa\":2733},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tam Chung (xã)",
- "truocsn": "xã Tam Chung (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2707\",\"properties\":{\"matinhxa\":\"16.2721\",\"maxa\":2721},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Tam Lư (xã)",
- "truocsn": "Xã Sơn Hà, Xã Tam Lư, Thị trấn Sơn Lư",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2716\",\"properties\":{\"matinhxa\":\"16.2731\",\"maxa\":2731},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Tam Thanh (xã)",
- "truocsn": "xã Tam Thanh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2717\",\"properties\":{\"matinhxa\":\"16.2732\",\"maxa\":2732},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tân Dân (phường)",
- "truocsn": "Phường Hải An, Phường Tân Dân, Xã Ngọc Lĩnh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2609\",\"properties\":{\"matinhxa\":\"16.2623\",\"maxa\":2623},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tân Ninh (xã)",
- "truocsn": "Thị trấn Nưa, Xã Thái Hòa, Xã Vân Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2662\",\"properties\":{\"matinhxa\":\"16.2676\",\"maxa\":2676},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Thành, Xã Luận Khê",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2600\",\"properties\":{\"matinhxa\":\"16.2614\",\"maxa\":2614},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Nga Tiến, Xã Nga Tân, Xã Nga Thái",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2631\",\"properties\":{\"matinhxa\":\"16.2645\",\"maxa\":2645},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Tây Đô (xã)",
- "truocsn": "Xã Vĩnh Quang, Xã Vĩnh Yên, Xã Vĩnh Tiến, Xã Vĩnh Long",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2639\",\"properties\":{\"matinhxa\":\"16.2653\",\"maxa\":2653},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Thạch Bình (xã)",
- "truocsn": "Xã Thạch Sơn, Xã Thạch Long, Xã Thạch Cẩm, Xã Thạch Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2635\",\"properties\":{\"matinhxa\":\"16.2649\",\"maxa\":2649},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Thạch Lập (xã)",
- "truocsn": "Xã Quang Trung (huyện Ngọc Lặc), Xã Đồng Thịnh, Xã Thạch Lập",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2683\",\"properties\":{\"matinhxa\":\"16.2697\",\"maxa\":2697},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Thạch Quảng (xã)",
- "truocsn": "Xã Thạch Lâm, Xã Thạch Tượng, Xã Thạch Quảng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2643\",\"properties\":{\"matinhxa\":\"16.2657\",\"maxa\":2657},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Thăng Bình (xã)",
- "truocsn": "Xã Thăng Long, Xã Thăng Thọ, Xã Thăng Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2612\",\"properties\":{\"matinhxa\":\"16.2626\",\"maxa\":2626},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Thắng Lộc (xã)",
- "truocsn": "Xã Xuân Lộc (huyện Thường Xuân), Xã Xuân Thắng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2599\",\"properties\":{\"matinhxa\":\"16.2613\",\"maxa\":2613},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Thắng Lợi (xã)",
- "truocsn": "Xã Trung Thành (huyện Nông Cống), Xã Tế Nông, Xã Tế Thắng, Xã Tế Lợi",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2574\",\"properties\":{\"matinhxa\":\"16.2588\",\"maxa\":2588},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Thanh Kỳ (xã)",
- "truocsn": "Xã Thanh Kỳ, Xã Thanh Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2661\",\"properties\":{\"matinhxa\":\"16.2675\",\"maxa\":2675},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Thanh Phong (xã)",
- "truocsn": "Xã Thanh Hòa, Xã Thanh Lâm, Xã Thanh Phong",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2685\",\"properties\":{\"matinhxa\":\"16.2699\",\"maxa\":2699},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Thanh Quân (xã)",
- "truocsn": "Xã Thanh Sơn (huyện Như Xuân), Xã Thanh Xuân, Xã Thanh Quân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2686\",\"properties\":{\"matinhxa\":\"16.2700\",\"maxa\":2700},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Thành Vinh (xã)",
- "truocsn": "Xã Thành Minh, Xã Thành Mỹ, Xã Thành Yên, Xã Thành Vinh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2636\",\"properties\":{\"matinhxa\":\"16.2650\",\"maxa\":2650},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Thiên Phủ (xã)",
- "truocsn": "Xã Nam Động, Xã Thiên Phủ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2695\",\"properties\":{\"matinhxa\":\"16.2709\",\"maxa\":2709},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Thiết Ống (xã)",
- "truocsn": "Xã Thiết Kế, Xã Thiết Ống",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2653\",\"properties\":{\"matinhxa\":\"16.2667\",\"maxa\":2667},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Thiệu Hóa (xã)",
- "truocsn": "Xã Thiệu Phúc, Xã Thiệu Công, Xã Thiệu Nguyên, Thị trấn Thiệu Hóa, Xã Thiệu Long",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2678\",\"properties\":{\"matinhxa\":\"16.2692\",\"maxa\":2692},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Thiệu Quang (xã)",
- "truocsn": "Xã Thiệu Duy, Xã Thiệu Hợp, Xã Thiệu Thịnh, Xã Thiệu Giang, Xã Thiệu Quang, Thị trấn Thiệu Hóa",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2680\",\"properties\":{\"matinhxa\":\"16.2694\",\"maxa\":2694},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Thiệu Tiến (xã)",
- "truocsn": "Xã Thiệu Ngọc, Xã Thiệu Vũ, Xã Thiệu Thành, Xã Thiệu Tiến",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2667\",\"properties\":{\"matinhxa\":\"16.2681\",\"maxa\":2681},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Thiệu Toán (xã)",
- "truocsn": "Thị trấn Hậu Hiền, Xã Thiệu Chính, Xã Thiệu Hòa, Xã Thiệu Toán",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2696\",\"properties\":{\"matinhxa\":\"16.2710\",\"maxa\":2710},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Thiệu Trung (xã)",
- "truocsn": "Xã Thiệu Vận, Xã Thiệu Lý, Xã Thiệu Viên, Xã Thiệu Trung, Thị trấn Thiệu Hóa",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2677\",\"properties\":{\"matinhxa\":\"16.2691\",\"maxa\":2691},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Thọ Bình (xã)",
- "truocsn": "Xã Thọ Sơn, Xã Bình Sơn, Xã Thọ Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2704\",\"properties\":{\"matinhxa\":\"16.2718\",\"maxa\":2718},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Thọ Lập (xã)",
- "truocsn": "Xã Xuân Thiên, Xã Thuận Minh, Xã Thọ Lập",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2698\",\"properties\":{\"matinhxa\":\"16.2712\",\"maxa\":2712},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Thọ Long (xã)",
- "truocsn": "Xã Thọ Lộc, Xã Xuân Phong, Xã Nam Giang, Xã Bắc Lương, Xã Tây Hồ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2701\",\"properties\":{\"matinhxa\":\"16.2715\",\"maxa\":2715},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Thọ Ngọc (xã)",
- "truocsn": "Xã Thọ Tiến, Xã Xuân Thọ, Xã Thọ Cường, Xã Thọ Ngọc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2669\",\"properties\":{\"matinhxa\":\"16.2683\",\"maxa\":2683},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Thọ Phú (xã)",
- "truocsn": "Xã Xuân Lộc (huyện Triệu Sơn), Xã Thọ Dân, Xã Thọ Thế, Xã Thọ Tân, Xã Thọ Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2670\",\"properties\":{\"matinhxa\":\"16.2684\",\"maxa\":2684},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Thọ Xuân (xã)",
- "truocsn": "Thị trấn Thọ Xuân, Xã Xuân Hồng, Xã Xuân Trường, Xã Xuân Giang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2671\",\"properties\":{\"matinhxa\":\"16.2685\",\"maxa\":2685},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Thượng Ninh (xã)",
- "truocsn": "Xã Cát Tân, Xã Cát Vân, Xã Thượng Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2687\",\"properties\":{\"matinhxa\":\"16.2701\",\"maxa\":2701},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "131",
- "ten": "Thường Xuân (xã)",
- "truocsn": "Thị trấn Thường Xuân, Xã Thọ Thanh, Xã Ngọc Phụng, Xã Xuân Dương",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2598\",\"properties\":{\"matinhxa\":\"16.2612\",\"maxa\":2612},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "132",
- "ten": "Tiên Trang (xã)",
- "truocsn": "Xã Quảng Thạch, Xã Quảng Nham, Xã Tiên Trang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2564\",\"properties\":{\"matinhxa\":\"16.2578\",\"maxa\":2578},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "133",
- "ten": "Tĩnh Gia (phường)",
- "truocsn": "Phường Hải Hòa, Phường Bình Minh, Phường Hải Thanh, Xã Hải Nhân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2557\",\"properties\":{\"matinhxa\":\"16.2571\",\"maxa\":2571},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "134",
- "ten": "Tống Sơn (xã)",
- "truocsn": "Thị trấn Hà Lĩnh, Xã Hà Tiến, Xã Hà Tân, Xã Hà Sơn",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2619\",\"properties\":{\"matinhxa\":\"16.2633\",\"maxa\":2633},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "135",
- "ten": "Triệu Lộc (xã)",
- "truocsn": "Xã Đại Lộc, Xã Tiến Lộc, Xã Triệu Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2626\",\"properties\":{\"matinhxa\":\"16.2640\",\"maxa\":2640},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "136",
- "ten": "Triệu Sơn (xã)",
- "truocsn": "Thị trấn Triệu Sơn, Xã Minh Sơn (huyện Triệu Sơn), Xã Dân Lực, Xã Dân Lý, Xã Dân Quyền",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2676\",\"properties\":{\"matinhxa\":\"16.2690\",\"maxa\":2690},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "137",
- "ten": "Trúc Lâm (phường)",
- "truocsn": "Phường Trúc Lâm, Xã Phú Sơn (thị xã Nghi Sơn), Xã Phú Lâm, Xã Tùng Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2554\",\"properties\":{\"matinhxa\":\"16.2568\",\"maxa\":2568},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "138",
- "ten": "Trung Chính (xã)",
- "truocsn": "Xã Tân Phúc (huyện Nông Cống), Xã Tân Thọ, Xã Tân Khang, Xã Hoàng Sơn, Xã Hoàng Giang, Xã Trung Chính",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2573\",\"properties\":{\"matinhxa\":\"16.2587\",\"maxa\":2587},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "139",
- "ten": "Trung Hạ (xã)",
- "truocsn": "Xã Trung Tiến, Xã Trung Xuân, Xã Trung Hạ",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2715\",\"properties\":{\"matinhxa\":\"16.2730\",\"maxa\":2730},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "140",
- "ten": "Trung Lý (xã)",
- "truocsn": "xã Trung Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2710\",\"properties\":{\"matinhxa\":\"16.2725\",\"maxa\":2725},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "141",
- "ten": "Trung Sơn (xã)",
- "truocsn": "xã Trung Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2706\",\"properties\":{\"matinhxa\":\"16.2720\",\"maxa\":2720},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "142",
- "ten": "Trung Thành (xã)",
- "truocsn": "Xã Thành Sơn, Xã Trung Thành (huyện Quan Hóa)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2690\",\"properties\":{\"matinhxa\":\"16.2704\",\"maxa\":2704},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "143",
- "ten": "Trường Lâm (xã)",
- "truocsn": "Xã Tân Trường, Xã Trường Lâm",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2602\",\"properties\":{\"matinhxa\":\"16.2616\",\"maxa\":2616},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "144",
- "ten": "Trường Văn (xã)",
- "truocsn": "Xã Trường Minh, Xã Trường Trung, Xã Trường Sơn, Xã Trường Giang",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2562\",\"properties\":{\"matinhxa\":\"16.2576\",\"maxa\":2576},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "145",
- "ten": "Tượng Lĩnh (xã)",
- "truocsn": "Xã Tượng Sơn, Xã Tượng Văn, Xã Tượng Lĩnh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2611\",\"properties\":{\"matinhxa\":\"16.2625\",\"maxa\":2625},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "146",
- "ten": "Vân Du (xã)",
- "truocsn": "Thị trấn Vân Du, Xã Thành Công, Xã Thành Tân",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2634\",\"properties\":{\"matinhxa\":\"16.2648\",\"maxa\":2648},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "147",
- "ten": "Vạn Lộc (xã)",
- "truocsn": "Xã Minh Lộc, Xã Hải Lộc, Xã Hưng Lộc, Xã Ngư Lộc, Xã Đa Lộc",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2628\",\"properties\":{\"matinhxa\":\"16.2642\",\"maxa\":2642},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "148",
- "ten": "Văn Nho (xã)",
- "truocsn": "Xã Kỳ Tân, Xã Văn Nho",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2658\",\"properties\":{\"matinhxa\":\"16.2672\",\"maxa\":2672},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "149",
- "ten": "Văn Phú (xã)",
- "truocsn": "Xã Tam Văn, Xã Lâm Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2726\",\"properties\":{\"matinhxa\":\"16.2741\",\"maxa\":2741},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "150",
- "ten": "Vạn Xuân (xã)",
- "truocsn": "xã Vạn Xuân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2596\",\"properties\":{\"matinhxa\":\"16.2610\",\"maxa\":2610},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "151",
- "ten": "Vĩnh Lộc (xã)",
- "truocsn": "Thị trấn Vĩnh Lộc, Xã Ninh Khang, Xã Vĩnh Phúc, Xã Vĩnh Hưng, Xã Vĩnh Hòa",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2638\",\"properties\":{\"matinhxa\":\"16.2652\",\"maxa\":2652},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "152",
- "ten": "Xuân Bình (xã)",
- "truocsn": "Xã Xuân Hòa (huyện Như Xuân), Xã Bãi Trành, Xã Xuân Bình",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2684\",\"properties\":{\"matinhxa\":\"16.2698\",\"maxa\":2698},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "153",
- "ten": "Xuân Chinh (xã)",
- "truocsn": "Xã Xuân Lẹ, Xã Xuân Chinh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2595\",\"properties\":{\"matinhxa\":\"16.2609\",\"maxa\":2609},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "154",
- "ten": "Xuân Du (xã)",
- "truocsn": "Xã Cán Khê, Xã Phượng Nghi, Xã Xuân Du",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2666\",\"properties\":{\"matinhxa\":\"16.2680\",\"maxa\":2680},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "155",
- "ten": "Xuân Hòa (xã)",
- "truocsn": "Xã Xuân Hòa (huyện Thọ Xuân), Xã Thọ Hải, Xã Thọ Diên, Xã Xuân Hưng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2672\",\"properties\":{\"matinhxa\":\"16.2686\",\"maxa\":2686},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "156",
- "ten": "Xuân Lập (xã)",
- "truocsn": "Xã Xuân Minh, Xã Xuân Lai, Xã Trường Xuân, Xã Xuân Lập",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2702\",\"properties\":{\"matinhxa\":\"16.2716\",\"maxa\":2716},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "157",
- "ten": "Xuân Thái (xã)",
- "truocsn": "xã Xuân Thái (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2660\",\"properties\":{\"matinhxa\":\"16.2674\",\"maxa\":2674},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "158",
- "ten": "Xuân Tín (xã)",
- "truocsn": "Xã Phú Xuân (huyện Thọ Xuân), Xã Quảng Phú, Xã Xuân Tín",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2673\",\"properties\":{\"matinhxa\":\"16.2687\",\"maxa\":2687},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "159",
- "ten": "Yên Định (xã)",
- "truocsn": "Thị trấn Quán Lào, Xã Định Liên, Xã Định Long, Xã Định Tăng",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2614\",\"properties\":{\"matinhxa\":\"16.2628\",\"maxa\":2628},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "160",
- "ten": "Yên Khương (xã)",
- "truocsn": "xã Yên Khương (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2721\",\"properties\":{\"matinhxa\":\"16.2736\",\"maxa\":2736},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "161",
- "ten": "Yên Nhân (xã)",
- "truocsn": "xã Yên Nhân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2594\",\"properties\":{\"matinhxa\":\"16.2608\",\"maxa\":2608},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "162",
- "ten": "Yên Ninh (xã)",
- "truocsn": "Xã Yên Hùng, Xã Yên Thịnh, Xã Yên Ninh",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2616\",\"properties\":{\"matinhxa\":\"16.2630\",\"maxa\":2630},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "163",
- "ten": "Yên Phú (xã)",
- "truocsn": "Thị trấn Thống Nhất, Xã Yên Tâm, Xã Yên Phú",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2617\",\"properties\":{\"matinhxa\":\"16.2631\",\"maxa\":2631},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "164",
- "ten": "Yên Thắng (xã)",
- "truocsn": "xã Yên Thắng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2723\",\"properties\":{\"matinhxa\":\"16.2738\",\"maxa\":2738},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "165",
- "ten": "Yên Thọ (xã)",
- "truocsn": "Xã Xuân Phúc, Xã Yên Lạc, Xã Yên Thọ (huyện Như Thanh)",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2679\",\"properties\":{\"matinhxa\":\"16.2693\",\"maxa\":2693},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "166",
- "ten": "Yên Trường (xã)",
- "truocsn": "Xã Yên Trung, Xã Yên Phong, Xã Yên Thái, Xã Yên Trường",
- "provinceName": "tỉnh Thanh Hóa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2615\",\"properties\":{\"matinhxa\":\"16.2629\",\"maxa\":2629},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Châu (xã)",
- "truocsn": "Xã Diễn An, Xã Diễn Tân, Xã Diễn Thịnh, Xã Diễn Trung",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1450\",\"properties\":{\"matinhxa\":\"17.1463\",\"maxa\":1463},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Anh Sơn (xã)",
- "truocsn": "Thị trấn Kim Nhan, Xã Đức Sơn, Xã Phúc Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1412\",\"properties\":{\"matinhxa\":\"17.1425\",\"maxa\":1425},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Anh Sơn Đông (xã)",
- "truocsn": "Xã Lạng Sơn, Xã Tào Sơn, Xã Vĩnh Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1416\",\"properties\":{\"matinhxa\":\"17.1429\",\"maxa\":1429},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bắc Lý (xã)",
- "truocsn": "xã Bắc Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1501\",\"properties\":{\"matinhxa\":\"17.1514\",\"maxa\":1514},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bạch Hà (xã)",
- "truocsn": "Xã Đại Sơn, Xã Hiến Sơn, Xã Mỹ Sơn, Xã Trù Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1466\",\"properties\":{\"matinhxa\":\"17.1479\",\"maxa\":1479},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bạch Ngọc (xã)",
- "truocsn": "Xã Bồi Sơn, Xã Giang Sơn Đông, Xã Giang Sơn Tây, Xã Bạch Ngọc",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1462\",\"properties\":{\"matinhxa\":\"17.1475\",\"maxa\":1475},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bích Hào (xã)",
- "truocsn": "Xã Mai Giang, Xã Thanh Lâm, Xã Thanh Tùng, Xã Thanh Xuân",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1426\",\"properties\":{\"matinhxa\":\"17.1439\",\"maxa\":1439},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Chuẩn (xã)",
- "truocsn": "xã Bình Chuẩn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1444\",\"properties\":{\"matinhxa\":\"17.1457\",\"maxa\":1457},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Minh (xã)",
- "truocsn": "Xã Đức Thành, Xã Mã Thành, Xã Tân Thành, Xã Tiến Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1453\",\"properties\":{\"matinhxa\":\"17.1466\",\"maxa\":1466},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cam Phục (xã)",
- "truocsn": "Xã Cam Lâm, Xã Đôn Phục",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1446\",\"properties\":{\"matinhxa\":\"17.1459\",\"maxa\":1459},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cát Ngạn (xã)",
- "truocsn": "Xã Minh Sơn (huyện Thanh Chương), Xã Cát Văn, Xã Phong Thịnh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1419\",\"properties\":{\"matinhxa\":\"17.1432\",\"maxa\":1432},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Châu Bình (xã)",
- "truocsn": "xã Châu Bình (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1442\",\"properties\":{\"matinhxa\":\"17.1455\",\"maxa\":1455},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Châu Hồng (xã)",
- "truocsn": "Xã Châu Tiến (huyện Quỳ Hợp), Xã Châu Thành, Xã Châu Hồng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1479\",\"properties\":{\"matinhxa\":\"17.1492\",\"maxa\":1492},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Châu Khê (xã)",
- "truocsn": "Xã Lạng Khê, Xã Châu Khê",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1445\",\"properties\":{\"matinhxa\":\"17.1458\",\"maxa\":1458},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Châu Lộc (xã)",
- "truocsn": "Xã Liên Hợp, Xã Châu Lộc",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1480\",\"properties\":{\"matinhxa\":\"17.1493\",\"maxa\":1493},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Châu Tiến (xã)",
- "truocsn": "Xã Châu Tiến (huyện Quỳ Châu), Xã Châu Bính, Xã Châu Thắng, Xã Châu Thuận",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1440\",\"properties\":{\"matinhxa\":\"17.1453\",\"maxa\":1453},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Chiêu Lưu (xã)",
- "truocsn": "Xã Bảo Thắng, Xã Chiêu Lưu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1509\",\"properties\":{\"matinhxa\":\"17.1522\",\"maxa\":1522},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Con Cuông (xã)",
- "truocsn": "Thị trấn Trà Lân, Xã Chi Khê, Xã Yên Khê",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1443\",\"properties\":{\"matinhxa\":\"17.1456\",\"maxa\":1456},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Cửa Lò (phường)",
- "truocsn": "Phường Nghi Hải, Phường Nghi Hòa, Phường Nghi Hương, Phường Nghi Tân, Phường Nghi Thu, Phường Nghi Thủy, Xã Thu Thủy",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1522\",\"properties\":{\"matinhxa\":\"17.1535\",\"maxa\":1535},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đại Đồng (xã)",
- "truocsn": "Thị trấn Dùng, Xã Đồng Văn (huyện Thanh Chương), Xã Thanh Ngọc, Xã Thanh Phong, Xã Đại Đồng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1418\",\"properties\":{\"matinhxa\":\"17.1431\",\"maxa\":1431},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đại Huệ (xã)",
- "truocsn": "Xã Nam Anh, Xã Nam Lĩnh, Xã Nam Xuân",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1533\",\"properties\":{\"matinhxa\":\"17.1546\",\"maxa\":1546},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Diễn Châu (xã)",
- "truocsn": "Thị trấn Diễn Thành, Xã Diễn Hoa, Xã Diễn Phúc, Xã Ngọc Bích",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1434\",\"properties\":{\"matinhxa\":\"17.1447\",\"maxa\":1447},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đô Lương (xã)",
- "truocsn": "Xã Bắc Sơn, Xã Nam Sơn (huyện Đô Lương), Xã Đà Sơn, Xã Đặng Sơn, Xã Lưu Sơn, Xã Thịnh Sơn, Xã Văn Sơn, Xã Yên Sơn, Thị trấn Đô Lương",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1461\",\"properties\":{\"matinhxa\":\"17.1474\",\"maxa\":1474},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đông Hiếu (xã)",
- "truocsn": "Xã Nghĩa Mỹ, Xã Nghĩa Thuận, Xã Đông Hiếu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1474\",\"properties\":{\"matinhxa\":\"17.1487\",\"maxa\":1487},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đông Lộc (xã)",
- "truocsn": "Xã Khánh Hợp, Xã Nghi Thạch, Xã Thịnh Trường",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1529\",\"properties\":{\"matinhxa\":\"17.1542\",\"maxa\":1542},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đông Thành (xã)",
- "truocsn": "Xã Đô Thành, Xã Phú Thành, Xã Thọ Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1456\",\"properties\":{\"matinhxa\":\"17.1469\",\"maxa\":1469},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đức Châu (xã)",
- "truocsn": "Xã Diễn Hồng, Xã Diễn Kỷ, Xã Diễn Phong, Xã Diễn Vạn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1437\",\"properties\":{\"matinhxa\":\"17.1450\",\"maxa\":1450},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Giai Lạc (xã)",
- "truocsn": "Xã Hậu Thành, Xã Lăng Thành, Xã Phúc Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1454\",\"properties\":{\"matinhxa\":\"17.1467\",\"maxa\":1467},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Giai Xuân (xã)",
- "truocsn": "Xã Tân Hợp, Xã Giai Xuân",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1428\",\"properties\":{\"matinhxa\":\"17.1441\",\"maxa\":1441},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hải Châu (xã)",
- "truocsn": "Xã Diễn Hoàng, Xã Diễn Kim, Xã Diễn Mỹ, Xã Hùng Hải",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1436\",\"properties\":{\"matinhxa\":\"17.1449\",\"maxa\":1449},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hải Lộc (xã)",
- "truocsn": "Xã Nghi Thiết, Xã Nghi Tiến, Xã Nghi Yên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1525\",\"properties\":{\"matinhxa\":\"17.1538\",\"maxa\":1538},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hạnh Lâm (xã)",
- "truocsn": "Xã Thanh Đức, Xã Hạnh Lâm",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1420\",\"properties\":{\"matinhxa\":\"17.1433\",\"maxa\":1433},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hoa Quân (xã)",
- "truocsn": "Xã Thanh An, Xã Thanh Hương, Xã Thanh Quả, Xã Thanh Thịnh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1423\",\"properties\":{\"matinhxa\":\"17.1436\",\"maxa\":1436},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hoàng Mai (phường)",
- "truocsn": "Phường Quỳnh Thiện, Xã Quỳnh Trang, Xã Quỳnh Vinh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1486\",\"properties\":{\"matinhxa\":\"17.1499\",\"maxa\":1499},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hợp Minh (xã)",
- "truocsn": "Xã Bảo Thành, Xã Long Thành, Xã Sơn Thành, Xã Viên Thành, Xã Vĩnh Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1459\",\"properties\":{\"matinhxa\":\"17.1472\",\"maxa\":1472},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hùng Chân (xã)",
- "truocsn": "Xã Châu Hoàn, Xã Châu Phong, Xã Diên Lãm",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1441\",\"properties\":{\"matinhxa\":\"17.1454\",\"maxa\":1454},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hùng Châu (xã)",
- "truocsn": "Xã Diễn Đoài, Xã Diễn Lâm, Xã Diễn Trường, Xã Diễn Yên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1435\",\"properties\":{\"matinhxa\":\"17.1448\",\"maxa\":1448},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hưng Nguyên (xã)",
- "truocsn": "Thị trấn Hưng Nguyên, Xã Hưng Đạo, Xã Hưng Tây, Xã Thịnh Mỹ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1537\",\"properties\":{\"matinhxa\":\"17.1550\",\"maxa\":1550},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hưng Nguyên Nam (xã)",
- "truocsn": "Xã Hưng Lĩnh, Xã Long Xá, Xã Thông Tân, Xã Xuân Lam",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1539\",\"properties\":{\"matinhxa\":\"17.1552\",\"maxa\":1552},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Huồi Tụ (xã)",
- "truocsn": "xã Huồi Tụ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1504\",\"properties\":{\"matinhxa\":\"17.1517\",\"maxa\":1517},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hữu Khuông (xã)",
- "truocsn": "xã Hữu Khuông (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1513\",\"properties\":{\"matinhxa\":\"17.1526\",\"maxa\":1526},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hữu Kiệm (xã)",
- "truocsn": "Xã Bảo Nam, Xã Hữu Lập, Xã Hữu Kiệm",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1508\",\"properties\":{\"matinhxa\":\"17.1521\",\"maxa\":1521},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Keng Đu (xã)",
- "truocsn": "xã Keng Đu (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1502\",\"properties\":{\"matinhxa\":\"17.1515\",\"maxa\":1515},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Kim Bảng (xã)",
- "truocsn": "Xã Thanh Hà, Xã Thanh Thủy, Xã Kim Bảng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1425\",\"properties\":{\"matinhxa\":\"17.1438\",\"maxa\":1438},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Kim Liên (xã)",
- "truocsn": "Xã Hùng Tiến, Xã Nam Cát, Xã Nam Giang, Xã Xuân Hồng, Xã Kim Liên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1534\",\"properties\":{\"matinhxa\":\"17.1547\",\"maxa\":1547},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Lam Thành (xã)",
- "truocsn": "Xã Châu Nhân, Xã Hưng Nghĩa, Xã Hưng Thành, Xã Phúc Lợi",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1540\",\"properties\":{\"matinhxa\":\"17.1553\",\"maxa\":1553},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Lượng Minh (xã)",
- "truocsn": "xã Lượng Minh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1516\",\"properties\":{\"matinhxa\":\"17.1529\",\"maxa\":1529},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lương Sơn (xã)",
- "truocsn": "Xã Bài Sơn, Xã Đông Sơn, Xã Hồng Sơn, Xã Tràng Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1463\",\"properties\":{\"matinhxa\":\"17.1476\",\"maxa\":1476},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mậu Thạch (xã)",
- "truocsn": "Xã Mậu Đức, Xã Thạch Ngàn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1447\",\"properties\":{\"matinhxa\":\"17.1460\",\"maxa\":1460},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Minh Châu (xã)",
- "truocsn": "Xã Diễn Cát, Xã Diễn Nguyên, Xã Hạnh Quảng, Xã Minh Châu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1449\",\"properties\":{\"matinhxa\":\"17.1462\",\"maxa\":1462},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Minh Hợp (xã)",
- "truocsn": "Xã Hạ Sơn, Xã Văn Lợi, Xã Minh Hợp",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1482\",\"properties\":{\"matinhxa\":\"17.1495\",\"maxa\":1495},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Môn Sơn (xã)",
- "truocsn": "Xã Lục Dạ, Xã Môn Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1411\",\"properties\":{\"matinhxa\":\"17.1424\",\"maxa\":1424},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Mường Chọng (xã)",
- "truocsn": "Xã Bắc Sơn, Xã Nam Sơn (huyện Quỳ Hợp), Xã Châu Lý",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1483\",\"properties\":{\"matinhxa\":\"17.1496\",\"maxa\":1496},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Mường Ham (xã)",
- "truocsn": "Xã Châu Cường, Xã Châu Thái",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1481\",\"properties\":{\"matinhxa\":\"17.1494\",\"maxa\":1494},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Mường Lống (xã)",
- "truocsn": "xã Mường Lống (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1505\",\"properties\":{\"matinhxa\":\"17.1518\",\"maxa\":1518},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Mường Quàng (xã)",
- "truocsn": "Xã Cắm Muộn, Xã Châu Thôn, Xã Quang Phong",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1498\",\"properties\":{\"matinhxa\":\"17.1511\",\"maxa\":1511},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Mường Típ (xã)",
- "truocsn": "Xã Mường Ải, Xã Mường Típ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1510\",\"properties\":{\"matinhxa\":\"17.1523\",\"maxa\":1523},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Mường Xén (xã)",
- "truocsn": "Thị trấn Mường Xén, Xã Tà Cạ, Xã Tây Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1499\",\"properties\":{\"matinhxa\":\"17.1512\",\"maxa\":1512},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Mỹ Lý (xã)",
- "truocsn": "xã Mỹ Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1500\",\"properties\":{\"matinhxa\":\"17.1513\",\"maxa\":1513},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Na Loi (xã)",
- "truocsn": "Xã Đoọc Mạy, Xã Na Loi",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1503\",\"properties\":{\"matinhxa\":\"17.1516\",\"maxa\":1516},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Na Ngoi (xã)",
- "truocsn": "Xã Nậm Càn, Xã Na Ngoi",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1506\",\"properties\":{\"matinhxa\":\"17.1519\",\"maxa\":1519},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Nậm Cắn (xã)",
- "truocsn": "Xã Phà Đánh, Xã Nậm Cắn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1507\",\"properties\":{\"matinhxa\":\"17.1520\",\"maxa\":1520},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Nam Đàn (xã)",
- "truocsn": "Xã Nghĩa Thái (huyện Nam Đàn), Xã Nam Hưng, Xã Nam Thanh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1531\",\"properties\":{\"matinhxa\":\"17.1544\",\"maxa\":1544},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Nga My (xã)",
- "truocsn": "Xã Xiêng My, Xã Nga My",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1515\",\"properties\":{\"matinhxa\":\"17.1528\",\"maxa\":1528},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Nghi Lộc (xã)",
- "truocsn": "Thị trấn Quán Hành, Xã Diên Hoa, Xã Nghi Trung, Xã Nghi Vạn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1523\",\"properties\":{\"matinhxa\":\"17.1536\",\"maxa\":1536},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Nghĩa Đàn (xã)",
- "truocsn": "Thị trấn Nghĩa Đàn, Xã Nghĩa Bình, Xã Nghĩa Trung",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1468\",\"properties\":{\"matinhxa\":\"17.1481\",\"maxa\":1481},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nghĩa Đồng (xã)",
- "truocsn": "Xã Bình Hợp, Xã Nghĩa Đồng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1430\",\"properties\":{\"matinhxa\":\"17.1443\",\"maxa\":1443},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nghĩa Hành (xã)",
- "truocsn": "Xã Phú Sơn, Xã Tân Hương, Xã Nghĩa Hành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1433\",\"properties\":{\"matinhxa\":\"17.1446\",\"maxa\":1446},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nghĩa Hưng (xã)",
- "truocsn": "Xã Nghĩa Thành, Xã Nghĩa Hưng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1472\",\"properties\":{\"matinhxa\":\"17.1485\",\"maxa\":1485},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nghĩa Khánh (xã)",
- "truocsn": "Xã Nghĩa An, Xã Nghĩa Đức, Xã Nghĩa Khánh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1475\",\"properties\":{\"matinhxa\":\"17.1488\",\"maxa\":1488},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Nghĩa Lâm (xã)",
- "truocsn": "Xã Nghĩa Lạc, Xã Nghĩa Sơn, Xã Nghĩa Yên, Xã Nghĩa Lâm",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1470\",\"properties\":{\"matinhxa\":\"17.1483\",\"maxa\":1483},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Nghĩa Lộc (xã)",
- "truocsn": "Xã Nghĩa Long, Xã Nghĩa Lộc",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1476\",\"properties\":{\"matinhxa\":\"17.1489\",\"maxa\":1489},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Nghĩa Mai (xã)",
- "truocsn": "Xã Nghĩa Hồng, Xã Nghĩa Minh, Xã Nghĩa Mai",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1469\",\"properties\":{\"matinhxa\":\"17.1482\",\"maxa\":1482},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nghĩa Thọ (xã)",
- "truocsn": "Xã Nghĩa Hội, Xã Nghĩa Lợi, Xã Nghĩa Thọ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1471\",\"properties\":{\"matinhxa\":\"17.1484\",\"maxa\":1484},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nhân Hòa (xã)",
- "truocsn": "Xã Cẩm Sơn, Xã Hùng Sơn, Xã Tam Đỉnh",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1414\",\"properties\":{\"matinhxa\":\"17.1427\",\"maxa\":1427},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nhôn Mai (xã)",
- "truocsn": "Xã Mai Sơn, Xã Nhôn Mai",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1512\",\"properties\":{\"matinhxa\":\"17.1525\",\"maxa\":1525},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Phúc Lộc (xã)",
- "truocsn": "Xã Nghi Công Bắc, Xã Nghi Công Nam, Xã Nghi Lâm, Xã Nghi Mỹ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1527\",\"properties\":{\"matinhxa\":\"17.1540\",\"maxa\":1540},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Quan Thành (xã)",
- "truocsn": "Xã Bắc Thành, Xã Nam Thành, Xã Trung Thành, Xã Xuân Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1458\",\"properties\":{\"matinhxa\":\"17.1471\",\"maxa\":1471},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Quảng Châu (xã)",
- "truocsn": "Xã Diễn Đồng, Xã Diễn Liên, Xã Diễn Thái, Xã Xuân Tháp",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1448\",\"properties\":{\"matinhxa\":\"17.1461\",\"maxa\":1461},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Quang Đồng (xã)",
- "truocsn": "Xã Đồng Thành, Xã Kim Thành, Xã Quang Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1455\",\"properties\":{\"matinhxa\":\"17.1468\",\"maxa\":1468},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Quế Phong (xã)",
- "truocsn": "Thị trấn Kim Sơn, Xã Châu Kim, Xã Mường Nọc, Xã Nậm Giải",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1494\",\"properties\":{\"matinhxa\":\"17.1507\",\"maxa\":1507},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quỳ Châu (xã)",
- "truocsn": "Thị trấn Tân Lạc, Xã Châu Hạnh, Xã Châu Hội, Xã Châu Nga",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1439\",\"properties\":{\"matinhxa\":\"17.1452\",\"maxa\":1452},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Quỳ Hợp (xã)",
- "truocsn": "Thị trấn Quỳ Hợp, Xã Châu Đình, Xã Châu Quang, Xã Thọ Hợp",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1477\",\"properties\":{\"matinhxa\":\"17.1490\",\"maxa\":1490},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Quỳnh Anh (xã)",
- "truocsn": "Xã Minh Lương, Xã Quỳnh Bảng, Xã Quỳnh Đôi, Xã Quỳnh Thanh, Xã Quỳnh Yên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1492\",\"properties\":{\"matinhxa\":\"17.1505\",\"maxa\":1505},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Quỳnh Lưu (xã)",
- "truocsn": "Thị trấn Cầu Giát, Xã Bình Sơn (huyện Quỳnh Lưu), Xã Quỳnh Diễn, Xã Quỳnh Giang, Xã Quỳnh Hậu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1484\",\"properties\":{\"matinhxa\":\"17.1497\",\"maxa\":1497},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Quỳnh Mai (phường)",
- "truocsn": "Phường Mai Hùng, Phường Quỳnh Phương, Phường Quỳnh Xuân, Xã Quỳnh Liên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1490\",\"properties\":{\"matinhxa\":\"17.1503\",\"maxa\":1503},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Quỳnh Phú (xã)",
- "truocsn": "Xã An Hòa, Xã Phú Nghĩa, Xã Thuận Long, Xã Văn Hải",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1493\",\"properties\":{\"matinhxa\":\"17.1506\",\"maxa\":1506},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Quỳnh Sơn (xã)",
- "truocsn": "Xã Ngọc Sơn (huyện Quỳnh Lưu), Xã Quỳnh Lâm, Xã Quỳnh Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1491\",\"properties\":{\"matinhxa\":\"17.1504\",\"maxa\":1504},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Quỳnh Tam (xã)",
- "truocsn": "Xã Tân Sơn (huyện Quỳnh Lưu), Xã Quỳnh Châu, Xã Quỳnh Tam",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1489\",\"properties\":{\"matinhxa\":\"17.1502\",\"maxa\":1502},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Quỳnh Thắng (xã)",
- "truocsn": "Xã Tân Thắng, Xã Quỳnh Thắng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1485\",\"properties\":{\"matinhxa\":\"17.1498\",\"maxa\":1498},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Quỳnh Văn (xã)",
- "truocsn": "Xã Quỳnh Tân, Xã Quỳnh Thạch, Xã Quỳnh Văn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1488\",\"properties\":{\"matinhxa\":\"17.1501\",\"maxa\":1501},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Sơn Lâm (xã)",
- "truocsn": "Xã Ngọc Lâm, Xã Thanh Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1421\",\"properties\":{\"matinhxa\":\"17.1434\",\"maxa\":1434},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tam Đồng (xã)",
- "truocsn": "Xã Thanh Liên, Xã Thanh Mỹ, Xã Thanh Tiên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1422\",\"properties\":{\"matinhxa\":\"17.1435\",\"maxa\":1435},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Tam Hợp (xã)",
- "truocsn": "Xã Tam Hợp (huyện Quỳ Hợp), Xã Đồng Hợp, Xã Nghĩa Xuân, Xã Yên Hợp",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1478\",\"properties\":{\"matinhxa\":\"17.1491\",\"maxa\":1491},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Tam Quang (xã)",
- "truocsn": "Xã Tam Đình, Xã Tam Quang",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1519\",\"properties\":{\"matinhxa\":\"17.1532\",\"maxa\":1532},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tam Thái (xã)",
- "truocsn": "Xã Tam Hợp (huyện Tương Dương), Xã Tam Thái",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1518\",\"properties\":{\"matinhxa\":\"17.1531\",\"maxa\":1531},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Hương Sơn, Xã Nghĩa Phúc, Xã Tân An",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1431\",\"properties\":{\"matinhxa\":\"17.1444\",\"maxa\":1444},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Tân Châu (xã)",
- "truocsn": "Xã Diễn Lộc, Xã Diễn Lợi, Xã Diễn Phú, Xã Diễn Thọ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1451\",\"properties\":{\"matinhxa\":\"17.1464\",\"maxa\":1464},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tân Kỳ (xã)",
- "truocsn": "Thị trấn Tân Kỳ, Xã Nghĩa Dũng, Xã Kỳ Tân, Xã Kỳ Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1427\",\"properties\":{\"matinhxa\":\"17.1440\",\"maxa\":1440},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Tân Mai (phường)",
- "truocsn": "Phường Quỳnh Dị, Xã Quỳnh Lập, Xã Quỳnh Lộc",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1487\",\"properties\":{\"matinhxa\":\"17.1500\",\"maxa\":1500},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Tân Phú (xã)",
- "truocsn": "Xã Nghĩa Thái (huyện Tân Kỳ), Xã Hoàn Long, Xã Tân Xuân, Xã Tân Phú",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1429\",\"properties\":{\"matinhxa\":\"17.1442\",\"maxa\":1442},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tây Hiếu (phường)",
- "truocsn": "Phường Quang Tiến, Xã Nghĩa Tiến, Xã Tây Hiếu",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1473\",\"properties\":{\"matinhxa\":\"17.1486\",\"maxa\":1486},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Thái Hòa (phường)",
- "truocsn": "Phường Hòa Hiếu, Phường Long Sơn, Phường Quang Phong",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1467\",\"properties\":{\"matinhxa\":\"17.1480\",\"maxa\":1480},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Thần Lĩnh (xã)",
- "truocsn": "Xã Nghi Đồng, Xã Nghi Hưng, Xã Nghi Phương",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1526\",\"properties\":{\"matinhxa\":\"17.1539\",\"maxa\":1539},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Thành Bình Thọ (xã)",
- "truocsn": "Xã Bình Sơn (huyện Anh Sơn), Xã Thành Sơn, Xã Thọ Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1413\",\"properties\":{\"matinhxa\":\"17.1426\",\"maxa\":1426},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Thành Vinh (phường)",
- "truocsn": "Phường Cửa Nam, Phường Đông Vĩnh, Phường Hưng Bình, Phường Lê Lợi, Phường Quang Trung, Xã Hưng Chính",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1532\",\"properties\":{\"matinhxa\":\"17.1545\",\"maxa\":1545},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Thiên Nhẫn (xã)",
- "truocsn": "Xã Khánh Sơn, Xã Nam Kim, Xã Trung Phúc Cường",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1535\",\"properties\":{\"matinhxa\":\"17.1548\",\"maxa\":1548},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Thông Thụ (xã)",
- "truocsn": "Xã Đồng Văn (huyện Quế Phong), Xã Thông Thụ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1495\",\"properties\":{\"matinhxa\":\"17.1508\",\"maxa\":1508},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Thuần Trung (xã)",
- "truocsn": "Xã Minh Sơn (huyện Đô Lương), Xã Lạc Sơn, Xã Nhân Sơn, Xã Thuận Sơn, Xã Trung Sơn, Xã Xuân Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1465\",\"properties\":{\"matinhxa\":\"17.1478\",\"maxa\":1478},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Tiên Đồng (xã)",
- "truocsn": "Xã Đồng Văn (huyện Tân Kỳ), Xã Tiên Kỳ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1432\",\"properties\":{\"matinhxa\":\"17.1445\",\"maxa\":1445},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Tiền Phong (xã)",
- "truocsn": "Xã Hạnh Dịch, Xã Tiền Phong",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1496\",\"properties\":{\"matinhxa\":\"17.1509\",\"maxa\":1509},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Tri Lễ (xã)",
- "truocsn": "Xã Nậm Nhoóng, Xã Tri Lễ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1497\",\"properties\":{\"matinhxa\":\"17.1510\",\"maxa\":1510},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Trung Lộc (xã)",
- "truocsn": "Xã Nghi Long, Xã Nghi Quang, Xã Nghi Thuận, Xã Nghi Xá",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1528\",\"properties\":{\"matinhxa\":\"17.1541\",\"maxa\":1541},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Trường Vinh (phường)",
- "truocsn": "Phường Bến Thủy, Phường Hưng Dũng, Phường Hưng Phúc, Phường Trung Đô, Phường Trường Thi, Phường Vinh Tân, Xã Hưng Hòa",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1520\",\"properties\":{\"matinhxa\":\"17.1533\",\"maxa\":1533},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Tương Dương (xã)",
- "truocsn": "Thị trấn Thạch Giám, Xã Lưu Kiền, Xã Xá Lượng",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1511\",\"properties\":{\"matinhxa\":\"17.1524\",\"maxa\":1524},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Vạn An (xã)",
- "truocsn": "Thị trấn Nam Đàn, Xã Thượng Tân Lộc, Xã Xuân Hòa",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1530\",\"properties\":{\"matinhxa\":\"17.1543\",\"maxa\":1543},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Vân Du (xã)",
- "truocsn": "Xã Minh Thành, Xã Tây Thành, Xã Thịnh Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1457\",\"properties\":{\"matinhxa\":\"17.1470\",\"maxa\":1470},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Văn Hiến (xã)",
- "truocsn": "Xã Tân Sơn (huyện Đô Lương), Xã Hòa Sơn, Xã Quang Sơn, Xã Thái Sơn, Xã Thượng Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1464\",\"properties\":{\"matinhxa\":\"17.1477\",\"maxa\":1477},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Văn Kiều (xã)",
- "truocsn": "Xã Nghi Kiều, Xã Nghi Văn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1524\",\"properties\":{\"matinhxa\":\"17.1537\",\"maxa\":1537},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Vân Tụ (xã)",
- "truocsn": "Xã Liên Thành, Xã Mỹ Thành, Xã Vân Tụ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1460\",\"properties\":{\"matinhxa\":\"17.1473\",\"maxa\":1473},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Vinh Hưng (phường)",
- "truocsn": "Phường Hưng Đông, Phường Quán Bàu, Xã Nghi Kim, Xã Nghi Liên",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1541\",\"properties\":{\"matinhxa\":\"17.1554\",\"maxa\":1554},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Vinh Lộc (phường)",
- "truocsn": "Phường Hưng Lộc, Xã Nghi Phong, Xã Nghi Thái, Xã Nghi Xuân, Xã Phúc Thọ",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1521\",\"properties\":{\"matinhxa\":\"17.1534\",\"maxa\":1534},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Vinh Phú (phường)",
- "truocsn": "Phường Hà Huy Tập, Phường Nghi Đức, Phường Nghi Phú, Xã Nghi Ân",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1536\",\"properties\":{\"matinhxa\":\"17.1549\",\"maxa\":1549},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Vĩnh Tường (xã)",
- "truocsn": "Xã Hoa Sơn, Xã Hội Sơn, Xã Tường Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1415\",\"properties\":{\"matinhxa\":\"17.1428\",\"maxa\":1428},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Xuân Lâm (xã)",
- "truocsn": "Xã Ngọc Sơn (huyện Thanh Chương), Xã Minh Tiến, Xã Xuân Dương",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1424\",\"properties\":{\"matinhxa\":\"17.1437\",\"maxa\":1437},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Yên Hòa (xã)",
- "truocsn": "Xã Yên Thắng, Xã Yên Hòa",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1517\",\"properties\":{\"matinhxa\":\"17.1530\",\"maxa\":1530},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Yên Na (xã)",
- "truocsn": "Xã Yên Tĩnh, Xã Yên Na",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1514\",\"properties\":{\"matinhxa\":\"17.1527\",\"maxa\":1527},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Yên Thành (xã)",
- "truocsn": "Thị trấn Hoa Thành, Xã Đông Thành, Xã Tăng Thành, Xã Văn Thành",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1452\",\"properties\":{\"matinhxa\":\"17.1465\",\"maxa\":1465},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Yên Trung (xã)",
- "truocsn": "Xã Hưng Yên Bắc, Xã Hưng Yên Nam, Xã Hưng Trung",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1538\",\"properties\":{\"matinhxa\":\"17.1551\",\"maxa\":1551},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Yên Xuân (xã)",
- "truocsn": "Xã Cao Sơn, Xã Khai Sơn, Xã Lĩnh Sơn, Xã Long Sơn",
- "provinceName": "tỉnh Nghệ An",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1417\",\"properties\":{\"matinhxa\":\"17.1430\",\"maxa\":1430},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bắc Hồng Lĩnh (phường)",
- "truocsn": "Phường Bắc Hồng, Phường Đức Thuận, Phường Trung Lương, Xã Xuân Lam",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2016\",\"properties\":{\"matinhxa\":\"18.2030\",\"maxa\":2030},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Cẩm Bình (xã)",
- "truocsn": "Xã Cẩm Vịnh, Xã Thạch Bình, Xã Cẩm Thành, Xã Cẩm Bình",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2039\",\"properties\":{\"matinhxa\":\"18.2053\",\"maxa\":2053},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Cẩm Duệ (xã)",
- "truocsn": "Xã Cẩm Mỹ, Xã Cẩm Thạch, Xã Cẩm Duệ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2024\",\"properties\":{\"matinhxa\":\"18.2038\",\"maxa\":2038},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Cẩm Hưng (xã)",
- "truocsn": "Xã Cẩm Thịnh, Xã Cẩm Hà, Xã Cẩm Hưng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2025\",\"properties\":{\"matinhxa\":\"18.2039\",\"maxa\":2039},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Cẩm Lạc (xã)",
- "truocsn": "Xã Cẩm Minh, Xã Cẩm Sơn, Xã Cẩm Lạc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2026\",\"properties\":{\"matinhxa\":\"18.2040\",\"maxa\":2040},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cẩm Trung (xã)",
- "truocsn": "Xã Cẩm Lĩnh, Xã Cẩm Lộc, Xã Cẩm Trung",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2035\",\"properties\":{\"matinhxa\":\"18.2049\",\"maxa\":2049},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Cẩm Xuyên (xã)",
- "truocsn": "Thị trấn Cẩm Xuyên, Xã Cẩm Quang, Xã Cẩm Quan",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2034\",\"properties\":{\"matinhxa\":\"18.2048\",\"maxa\":2048},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Can Lộc (xã)",
- "truocsn": "Thị trấn Nghèn, Xã Thiên Lộc, Xã Vượng Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2007\",\"properties\":{\"matinhxa\":\"18.2021\",\"maxa\":2021},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cổ Đạm (xã)",
- "truocsn": "Xã Cương Gián, Xã Xuân Liên, Xã Cổ Đạm",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2014\",\"properties\":{\"matinhxa\":\"18.2028\",\"maxa\":2028},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Đan Hải (xã)",
- "truocsn": "Xã Đan Trường, Xã Xuân Hải, Xã Xuân Hội, Xã Xuân Phổ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1997\",\"properties\":{\"matinhxa\":\"18.2011\",\"maxa\":2011},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đông Kinh (xã)",
- "truocsn": "Xã Thạch Kênh, Xã Thạch Liên, Xã Ích Hậu",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2005\",\"properties\":{\"matinhxa\":\"18.2019\",\"maxa\":2019},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đồng Lộc (xã)",
- "truocsn": "Thị trấn Đồng Lộc, Xã Thượng Lộc, Xã Mỹ Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2003\",\"properties\":{\"matinhxa\":\"18.2017\",\"maxa\":2017},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đồng Tiến (xã)",
- "truocsn": "Xã Thạch Trị, Xã Thạch Hội, Xã Thạch Văn",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2027\",\"properties\":{\"matinhxa\":\"18.2041\",\"maxa\":2041},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đức Đồng (xã)",
- "truocsn": "Xã Đức Lạng, Xã Tân Hương, Xã Đức Đồng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2052\",\"properties\":{\"matinhxa\":\"18.2066\",\"maxa\":2066},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đức Minh (xã)",
- "truocsn": "Xã Trường Sơn, Xã Tùng Châu, Xã Liên Minh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2061\",\"properties\":{\"matinhxa\":\"18.2075\",\"maxa\":2075},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đức Quang (xã)",
- "truocsn": "Xã Quang Vĩnh, Xã Bùi La Nhân, Xã Yên Hồ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2060\",\"properties\":{\"matinhxa\":\"18.2074\",\"maxa\":2074},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đức Thịnh (xã)",
- "truocsn": "Xã Thanh Bình Thịnh, Xã Lâm Trung Thủy, Xã An Dũng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2051\",\"properties\":{\"matinhxa\":\"18.2065\",\"maxa\":2065},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đức Thọ (xã)",
- "truocsn": "Thị trấn Đức Thọ, Xã Tùng Ảnh, Xã Hòa Lạc, Xã Tân Dân",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2054\",\"properties\":{\"matinhxa\":\"18.2068\",\"maxa\":2068},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Gia Hanh (xã)",
- "truocsn": "Xã Khánh Vĩnh Yên, Xã Thanh Lộc, Xã Gia Hanh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2011\",\"properties\":{\"matinhxa\":\"18.2025\",\"maxa\":2025},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hà Huy Tập (phường)",
- "truocsn": "Xã Tân Lâm Hương, Xã Thạch Đài, Phường Đại Nài",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1999\",\"properties\":{\"matinhxa\":\"18.2013\",\"maxa\":2013},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hà Linh (xã)",
- "truocsn": "Xã Điền Mỹ, Xã Hà Linh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2049\",\"properties\":{\"matinhxa\":\"18.2063\",\"maxa\":2063},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hải Ninh (phường)",
- "truocsn": "Phường Kỳ Ninh, Xã Kỳ Hà, Xã Kỳ Hải",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2032\",\"properties\":{\"matinhxa\":\"18.2046\",\"maxa\":2046},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hoành Sơn (phường)",
- "truocsn": "Phường Kỳ Nam, Phường Kỳ Phương, Phường Kỳ Liên, Xã Kỳ Lợi",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2023\",\"properties\":{\"matinhxa\":\"18.2037\",\"maxa\":2037},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Hồng Lộc (xã)",
- "truocsn": "Xã Tân Lộc, Xã Hồng Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2010\",\"properties\":{\"matinhxa\":\"18.2024\",\"maxa\":2024},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hương Bình (xã)",
- "truocsn": "Xã Hòa Hải, Xã Phúc Đồng, Xã Hương Bình",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2057\",\"properties\":{\"matinhxa\":\"18.2071\",\"maxa\":2071},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hương Đô (xã)",
- "truocsn": "Xã Lộc Yên, Xã Hương Trà, Xã Hương Đô",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2041\",\"properties\":{\"matinhxa\":\"18.2055\",\"maxa\":2055},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hương Khê (xã)",
- "truocsn": "Thị trấn Hương Khê, Xã Hương Long, Xã Phú Gia",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2055\",\"properties\":{\"matinhxa\":\"18.2069\",\"maxa\":2069},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hương Phố (xã)",
- "truocsn": "Xã Hương Giang, Xã Hương Thủy, Xã Gia Phố",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2056\",\"properties\":{\"matinhxa\":\"18.2070\",\"maxa\":2070},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hương Sơn (xã)",
- "truocsn": "Thị trấn Phố Châu, Xã Sơn Phú, Xã Sơn Bằng, Xã Sơn Ninh, Xã Sơn Trung",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2048\",\"properties\":{\"matinhxa\":\"18.2062\",\"maxa\":2062},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hương Xuân (xã)",
- "truocsn": "Xã Hương Lâm, Xã Hương Vĩnh, Xã Hương Xuân",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2042\",\"properties\":{\"matinhxa\":\"18.2056\",\"maxa\":2056},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Kim Hoa (xã)",
- "truocsn": "Xã Hàm Trường, Xã Kim Hoa",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2046\",\"properties\":{\"matinhxa\":\"18.2060\",\"maxa\":2060},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Kỳ Anh (xã)",
- "truocsn": "Thị trấn Kỳ Đồng, Xã Kỳ Giang, Xã Kỳ Tiến, Xã Kỳ Phú",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2031\",\"properties\":{\"matinhxa\":\"18.2045\",\"maxa\":2045},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Kỳ Hoa (xã)",
- "truocsn": "Xã Kỳ Tân, Xã Kỳ Hoa",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2020\",\"properties\":{\"matinhxa\":\"18.2034\",\"maxa\":2034},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Kỳ Khang (xã)",
- "truocsn": "Xã Kỳ Thọ, Xã Kỳ Thư, Xã Kỳ Khang",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2030\",\"properties\":{\"matinhxa\":\"18.2044\",\"maxa\":2044},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Kỳ Lạc (xã)",
- "truocsn": "Xã Lâm Hợp, Xã Kỳ Lạc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2018\",\"properties\":{\"matinhxa\":\"18.2032\",\"maxa\":2032},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Kỳ Thượng (xã)",
- "truocsn": "Xã Kỳ Sơn, Xã Kỳ Thượng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2019\",\"properties\":{\"matinhxa\":\"18.2033\",\"maxa\":2033},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Kỳ Văn (xã)",
- "truocsn": "Xã Kỳ Tây, Xã Kỳ Trung, Xã Kỳ Văn",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2033\",\"properties\":{\"matinhxa\":\"18.2047\",\"maxa\":2047},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Kỳ Xuân (xã)",
- "truocsn": "Xã Kỳ Phong, Xã Kỳ Bắc, Xã Kỳ Xuân",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2036\",\"properties\":{\"matinhxa\":\"18.2050\",\"maxa\":2050},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lộc Hà (xã)",
- "truocsn": "Thị trấn Lộc Hà, Xã Bình An, Xã Thịnh Lộc, Xã Thạch Kim",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2008\",\"properties\":{\"matinhxa\":\"18.2022\",\"maxa\":2022},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Mai Hoa (xã)",
- "truocsn": "Xã Ân Phú, Xã Đức Giang, Xã Đức Lĩnh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2044\",\"properties\":{\"matinhxa\":\"18.2058\",\"maxa\":2058},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Mai Phụ (xã)",
- "truocsn": "Xã Thạch Mỹ, Xã Thạch Châu, Xã Phù Lưu, Xã Mai Phụ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2006\",\"properties\":{\"matinhxa\":\"18.2020\",\"maxa\":2020},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Nam Hồng Lĩnh (phường)",
- "truocsn": "Phường Nam Hồng, Phường Đậu Liêu, Xã Thuận Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2013\",\"properties\":{\"matinhxa\":\"18.2027\",\"maxa\":2027},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Nghi Xuân (xã)",
- "truocsn": "Thị trấn Xuân An, Xã Xuân Giang, Xã Xuân Hồng, Xã Xuân Viên, Xã Xuân Lĩnh",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1998\",\"properties\":{\"matinhxa\":\"18.2012\",\"maxa\":2012},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Phúc Trạch (xã)",
- "truocsn": "Xã Hương Trạch, Xã Hương Liên, Xã Phúc Trạch",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2040\",\"properties\":{\"matinhxa\":\"18.2054\",\"maxa\":2054},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Sơn Giang (xã)",
- "truocsn": "Xã Sơn Lâm, Xã Quang Diệm, Xã Sơn Giang",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2047\",\"properties\":{\"matinhxa\":\"18.2061\",\"maxa\":2061},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Sơn Hồng (xã)",
- "truocsn": "Xã Sơn Lĩnh, Xã Sơn Hồng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2063\",\"properties\":{\"matinhxa\":\"18.2077\",\"maxa\":2077},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Sơn Kim 1 (xã)",
- "truocsn": "xã Sơn Kim 1 (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2059\",\"properties\":{\"matinhxa\":\"18.2073\",\"maxa\":2073},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Sơn Kim 2 (xã)",
- "truocsn": "xã Sơn Kim 2 (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2058\",\"properties\":{\"matinhxa\":\"18.2072\",\"maxa\":2072},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Sơn Tây (xã)",
- "truocsn": "Thị trấn Tây Sơn, Xã Sơn Tây",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2045\",\"properties\":{\"matinhxa\":\"18.2059\",\"maxa\":2059},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Sơn Tiến (xã)",
- "truocsn": "Xã Sơn Lễ, Xã An Hòa Thịnh, Xã Sơn Tiến",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2062\",\"properties\":{\"matinhxa\":\"18.2076\",\"maxa\":2076},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Sông Trí (phường)",
- "truocsn": "Phường Hưng Trí, Phường Kỳ Trinh, Xã Kỳ Châu, Xã Kỳ Lợi",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2021\",\"properties\":{\"matinhxa\":\"18.2035\",\"maxa\":2035},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Thạch Hà (xã)",
- "truocsn": "Thị trấn Thạch Hà, Xã Thạch Long, Xã Thạch Sơn",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2001\",\"properties\":{\"matinhxa\":\"18.2015\",\"maxa\":2015},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Thạch Khê (xã)",
- "truocsn": "Xã Đỉnh Bàn, Xã Thạch Hải, Xã Thạch Khê",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2029\",\"properties\":{\"matinhxa\":\"18.2043\",\"maxa\":2043},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Thạch Lạc (xã)",
- "truocsn": "Xã Tượng Sơn, Xã Thạch Thắng, Xã Thạch Lạc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2028\",\"properties\":{\"matinhxa\":\"18.2042\",\"maxa\":2042},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Thạch Xuân (xã)",
- "truocsn": "Xã Nam Điền, Xã Thạch Xuân",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2015\",\"properties\":{\"matinhxa\":\"18.2029\",\"maxa\":2029},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Thành Sen (phường)",
- "truocsn": "Phường Bắc Hà, Phường Thạch Quý, Phường Tân Giang, Phường Thạch Hưng, Phường Nam Hà, Phường Trần Phú, Phường Hà Huy Tập, Phường Văn Yên, Phường Đại Nài",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2065\",\"properties\":{\"matinhxa\":\"18.2079\",\"maxa\":2079},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Thiên Cầm (xã)",
- "truocsn": "Thị trấn Thiên Cầm, Xã Nam Phúc Thăng, Xã Cẩm Nhượng",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2037\",\"properties\":{\"matinhxa\":\"18.2051\",\"maxa\":2051},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Thượng Đức (xã)",
- "truocsn": "Xã Đức Bồng, Xã Đức Hương, Xã Đức Liên",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2050\",\"properties\":{\"matinhxa\":\"18.2064\",\"maxa\":2064},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Tiên Điền (xã)",
- "truocsn": "Thị trấn Tiên Điền, Xã Xuân Yên, Xã Xuân Mỹ, Xã Xuân Thành",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2000\",\"properties\":{\"matinhxa\":\"18.2014\",\"maxa\":2014},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Toàn Lưu (xã)",
- "truocsn": "Xã Ngọc Sơn, Xã Lưu Vĩnh Sơn",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2017\",\"properties\":{\"matinhxa\":\"18.2031\",\"maxa\":2031},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Trần Phú (phường)",
- "truocsn": "Phường Thạch Trung, Phường Đồng Môn, Phường Thạch Hạ, Xã Hộ Độ",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2064\",\"properties\":{\"matinhxa\":\"18.2078\",\"maxa\":2078},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Trường Lưu (xã)",
- "truocsn": "Xã Kim Song Trường, Xã Thường Nga, Xã Phú Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2012\",\"properties\":{\"matinhxa\":\"18.2026\",\"maxa\":2026},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Tứ Mỹ (xã)",
- "truocsn": "Xã Châu Bình, Xã Tân Mỹ Hà, Xã Mỹ Long",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2053\",\"properties\":{\"matinhxa\":\"18.2067\",\"maxa\":2067},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tùng Lộc (xã)",
- "truocsn": "Xã Thuần Thiện, Xã Tùng Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2009\",\"properties\":{\"matinhxa\":\"18.2023\",\"maxa\":2023},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Việt Xuyên (xã)",
- "truocsn": "Xã Việt Tiến, Xã Thạch Ngọc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2004\",\"properties\":{\"matinhxa\":\"18.2018\",\"maxa\":2018},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Vũ Quang (xã)",
- "truocsn": "Thị trấn Vũ Quang, Xã Hương Minh, Xã Quang Thọ, Xã Thọ Điền",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2043\",\"properties\":{\"matinhxa\":\"18.2057\",\"maxa\":2057},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Vũng Áng (phường)",
- "truocsn": "Phường Kỳ Long, Phường Kỳ Thịnh, Xã Kỳ Lợi",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2022\",\"properties\":{\"matinhxa\":\"18.2036\",\"maxa\":2036},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Xuân Lộc (xã)",
- "truocsn": "Xã Sơn Lộc, Xã Quang Lộc, Xã Xuân Lộc",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2002\",\"properties\":{\"matinhxa\":\"18.2016\",\"maxa\":2016},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Yên Hòa (xã)",
- "truocsn": "Xã Cẩm Dương, Xã Yên Hòa",
- "provinceName": "tỉnh Hà Tĩnh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2038\",\"properties\":{\"matinhxa\":\"18.2052\",\"maxa\":2052},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "A Dơi (xã)",
- "truocsn": "Xã Ba Tầng, Xã Xy, Xã A Dơi",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.594\",\"properties\":{\"matinhxa\":\"19.596\",\"maxa\":596},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ái Tử (xã)",
- "truocsn": "Xã Triệu Ái, Xã Triệu Giang, Xã Triệu Long",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.567\",\"properties\":{\"matinhxa\":\"19.569\",\"maxa\":569},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ba Đồn (phường)",
- "truocsn": "Phường Quảng Phong, Phường Quảng Long, Phường Ba Đồn, Xã Quảng Hải",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.613\",\"properties\":{\"matinhxa\":\"19.615\",\"maxa\":615},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Ba Lòng (xã)",
- "truocsn": "Xã Triệu Nguyên, Xã Ba Lòng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.577\",\"properties\":{\"matinhxa\":\"19.579\",\"maxa\":579},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bắc Gianh (phường)",
- "truocsn": "Phường Quảng Phúc, Phường Quảng Thọ, Phường Quảng Thuận",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.618\",\"properties\":{\"matinhxa\":\"19.620\",\"maxa\":620},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bắc Trạch (xã)",
- "truocsn": "Xã Thanh Trạch, Xã Hạ Mỹ, Xã Liên Trạch, Xã Bắc Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.623\",\"properties\":{\"matinhxa\":\"19.625\",\"maxa\":625},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bến Hải (xã)",
- "truocsn": "Xã Trung Hải, Xã Trung Giang, Xã Trung Sơn",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.583\",\"properties\":{\"matinhxa\":\"19.585\",\"maxa\":585},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bến Quan (xã)",
- "truocsn": "Thị trấn Bến Quan, Xã Vĩnh Ô, Xã Vĩnh Hà, Xã Vĩnh Khê",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.564\",\"properties\":{\"matinhxa\":\"19.566\",\"maxa\":566},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bố Trạch (xã)",
- "truocsn": "Xã Hưng Trạch, Xã Cự Nẫm, Xã Vạn Trạch, Xã Phú Định",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.624\",\"properties\":{\"matinhxa\":\"19.626\",\"maxa\":626},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cam Hồng (xã)",
- "truocsn": "Xã Cam Thủy (huyện Lệ Thủy), Xã Thanh Thủy, Xã Hồng Thủy, Xã Ngư Thủy Bắc",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.634\",\"properties\":{\"matinhxa\":\"19.636\",\"maxa\":636},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cam Lộ (xã)",
- "truocsn": "Thị trấn Cam Lộ, Xã Cam Thành, Xã Cam Chính, Xã Cam Nghĩa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.569\",\"properties\":{\"matinhxa\":\"19.571\",\"maxa\":571},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cồn Cỏ (đặc khu)",
- "truocsn": "Huyện Cồn Cỏ",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3308\",\"properties\":{\"matinhxa\":\"19.3324\",\"maxa\":3324},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cồn Tiên (xã)",
- "truocsn": "Xã Hải Thái, Xã Linh Trường, Xã Gio An, Xã Gio Sơn",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.574\",\"properties\":{\"matinhxa\":\"19.576\",\"maxa\":576},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cửa Tùng (xã)",
- "truocsn": "Thị trấn Cửa Tùng, Xã Vĩnh Giang, Xã Hiền Thành, Xã Kim Thạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.584\",\"properties\":{\"matinhxa\":\"19.586\",\"maxa\":586},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cửa Việt (xã)",
- "truocsn": "Thị trấn Cửa Việt, Xã Gio Mai, Xã Gio Hải",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.596\",\"properties\":{\"matinhxa\":\"19.598\",\"maxa\":598},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đakrông (xã)",
- "truocsn": "Xã Ba Nang, Xã Tà Long, Xã Đakrông",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.576\",\"properties\":{\"matinhxa\":\"19.578\",\"maxa\":578},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Dân Hóa (xã)",
- "truocsn": "Xã Trọng Hóa, Xã Dân Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.602\",\"properties\":{\"matinhxa\":\"19.604\",\"maxa\":604},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Diên Sanh (xã)",
- "truocsn": "Thị trấn Diên Sanh, Xã Hải Trường, Xã Hải Định",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.580\",\"properties\":{\"matinhxa\":\"19.582\",\"maxa\":582},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đông Hà (phường)",
- "truocsn": "Phường 1 (thành phố Đông Hà), Phường 3 (thành phố Đông Hà), Phường 4, Phường Đông Giang, Phường Đông Thanh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.570\",\"properties\":{\"matinhxa\":\"19.572\",\"maxa\":572},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đồng Hới (phường)",
- "truocsn": "Phường Đức Ninh Đông, Phường Đồng Hải, Phường Đồng Phú, Phường Phú Hải, Phường Hải Thành, Phường Nam Lý, Xã Bảo Ninh, Xã Đức Ninh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.598\",\"properties\":{\"matinhxa\":\"19.600\",\"maxa\":600},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đồng Lê (xã)",
- "truocsn": "Thị trấn Đồng Lê, Xã Kim Hóa, Xã Lê Hóa, Xã Thuận Hóa, Xã Sơn Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.606\",\"properties\":{\"matinhxa\":\"19.608\",\"maxa\":608},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đồng Sơn (phường)",
- "truocsn": "Phường Bắc Nghĩa, Phường Đồng Sơn, Xã Nghĩa Ninh, Xã Thuận Đức",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.600\",\"properties\":{\"matinhxa\":\"19.602\",\"maxa\":602},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đồng Thuận (phường)",
- "truocsn": "Phường Bắc Lý, Xã Lộc Ninh, Xã Quang Phú",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.599\",\"properties\":{\"matinhxa\":\"19.601\",\"maxa\":601},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đông Trạch (xã)",
- "truocsn": "Xã Hải Phú (huyện Bố Trạch), Xã Sơn Lộc, Xã Đức Trạch, Xã Đồng Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.626\",\"properties\":{\"matinhxa\":\"19.628\",\"maxa\":628},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Gio Linh (xã)",
- "truocsn": "Thị trấn Gio Linh, Xã Gio Quang, Xã Gio Mỹ, Xã Phong Bình",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.568\",\"properties\":{\"matinhxa\":\"19.570\",\"maxa\":570},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hải Lăng (xã)",
- "truocsn": "Xã Hải Phú (huyện Hải Lăng), Xã Hải Lâm, Xã Hải Thượng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.578\",\"properties\":{\"matinhxa\":\"19.580\",\"maxa\":580},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hiếu Giang (xã)",
- "truocsn": "Xã Cam Thủy (huyện Cam Lộ), Xã Cam Hiếu, Xã Cam Tuyền, Xã Thanh An",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.597\",\"properties\":{\"matinhxa\":\"19.599\",\"maxa\":599},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hòa Trạch (xã)",
- "truocsn": "Xã Quảng Châu, Xã Quảng Tùng, Xã Cảnh Dương",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.615\",\"properties\":{\"matinhxa\":\"19.617\",\"maxa\":617},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hoàn Lão (xã)",
- "truocsn": "Thị trấn Hoàn Lão, Xã Trung Trạch, Xã Đại Trạch, Xã Tây Trạch, Xã Hòa Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.621\",\"properties\":{\"matinhxa\":\"19.623\",\"maxa\":623},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hướng Hiệp (xã)",
- "truocsn": "Thị trấn Krông Klang, Xã Mò Ó, Xã Hướng Hiệp",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.573\",\"properties\":{\"matinhxa\":\"19.575\",\"maxa\":575},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hướng Lập (xã)",
- "truocsn": "Xã Hướng Việt, Xã Hướng Lập",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.575\",\"properties\":{\"matinhxa\":\"19.577\",\"maxa\":577},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hướng Phùng (xã)",
- "truocsn": "Xã Hướng Sơn, Xã Hướng Linh, Xã Hướng Phùng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.592\",\"properties\":{\"matinhxa\":\"19.594\",\"maxa\":594},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Khe Sanh (xã)",
- "truocsn": "Thị trấn Khe Sanh, Xã Tân Hợp, Xã Húc, Xã Hướng Tân",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.585\",\"properties\":{\"matinhxa\":\"19.587\",\"maxa\":587},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Kim Điền (xã)",
- "truocsn": "Xã Hóa Sơn, Xã Hóa Hợp",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.604\",\"properties\":{\"matinhxa\":\"19.606\",\"maxa\":606},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Kim Ngân (xã)",
- "truocsn": "Xã Kim Thủy, Xã Ngân Thủy, Xã Lâm Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.635\",\"properties\":{\"matinhxa\":\"19.637\",\"maxa\":637},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Kim Phú (xã)",
- "truocsn": "Xã Thượng Hóa, Xã Trung Hóa, Xã Minh Hóa, Xã Tân Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.605\",\"properties\":{\"matinhxa\":\"19.607\",\"maxa\":607},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "La Lay (xã)",
- "truocsn": "Xã A Bung, Xã A Ngo",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.566\",\"properties\":{\"matinhxa\":\"19.568\",\"maxa\":568},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lao Bảo (xã)",
- "truocsn": "Xã Tân Thành (huyện Hướng Hóa), Xã Tân Long, Thị trấn Lao Bảo",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.593\",\"properties\":{\"matinhxa\":\"19.595\",\"maxa\":595},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lệ Ninh (xã)",
- "truocsn": "Thị trấn Nông trường Lệ Ninh, Xã Sơn Thủy, Xã Hoa Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.632\",\"properties\":{\"matinhxa\":\"19.634\",\"maxa\":634},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Lệ Thủy (xã)",
- "truocsn": "Thị trấn Kiến Giang, Xã Liên Thủy, Xã Xuân Thủy, Xã An Thủy, Xã Phong Thủy, Xã Lộc Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.633\",\"properties\":{\"matinhxa\":\"19.635\",\"maxa\":635},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lìa (xã)",
- "truocsn": "Xã Thanh, Xã Thuận, Xã Lìa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.595\",\"properties\":{\"matinhxa\":\"19.597\",\"maxa\":597},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Minh Hóa (xã)",
- "truocsn": "Thị trấn Quy Đạt, Xã Xuân Hóa, Xã Yên Hóa, Xã Hồng Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.601\",\"properties\":{\"matinhxa\":\"19.603\",\"maxa\":603},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mỹ Thủy (xã)",
- "truocsn": "Xã Hải Dương, Xã Hải An, Xã Hải Khê",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.582\",\"properties\":{\"matinhxa\":\"19.584\",\"maxa\":584},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Nam Ba Đồn (xã)",
- "truocsn": "Xã Quảng Tân, Xã Quảng Trung, Xã Quảng Tiên, Xã Quảng Sơn, Xã Quảng Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.619\",\"properties\":{\"matinhxa\":\"19.621\",\"maxa\":621},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Nam Cửa Việt (xã)",
- "truocsn": "Xã Triệu Trạch, Xã Triệu Phước, Xã Triệu Tân",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.586\",\"properties\":{\"matinhxa\":\"19.588\",\"maxa\":588},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nam Đông Hà (phường)",
- "truocsn": "Phường 2 (thành phố Đông Hà), Phường 5, Phường Đông Lễ, Phường Đông Lương",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.571\",\"properties\":{\"matinhxa\":\"19.573\",\"maxa\":573},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nam Gianh (xã)",
- "truocsn": "Xã Quảng Hòa, Xã Quảng Lộc, Xã Quảng Văn, Xã Quảng Minh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.620\",\"properties\":{\"matinhxa\":\"19.622\",\"maxa\":622},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Nam Hải Lăng (xã)",
- "truocsn": "Xã Hải Sơn, Xã Hải Phong, Xã Hải Chánh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.579\",\"properties\":{\"matinhxa\":\"19.581\",\"maxa\":581},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Nam Trạch (xã)",
- "truocsn": "Thị trấn Nông trường Việt Trung, Xã Nhân Trạch, Xã Lý Nam",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.622\",\"properties\":{\"matinhxa\":\"19.624\",\"maxa\":624},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Ninh Châu (xã)",
- "truocsn": "Xã Tân Ninh, Xã Gia Ninh, Xã Duy Ninh, Xã Hải Ninh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.630\",\"properties\":{\"matinhxa\":\"19.632\",\"maxa\":632},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phong Nha (xã)",
- "truocsn": "Thị trấn Phong Nha, Xã Lâm Trạch, Xã Xuân Trạch, Xã Phúc Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.627\",\"properties\":{\"matinhxa\":\"19.629\",\"maxa\":629},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phú Trạch (xã)",
- "truocsn": "Xã Quảng Đông, Xã Quảng Phú, Xã Quảng Kim, Xã Quảng Hợp",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.614\",\"properties\":{\"matinhxa\":\"19.616\",\"maxa\":616},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Quảng Ninh (xã)",
- "truocsn": "Thị trấn Quán Hàu, Xã Vĩnh Ninh, Xã Võ Ninh, Xã Hàm Ninh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.628\",\"properties\":{\"matinhxa\":\"19.630\",\"maxa\":630},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Quảng Trạch (xã)",
- "truocsn": "Xã Quảng Phương, Xã Quảng Xuân, Xã Quảng Hưng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.617\",\"properties\":{\"matinhxa\":\"19.619\",\"maxa\":619},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Quảng Trị (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3 (thị xã Quảng Trị), Phường An Đôn, Xã Hải Lệ",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.588\",\"properties\":{\"matinhxa\":\"19.590\",\"maxa\":590},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Sen Ngư (xã)",
- "truocsn": "Xã Hưng Thủy, Xã Sen Thủy, Xã Ngư Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.638\",\"properties\":{\"matinhxa\":\"19.640\",\"maxa\":640},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Tà Rụt (xã)",
- "truocsn": "Xã A Vao, Xã Húc Nghì, Xã Tà Rụt",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.590\",\"properties\":{\"matinhxa\":\"19.592\",\"maxa\":592},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Tân Gianh (xã)",
- "truocsn": "Xã Phù Cảnh, Xã Liên Trường, Xã Quảng Thanh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.611\",\"properties\":{\"matinhxa\":\"19.613\",\"maxa\":613},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Tân Lập (xã)",
- "truocsn": "Xã Tân Liên, Xã Hướng Lộc, Xã Tân Lập",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.591\",\"properties\":{\"matinhxa\":\"19.593\",\"maxa\":593},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Tân Mỹ (xã)",
- "truocsn": "Xã Tân Thủy, Xã Dương Thủy, Xã Mỹ Thủy, Xã Thái Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.636\",\"properties\":{\"matinhxa\":\"19.638\",\"maxa\":638},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Tân Thành (xã)",
- "truocsn": "xã Tân Thành (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.603\",\"properties\":{\"matinhxa\":\"19.605\",\"maxa\":605},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Thượng Trạch (xã)",
- "truocsn": "Xã Tân Trạch, Xã Thượng Trạch",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.625\",\"properties\":{\"matinhxa\":\"19.627\",\"maxa\":627},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Triệu Bình (xã)",
- "truocsn": "Xã Triệu Độ, Xã Triệu Thuận, Xã Triệu Hòa, Xã Triệu Đại",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.572\",\"properties\":{\"matinhxa\":\"19.574\",\"maxa\":574},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Triệu Cơ (xã)",
- "truocsn": "Xã Triệu Trung, Xã Triệu Tài, Xã Triệu Cơ",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.587\",\"properties\":{\"matinhxa\":\"19.589\",\"maxa\":589},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Triệu Phong (xã)",
- "truocsn": "Thị trấn Ái Tử, Xã Triệu Thành, Xã Triệu Thượng",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.589\",\"properties\":{\"matinhxa\":\"19.591\",\"maxa\":591},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Trung Thuần (xã)",
- "truocsn": "Xã Quảng Lưu, Xã Quảng Thạch, Xã Quảng Tiến",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.616\",\"properties\":{\"matinhxa\":\"19.618\",\"maxa\":618},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Trường Ninh (xã)",
- "truocsn": "Xã Vạn Ninh, Xã An Ninh, Xã Xuân Ninh, Xã Hiền Ninh",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.631\",\"properties\":{\"matinhxa\":\"19.633\",\"maxa\":633},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Trường Phú (xã)",
- "truocsn": "Xã Trường Thủy, Xã Mai Thủy, Xã Phú Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.637\",\"properties\":{\"matinhxa\":\"19.639\",\"maxa\":639},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Trường Sơn (xã)",
- "truocsn": "Xã Trường Xuân, Xã Trường Sơn",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.629\",\"properties\":{\"matinhxa\":\"19.631\",\"maxa\":631},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tuyên Bình (xã)",
- "truocsn": "Xã Phong Hóa, Xã Ngư Hóa, Xã Mai Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.610\",\"properties\":{\"matinhxa\":\"19.612\",\"maxa\":612},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tuyên Hóa (xã)",
- "truocsn": "Xã Tiến Hóa, Xã Châu Hóa, Xã Cao Quảng, Xã Văn Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.612\",\"properties\":{\"matinhxa\":\"19.614\",\"maxa\":614},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tuyên Lâm (xã)",
- "truocsn": "Xã Lâm Hóa, Xã Thanh Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.608\",\"properties\":{\"matinhxa\":\"19.610\",\"maxa\":610},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tuyên Phú (xã)",
- "truocsn": "Xã Đồng Hóa, Xã Thạch Hóa, Xã Đức Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.609\",\"properties\":{\"matinhxa\":\"19.611\",\"maxa\":611},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tuyên Sơn (xã)",
- "truocsn": "Xã Thanh Thạch, Xã Hương Hóa",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.607\",\"properties\":{\"matinhxa\":\"19.609\",\"maxa\":609},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Vĩnh Định (xã)",
- "truocsn": "Xã Hải Quy, Xã Hải Hưng, Xã Hải Bình",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.581\",\"properties\":{\"matinhxa\":\"19.583\",\"maxa\":583},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Vĩnh Hoàng (xã)",
- "truocsn": "Xã Vĩnh Thái, Xã Trung Nam, Xã Vĩnh Hòa, Xã Vĩnh Tú",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.563\",\"properties\":{\"matinhxa\":\"19.565\",\"maxa\":565},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Vĩnh Linh (xã)",
- "truocsn": "Thị trấn Hồ Xá, Xã Vĩnh Long, Xã Vĩnh Chấp",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.562\",\"properties\":{\"matinhxa\":\"19.564\",\"maxa\":564},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Vĩnh Thủy (xã)",
- "truocsn": "Xã Vĩnh Lâm, Xã Vĩnh Sơn, Xã Vĩnh Thủy",
- "provinceName": "tỉnh Quảng Trị",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.565\",\"properties\":{\"matinhxa\":\"19.567\",\"maxa\":567},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "A Lưới 1 (xã)",
- "truocsn": "Xã Hồng Thủy, Xã Hồng Vân, Xã Trung Sơn, Xã Hồng Kim",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1715\",\"properties\":{\"matinhxa\":\"20.1729\",\"maxa\":1729},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "A Lưới 2 (xã)",
- "truocsn": "Thị trấn A Lưới, Xã Hồng Bắc, Xã Quảng Nhâm, Xã A Ngo",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1714\",\"properties\":{\"matinhxa\":\"20.1728\",\"maxa\":1728},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "A Lưới 3 (xã)",
- "truocsn": "Xã Sơn Thủy, Xã Hồng Thượng, Xã Phú Vinh, Xã Hồng Thái",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1717\",\"properties\":{\"matinhxa\":\"20.1731\",\"maxa\":1731},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "A Lưới 4 (xã)",
- "truocsn": "Xã Hương Phong, Xã A Roàng, Xã Đông Sơn, Xã Lâm Đớt",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1718\",\"properties\":{\"matinhxa\":\"20.1732\",\"maxa\":1732},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "A Lưới 5 (xã)",
- "truocsn": "Xã Hương Nguyên, Xã Hồng Hạ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1716\",\"properties\":{\"matinhxa\":\"20.1730\",\"maxa\":1730},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Cựu (phường)",
- "truocsn": "Phường An Đông, Phường An Tây, Phường An Cựu",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1692\",\"properties\":{\"matinhxa\":\"20.1706\",\"maxa\":1706},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Điền (xã)",
- "truocsn": "Xã Hương Bình, Xã Bình Thành, Xã Bình Tiến",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1712\",\"properties\":{\"matinhxa\":\"20.1726\",\"maxa\":1726},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Chân Mây - Lăng Cô (xã)",
- "truocsn": "Thị trấn Lăng Cô, Xã Lộc Tiến, Xã Lộc Vĩnh, Xã Lộc Thủy",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1720\",\"properties\":{\"matinhxa\":\"20.1734\",\"maxa\":1734},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Đan Điền (xã)",
- "truocsn": "Xã Quảng Thái, Xã Quảng Lợi, Xã Quảng Vinh, Xã Quảng Phú",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1699\",\"properties\":{\"matinhxa\":\"20.1713\",\"maxa\":1713},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Dương Nỗ (phường)",
- "truocsn": "phường Dương Nỗ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1703\",\"properties\":{\"matinhxa\":\"20.1717\",\"maxa\":1717},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Hóa Châu (phường)",
- "truocsn": "Phường Hương Phong, Phường Hương Vinh, Xã Quảng Thành",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1700\",\"properties\":{\"matinhxa\":\"20.1714\",\"maxa\":1714},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Hưng Lộc (xã)",
- "truocsn": "Thị trấn Lộc Sơn, Xã Lộc Bổn, Xã Xuân Lộc",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1723\",\"properties\":{\"matinhxa\":\"20.1737\",\"maxa\":1737},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Hương An (phường)",
- "truocsn": "Phường An Hòa, Phường Hương Sơ, Phường Hương An",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1693\",\"properties\":{\"matinhxa\":\"20.1707\",\"maxa\":1707},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Hương Thủy (phường)",
- "truocsn": "Phường Thủy Lương, Phường Thủy Châu, Xã Thủy Tân",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1709\",\"properties\":{\"matinhxa\":\"20.1723\",\"maxa\":1723},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Hương Trà (phường)",
- "truocsn": "Phường Tứ Hạ, Phường Hương Văn, Phường Hương Vân",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1711\",\"properties\":{\"matinhxa\":\"20.1725\",\"maxa\":1725},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Khe Tre (xã)",
- "truocsn": "Thị trấn Khe Tre, Xã Hương Phú, Xã Hương Lộc, Xã Thượng Lộ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1724\",\"properties\":{\"matinhxa\":\"20.1738\",\"maxa\":1738},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Kim Long (phường)",
- "truocsn": "Phường Long Hồ, Phường Hương Long, Phường Kim Long",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1713\",\"properties\":{\"matinhxa\":\"20.1727\",\"maxa\":1727},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Kim Trà (phường)",
- "truocsn": "Phường Hương Xuân, Phường Hương Chữ, Xã Hương Toàn",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1710\",\"properties\":{\"matinhxa\":\"20.1724\",\"maxa\":1724},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Lộc An (xã)",
- "truocsn": "Xã Lộc Hòa, Xã Lộc Điền, Xã Lộc An",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1722\",\"properties\":{\"matinhxa\":\"20.1736\",\"maxa\":1736},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Long Quảng (xã)",
- "truocsn": "Xã Thượng Quảng, Xã Thượng Long, Xã Hương Hữu",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1726\",\"properties\":{\"matinhxa\":\"20.1740\",\"maxa\":1740},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Mỹ Thượng (phường)",
- "truocsn": "Phường Phú Thượng, Xã Phú An, Xã Phú Mỹ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1704\",\"properties\":{\"matinhxa\":\"20.1718\",\"maxa\":1718},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Nam Đông (xã)",
- "truocsn": "Xã Hương Xuân, Xã Thượng Nhật, Xã Hương Sơn",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1725\",\"properties\":{\"matinhxa\":\"20.1739\",\"maxa\":1739},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Phong Điền (phường)",
- "truocsn": "Phường Phong Thu, Xã Phong Mỹ, Xã Phong Xuân",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1698\",\"properties\":{\"matinhxa\":\"20.1712\",\"maxa\":1712},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Phong Dinh (phường)",
- "truocsn": "Phường Phong Hòa, Xã Phong Bình, Xã Phong Chương",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1697\",\"properties\":{\"matinhxa\":\"20.1711\",\"maxa\":1711},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Phong Phú (phường)",
- "truocsn": "Phường Phong Phú, Xã Phong Thạnh",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1696\",\"properties\":{\"matinhxa\":\"20.1710\",\"maxa\":1710},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Phong Quảng (phường)",
- "truocsn": "Phường Phong Hải, Xã Quảng Công, Xã Quảng Ngạn",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1737\",\"properties\":{\"matinhxa\":\"20.1751\",\"maxa\":1751},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Phong Thái (phường)",
- "truocsn": "Phường Phong An, Phường Phong Hiền, Xã Phong Sơn",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1727\",\"properties\":{\"matinhxa\":\"20.1741\",\"maxa\":1741},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Phú Bài (phường)",
- "truocsn": "Phường Phú Bài, Xã Thủy Phù, Xã Phú Sơn, Xã Dương Hòa",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1708\",\"properties\":{\"matinhxa\":\"20.1722\",\"maxa\":1722},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Phú Hồ (xã)",
- "truocsn": "Xã Phú Xuân, Xã Phú Lương, Xã Phú Hồ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1706\",\"properties\":{\"matinhxa\":\"20.1720\",\"maxa\":1720},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Phú Lộc (xã)",
- "truocsn": "Thị trấn Phú Lộc, Xã Lộc Trì, Xã Lộc Bình",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1719\",\"properties\":{\"matinhxa\":\"20.1733\",\"maxa\":1733},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Phú Vang (xã)",
- "truocsn": "Thị trấn Phú Đa, Xã Phú Gia, Xã Vinh Hà",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1707\",\"properties\":{\"matinhxa\":\"20.1721\",\"maxa\":1721},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Phú Vinh (xã)",
- "truocsn": "Xã Phú Diên, Xã Vinh Xuân, Xã Vinh An, Xã Vinh Thanh",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1705\",\"properties\":{\"matinhxa\":\"20.1719\",\"maxa\":1719},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Phú Xuân (phường)",
- "truocsn": "Phường Gia Hội, Phường Phú Hậu, Phường Tây Lộc, Phường Thuận Lộc, Phường Thuận Hòa, Phường Đông Ba",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1689\",\"properties\":{\"matinhxa\":\"20.1703\",\"maxa\":1703},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Quảng Điền (xã)",
- "truocsn": "Thị trấn Sịa, Xã Quảng Phước, Xã Quảng An, Xã Quảng Thọ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1701\",\"properties\":{\"matinhxa\":\"20.1715\",\"maxa\":1715},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Thanh Thủy (phường)",
- "truocsn": "Phường Thủy Dương, Phường Thủy Phương, Xã Thủy Thanh",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1695\",\"properties\":{\"matinhxa\":\"20.1709\",\"maxa\":1709},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Thuận An (phường)",
- "truocsn": "Phường Thuận An, Xã Phú Hải, Xã Phú Thuận",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1702\",\"properties\":{\"matinhxa\":\"20.1716\",\"maxa\":1716},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Thuận Hóa (phường)",
- "truocsn": "Phường Phú Hội, Phường Phú Nhuận, Phường Đúc, Phường Vĩnh Ninh, Phường Phước Vĩnh, Phường Trường An",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1691\",\"properties\":{\"matinhxa\":\"20.1705\",\"maxa\":1705},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Thủy Xuân (phường)",
- "truocsn": "Phường Thủy Biều, Phường Thủy Bằng, Phường Thủy Xuân",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1694\",\"properties\":{\"matinhxa\":\"20.1708\",\"maxa\":1708},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Vinh Lộc (xã)",
- "truocsn": "Xã Vinh Hưng, Xã Vinh Mỹ, Xã Giang Hải, Xã Vinh Hiền",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1721\",\"properties\":{\"matinhxa\":\"20.1735\",\"maxa\":1735},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Vỹ Dạ (phường)",
- "truocsn": "Phường Thủy Vân, Phường Xuân Phú, Phường Vỹ Dạ",
- "provinceName": "thành phố Huế",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1690\",\"properties\":{\"matinhxa\":\"20.1704\",\"maxa\":1704},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Hải (phường)",
- "truocsn": "Phường Phước Mỹ, Phường An Hải Bắc, Phường An Hải Nam",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1949\",\"properties\":{\"matinhxa\":\"21.1963\",\"maxa\":1963},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Khê (phường)",
- "truocsn": "Phường Hòa An, Phường Hòa Phát, Phường An Khê",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1931\",\"properties\":{\"matinhxa\":\"21.1945\",\"maxa\":1945},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Thắng (phường)",
- "truocsn": "Phường Điện An, Phường Điện Thắng Nam, Phường Điện Thắng Trung",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1968\",\"properties\":{\"matinhxa\":\"21.1982\",\"maxa\":1982},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Avương (xã)",
- "truocsn": "Xã Bhalêê, Xã Avương",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1962\",\"properties\":{\"matinhxa\":\"21.1976\",\"maxa\":1976},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bà Nà (xã)",
- "truocsn": "Xã Hòa Ninh, Xã Hòa Nhơn",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1953\",\"properties\":{\"matinhxa\":\"21.1967\",\"maxa\":1967},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bàn Thạch (phường)",
- "truocsn": "Phường Tân Thạnh, Phường Hòa Thuận, Xã Tam Thăng",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1921\",\"properties\":{\"matinhxa\":\"21.1935\",\"maxa\":1935},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bến Giằng (xã)",
- "truocsn": "Xã Cà Dy, Xã Tà Bhing, Xã Tà Pơơ",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1979\",\"properties\":{\"matinhxa\":\"21.1993\",\"maxa\":1993},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bến Hiên (xã)",
- "truocsn": "Xã Kà Dăng, Xã Mà Cooih",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1912\",\"properties\":{\"matinhxa\":\"21.1926\",\"maxa\":1926},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cẩm Lệ (phường)",
- "truocsn": "Phường Hòa Thọ Tây, Phường Hòa Thọ Đông, Phường Khuê Trung",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1907\",\"properties\":{\"matinhxa\":\"21.1921\",\"maxa\":1921},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Chiên Đàn (xã)",
- "truocsn": "Thị trấn Phú Thịnh, Xã Tam Đàn, Xã Tam Thái",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1923\",\"properties\":{\"matinhxa\":\"21.1937\",\"maxa\":1937},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đắc Pring (xã)",
- "truocsn": "Xã Đắc Pre, Xã Đắc Pring",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1960\",\"properties\":{\"matinhxa\":\"21.1974\",\"maxa\":1974},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đại Lộc (xã)",
- "truocsn": "Thị trấn Ái Nghĩa, Xã Đại Hiệp, Xã Đại Hòa, Xã Đại An, Xã Đại Nghĩa",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1970\",\"properties\":{\"matinhxa\":\"21.1984\",\"maxa\":1984},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Điện Bàn (phường)",
- "truocsn": "Phường Điện Phương, Phường Điện Minh, Phường Vĩnh Điện",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1977\",\"properties\":{\"matinhxa\":\"21.1991\",\"maxa\":1991},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Điện Bàn Bắc (phường)",
- "truocsn": "Phường Điện Thắng Bắc, Xã Điện Hòa, Xã Điện Tiến",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1975\",\"properties\":{\"matinhxa\":\"21.1989\",\"maxa\":1989},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Điện Bàn Đông (phường)",
- "truocsn": "Phường Điện Nam Đông, Phường Điện Nam Trung, Phường Điện Dương, Phường Điện Ngọc, Phường Điện Nam Bắc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1978\",\"properties\":{\"matinhxa\":\"21.1992\",\"maxa\":1992},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Điện Bàn Tây (xã)",
- "truocsn": "Xã Điện Hồng, Xã Điện Thọ, Xã Điện Phước",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1969\",\"properties\":{\"matinhxa\":\"21.1983\",\"maxa\":1983},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đồng Dương (xã)",
- "truocsn": "Xã Bình Lãnh, Xã Bình Trị, Xã Bình Định",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1937\",\"properties\":{\"matinhxa\":\"21.1951\",\"maxa\":1951},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đông Giang (xã)",
- "truocsn": "Thị trấn Prao, Xã Tà Lu, Xã A Rooi, Xã Zà Hung",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1963\",\"properties\":{\"matinhxa\":\"21.1977\",\"maxa\":1977},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đức Phú (xã)",
- "truocsn": "Xã Tam Sơn, Xã Tam Thạnh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1945\",\"properties\":{\"matinhxa\":\"21.1959\",\"maxa\":1959},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Duy Nghĩa (xã)",
- "truocsn": "Xã Duy Thành, Xã Duy Hải, Xã Duy Nghĩa",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1916\",\"properties\":{\"matinhxa\":\"21.1930\",\"maxa\":1930},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Duy Xuyên (xã)",
- "truocsn": "Xã Duy Trung, Xã Duy Sơn, Xã Duy Trinh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1966\",\"properties\":{\"matinhxa\":\"21.1980\",\"maxa\":1980},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Gò Nổi (xã)",
- "truocsn": "Xã Điện Phong, Xã Điện Trung, Xã Điện Quang",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1967\",\"properties\":{\"matinhxa\":\"21.1981\",\"maxa\":1981},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hà Nha (xã)",
- "truocsn": "Xã Đại Đồng, Xã Đại Hồng, Xã Đại Quang",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1911\",\"properties\":{\"matinhxa\":\"21.1925\",\"maxa\":1925},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Hải Châu (phường)",
- "truocsn": "Phường Thanh Bình, Phường Thuận Phước, Phường Thạch Thang, Phường Phước Ninh, Phường Hải Châu",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1935\",\"properties\":{\"matinhxa\":\"21.1949\",\"maxa\":1949},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hải Vân (phường)",
- "truocsn": "Phường Hòa Hiệp Bắc, Phường Hòa Hiệp Nam, Xã Hòa Bắc, Xã Hòa Liên",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1952\",\"properties\":{\"matinhxa\":\"21.1966\",\"maxa\":1966},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hiệp Đức (xã)",
- "truocsn": "Thị trấn Tân Bình, Xã Quế Tân, Xã Quế Lưu",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1934\",\"properties\":{\"matinhxa\":\"21.1948\",\"maxa\":1948},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hòa Cường (phường)",
- "truocsn": "Phường Bình Thuận, Phường Hòa Thuận Tây, Phường Hòa Cường Bắc, Phường Hòa Cường Nam",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1928\",\"properties\":{\"matinhxa\":\"21.1942\",\"maxa\":1942},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hòa Khánh (phường)",
- "truocsn": "Phường Hòa Khánh Nam, Phường Hòa Minh, Xã Hòa Sơn",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1932\",\"properties\":{\"matinhxa\":\"21.1946\",\"maxa\":1946},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hòa Tiến (xã)",
- "truocsn": "Xã Hòa Khương, Xã Hòa Tiến",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1954\",\"properties\":{\"matinhxa\":\"21.1968\",\"maxa\":1968},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hòa Vang (xã)",
- "truocsn": "Xã Hòa Phong, Xã Hòa Phú",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1905\",\"properties\":{\"matinhxa\":\"21.1919\",\"maxa\":1919},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hòa Xuân (phường)",
- "truocsn": "Phường Hòa Xuân, Xã Hòa Châu, Xã Hòa Phước",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1908\",\"properties\":{\"matinhxa\":\"21.1922\",\"maxa\":1922},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hoàng Sa (đặc khu)",
- "truocsn": "Huyện Hoàng Sa",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3306\",\"properties\":{\"matinhxa\":\"21.3322\",\"maxa\":3322},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hội An (phường)",
- "truocsn": "Phường Minh An, Phường Cẩm Phô, Phường Sơn Phong, Phường Cẩm Nam, Xã Cẩm Kim",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1964\",\"properties\":{\"matinhxa\":\"21.1978\",\"maxa\":1978},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hội An Đông (phường)",
- "truocsn": "Phường Cẩm Châu, Phường Cửa Đại, Xã Cẩm Thanh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1976\",\"properties\":{\"matinhxa\":\"21.1990\",\"maxa\":1990},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hội An Tây (phường)",
- "truocsn": "Phường Thanh Hà, Phường Tân An, Phường Cẩm An, Xã Cẩm Hà",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1974\",\"properties\":{\"matinhxa\":\"21.1988\",\"maxa\":1988},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hùng Sơn (xã)",
- "truocsn": "Xã Ch’ơm, Xã Gari, Xã Tr’hy, Xã Axan",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1957\",\"properties\":{\"matinhxa\":\"21.1971\",\"maxa\":1971},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hương Trà (phường)",
- "truocsn": "Phường An Sơn, Phường Hòa Hương, Xã Tam Ngọc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1988\",\"properties\":{\"matinhxa\":\"21.2002\",\"maxa\":2002},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Khâm Đức (xã)",
- "truocsn": "Thị trấn Khâm Đức, Xã Phước Xuân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1981\",\"properties\":{\"matinhxa\":\"21.1995\",\"maxa\":1995},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "La Dêê (xã)",
- "truocsn": "Xã Đắc Tôi, Xã La Dêê",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1958\",\"properties\":{\"matinhxa\":\"21.1972\",\"maxa\":1972},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "La Êê (xã)",
- "truocsn": "Xã Chơ Chun, Xã La Êê",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1956\",\"properties\":{\"matinhxa\":\"21.1970\",\"maxa\":1970},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lãnh Ngọc (xã)",
- "truocsn": "Xã Tiên Lãnh, Xã Tiên Ngọc, Xã Tiên Hiệp",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1947\",\"properties\":{\"matinhxa\":\"21.1961\",\"maxa\":1961},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Liên Chiểu (phường)",
- "truocsn": "Phường Hòa Khánh Bắc, Xã Hòa Liên (phần còn lại sau khi sáp nhập vào phường Hải Vân)",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1951\",\"properties\":{\"matinhxa\":\"21.1965\",\"maxa\":1965},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Nam Giang (xã)",
- "truocsn": "Xã Zuôih, Xã Chà Vàl",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1959\",\"properties\":{\"matinhxa\":\"21.1973\",\"maxa\":1973},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Nam Phước (xã)",
- "truocsn": "Thị trấn Nam Phước, Xã Duy Phước, Xã Duy Vinh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1919\",\"properties\":{\"matinhxa\":\"21.1933\",\"maxa\":1933},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Nam Trà My (xã)",
- "truocsn": "Xã Trà Mai, Xã Trà Don",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1925\",\"properties\":{\"matinhxa\":\"21.1939\",\"maxa\":1939},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Ngũ Hành Sơn (phường)",
- "truocsn": "Phường Mỹ An, Phường Khuê Mỹ, Phường Hòa Hải, Phường Hòa Quý",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1906\",\"properties\":{\"matinhxa\":\"21.1920\",\"maxa\":1920},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nông Sơn (xã)",
- "truocsn": "Thị trấn Trung Phước, Xã Quế Lộc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1972\",\"properties\":{\"matinhxa\":\"21.1986\",\"maxa\":1986},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Núi Thành (xã)",
- "truocsn": "Thị trấn Núi Thành, Xã Tam Quang, Xã Tam Nghĩa, Xã Tam Hiệp, Xã Tam Giang",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1984\",\"properties\":{\"matinhxa\":\"21.1998\",\"maxa\":1998},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Phú Ninh (xã)",
- "truocsn": "Xã Tam Dân, Xã Tam Đại, Xã Tam Lãnh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1942\",\"properties\":{\"matinhxa\":\"21.1956\",\"maxa\":1956},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Phú Thuận (xã)",
- "truocsn": "Xã Đại Tân, Xã Đại Thắng, Xã Đại Chánh, Xã Đại Thạnh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1973\",\"properties\":{\"matinhxa\":\"21.1987\",\"maxa\":1987},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phước Chánh (xã)",
- "truocsn": "Xã Phước Công, Xã Phước Chánh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1995\",\"properties\":{\"matinhxa\":\"21.2009\",\"maxa\":2009},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phước Hiệp (xã)",
- "truocsn": "Xã Phước Hòa, Xã Phước Hiệp",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1929\",\"properties\":{\"matinhxa\":\"21.1943\",\"maxa\":1943},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phước Năng (xã)",
- "truocsn": "Xã Phước Đức, Xã Phước Mỹ, Xã Phước Năng",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1994\",\"properties\":{\"matinhxa\":\"21.2008\",\"maxa\":2008},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phước Thành (xã)",
- "truocsn": "Xã Phước Lộc, Xã Phước Kim, Xã Phước Thành",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1993\",\"properties\":{\"matinhxa\":\"21.2007\",\"maxa\":2007},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phước Trà (xã)",
- "truocsn": "Xã Sông Trà, Xã Phước Gia, Xã Phước Trà",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1930\",\"properties\":{\"matinhxa\":\"21.1944\",\"maxa\":1944},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Quảng Phú (phường)",
- "truocsn": "Phường An Phú, Xã Tam Thanh, Xã Tam Phú",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1922\",\"properties\":{\"matinhxa\":\"21.1936\",\"maxa\":1936},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Quế Phước (xã)",
- "truocsn": "Xã Quế Lâm, Xã Phước Ninh, Xã Ninh Phước",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1980\",\"properties\":{\"matinhxa\":\"21.1994\",\"maxa\":1994},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Quế Sơn (xã)",
- "truocsn": "Thị trấn Đông Phú, Xã Quế Minh, Xã Quế An, Xã Quế Long, Xã Quế Phong",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1936\",\"properties\":{\"matinhxa\":\"21.1950\",\"maxa\":1950},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Quế Sơn Trung (xã)",
- "truocsn": "Xã Quế Mỹ, Xã Quế Hiệp, Xã Quế Thuận, Xã Quế Châu",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1917\",\"properties\":{\"matinhxa\":\"21.1931\",\"maxa\":1931},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Sơn Cẩm Hà (xã)",
- "truocsn": "Xã Tiên Sơn, Xã Tiên Hà, Xã Tiên Châu",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1938\",\"properties\":{\"matinhxa\":\"21.1952\",\"maxa\":1952},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Sơn Trà (phường)",
- "truocsn": "Phường Thọ Quang, Phường Nại Hiên Đông, Phường Mân Thái",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1950\",\"properties\":{\"matinhxa\":\"21.1964\",\"maxa\":1964},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Sông Kôn (xã)",
- "truocsn": "Xã A Ting, Xã Jơ Ngây, Xã Sông Kôn",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1961\",\"properties\":{\"matinhxa\":\"21.1975\",\"maxa\":1975},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Sông Vàng (xã)",
- "truocsn": "Xã Tư, Xã Ba",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1909\",\"properties\":{\"matinhxa\":\"21.1923\",\"maxa\":1923},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tam Anh (xã)",
- "truocsn": "Xã Tam Hòa, Xã Tam Anh Bắc, Xã Tam Anh Nam",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1986\",\"properties\":{\"matinhxa\":\"21.2000\",\"maxa\":2000},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tam Hải (xã)",
- "truocsn": "xã Tam Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1985\",\"properties\":{\"matinhxa\":\"21.1999\",\"maxa\":1999},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tam Kỳ (phường)",
- "truocsn": "Phường An Mỹ, Phường An Xuân, Phường Trường Xuân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1983\",\"properties\":{\"matinhxa\":\"21.1997\",\"maxa\":1997},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tam Mỹ (xã)",
- "truocsn": "Xã Tam Mỹ Đông, Xã Tam Mỹ Tây, Xã Tam Trà",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1944\",\"properties\":{\"matinhxa\":\"21.1958\",\"maxa\":1958},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tam Xuân (xã)",
- "truocsn": "Xã Tam Xuân I, Xã Tam Xuân II, Xã Tam Tiến",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1987\",\"properties\":{\"matinhxa\":\"21.2001\",\"maxa\":2001},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Hiệp (xã)",
- "truocsn": "xã Tân Hiệp (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3307\",\"properties\":{\"matinhxa\":\"21.3323\",\"maxa\":3323},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tây Giang (xã)",
- "truocsn": "Xã Atiêng, Xã Dang, Xã Anông, Xã Lăng",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1955\",\"properties\":{\"matinhxa\":\"21.1969\",\"maxa\":1969},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tây Hồ (xã)",
- "truocsn": "Xã Tam An, Xã Tam Thành, Xã Tam Phước, Xã Tam Lộc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1940\",\"properties\":{\"matinhxa\":\"21.1954\",\"maxa\":1954},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Thăng An (xã)",
- "truocsn": "Xã Bình Triều, Xã Bình Giang, Xã Bình Đào, Xã Bình Minh, Xã Bình Dương",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1915\",\"properties\":{\"matinhxa\":\"21.1929\",\"maxa\":1929},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Thăng Bình (xã)",
- "truocsn": "Thị trấn Hà Lam, Xã Bình Nguyên, Xã Bình Quý, Xã Bình Phục",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1914\",\"properties\":{\"matinhxa\":\"21.1928\",\"maxa\":1928},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Thăng Điền (xã)",
- "truocsn": "Xã Bình An, Xã Bình Trung, Xã Bình Tú",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1920\",\"properties\":{\"matinhxa\":\"21.1934\",\"maxa\":1934},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thăng Phú (xã)",
- "truocsn": "Xã Bình Phú, Xã Bình Quế",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1941\",\"properties\":{\"matinhxa\":\"21.1955\",\"maxa\":1955},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Thăng Trường (xã)",
- "truocsn": "Xã Bình Nam, Xã Bình Hải, Xã Bình Sa",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1989\",\"properties\":{\"matinhxa\":\"21.2003\",\"maxa\":2003},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thạnh Bình (xã)",
- "truocsn": "Xã Tiên Lập, Xã Tiên Lộc, Xã Tiên An, Xã Tiên Cảnh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1948\",\"properties\":{\"matinhxa\":\"21.1962\",\"maxa\":1962},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thanh Khê (phường)",
- "truocsn": "Phường Xuân Hà, Phường Chính Gián, Phường Thạc Gián, Phường Thanh Khê Tây, Phường Thanh Khê Đông",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1933\",\"properties\":{\"matinhxa\":\"21.1947\",\"maxa\":1947},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thạnh Mỹ (xã)",
- "truocsn": "Thị trấn Thạnh Mỹ",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1913\",\"properties\":{\"matinhxa\":\"21.1927\",\"maxa\":1927},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thu Bồn (xã)",
- "truocsn": "Xã Duy Châu, Xã Duy Hoà, Xã Duy Phú, Xã Duy Tân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1965\",\"properties\":{\"matinhxa\":\"21.1979\",\"maxa\":1979},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thượng Đức (xã)",
- "truocsn": "Xã Đại Lãnh, Xã Đại Hưng, Xã Đại Sơn",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1910\",\"properties\":{\"matinhxa\":\"21.1924\",\"maxa\":1924},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tiên Phước (xã)",
- "truocsn": "Thị trấn Tiên Kỳ, Xã Tiên Mỹ, Xã Tiên Phong, Xã Tiên Thọ",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1939\",\"properties\":{\"matinhxa\":\"21.1953\",\"maxa\":1953},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trà Đốc (xã)",
- "truocsn": "Xã Trà Bui, Xã Trà Đốc",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1982\",\"properties\":{\"matinhxa\":\"21.1996\",\"maxa\":1996},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Trà Giáp (xã)",
- "truocsn": "Xã Trà Ka, Xã Trà Giáp",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1990\",\"properties\":{\"matinhxa\":\"21.2004\",\"maxa\":2004},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Trà Leng (xã)",
- "truocsn": "Xã Trà Dơn, Xã Trà Leng",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1992\",\"properties\":{\"matinhxa\":\"21.2006\",\"maxa\":2006},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Trà Liên (xã)",
- "truocsn": "Xã Trà Đông, Xã Trà Nú, Xã Trà Kót",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1943\",\"properties\":{\"matinhxa\":\"21.1957\",\"maxa\":1957},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Trà Linh (xã)",
- "truocsn": "Xã Trà Nam, Xã Trà Linh",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1927\",\"properties\":{\"matinhxa\":\"21.1941\",\"maxa\":1941},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Trà My (xã)",
- "truocsn": "Thị trấn Trà My, Xã Trà Sơn, Xã Trà Giang, Xã Trà Dương",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1946\",\"properties\":{\"matinhxa\":\"21.1960\",\"maxa\":1960},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Trà Tân (xã)",
- "truocsn": "Xã Trà Giác, Xã Trà Tân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1991\",\"properties\":{\"matinhxa\":\"21.2005\",\"maxa\":2005},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Trà Tập (xã)",
- "truocsn": "Xã Trà Cang, Xã Trà Tập",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1926\",\"properties\":{\"matinhxa\":\"21.1940\",\"maxa\":1940},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Trà Vân (xã)",
- "truocsn": "Xã Trà Vinh, Xã Trà Vân",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1924\",\"properties\":{\"matinhxa\":\"21.1938\",\"maxa\":1938},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Việt An (xã)",
- "truocsn": "Xã Thăng Phước, Xã Bình Sơn, Xã Quế Thọ, Xã Bình Lâm",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1996\",\"properties\":{\"matinhxa\":\"21.2010\",\"maxa\":2010},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vu Gia (xã)",
- "truocsn": "Xã Đại Phong, Xã Đại Minh, Xã Đại Cường",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1971\",\"properties\":{\"matinhxa\":\"21.1985\",\"maxa\":1985},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Xuân Phú (xã)",
- "truocsn": "Thị trấn Hương An, Xã Quế Xuân 1, Xã Quế Xuân 2, Xã Quế Phú",
- "provinceName": "thành phố Đà Nẵng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1918\",\"properties\":{\"matinhxa\":\"21.1932\",\"maxa\":1932},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Phú (xã)",
- "truocsn": "Xã Nghĩa Hà, Xã Nghĩa Dõng, Xã Nghĩa Dũng, Xã An Phú",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1795\",\"properties\":{\"matinhxa\":\"22.1809\",\"maxa\":1809},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Dinh (xã)",
- "truocsn": "Xã Ba Giang, Xã Ba Dinh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1780\",\"properties\":{\"matinhxa\":\"22.1794\",\"maxa\":1794},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ba Động (xã)",
- "truocsn": "Xã Ba Liên, Xã Ba Thành, Xã Ba Động",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1779\",\"properties\":{\"matinhxa\":\"22.1793\",\"maxa\":1793},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Ba Gia (xã)",
- "truocsn": "Xã Tịnh Bắc, Xã Tịnh Hiệp, Xã Tịnh Trà",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1749\",\"properties\":{\"matinhxa\":\"22.1763\",\"maxa\":1763},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Ba Tô (xã)",
- "truocsn": "Xã Ba Lế, Xã Ba Nam, Xã Ba Tô",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1784\",\"properties\":{\"matinhxa\":\"22.1798\",\"maxa\":1798},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Ba Tơ (xã)",
- "truocsn": "Thị trấn Ba Tơ, Xã Ba Cung, Xã Ba Bích",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1777\",\"properties\":{\"matinhxa\":\"22.1791\",\"maxa\":1791},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Ba Vì (xã)",
- "truocsn": "Xã Ba Tiêu, Xã Ba Ngạc, Xã Ba Vì",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1782\",\"properties\":{\"matinhxa\":\"22.1796\",\"maxa\":1796},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Ba Vinh (xã)",
- "truocsn": "Xã Ba Điền, Xã Ba Vinh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1778\",\"properties\":{\"matinhxa\":\"22.1792\",\"maxa\":1792},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Ba Xa (xã)",
- "truocsn": "xã Ba Xa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1786\",\"properties\":{\"matinhxa\":\"22.1800\",\"maxa\":1800},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Chương (xã)",
- "truocsn": "Xã Bình Mỹ, Xã Bình Chương",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1755\",\"properties\":{\"matinhxa\":\"22.1769\",\"maxa\":1769},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Minh (xã)",
- "truocsn": "Xã Bình Khương, Xã Bình An, Xã Bình Minh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1754\",\"properties\":{\"matinhxa\":\"22.1768\",\"maxa\":1768},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Sơn (xã)",
- "truocsn": "Thị trấn Châu Ổ, Xã Bình Thạnh, Xã Bình Chánh, Xã Bình Dương, Xã Bình Nguyên, Xã Bình Trung, Xã Bình Long",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1739\",\"properties\":{\"matinhxa\":\"22.1753\",\"maxa\":1753},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bờ Y (xã)",
- "truocsn": "Thị trấn Plei Kần, Xã Đăk Xú, Xã Pờ Y",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.453\",\"properties\":{\"matinhxa\":\"22.453\",\"maxa\":453},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cà Đam (xã)",
- "truocsn": "Xã Trà Tân, Xã Trà Bùi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1760\",\"properties\":{\"matinhxa\":\"22.1774\",\"maxa\":1774},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cẩm Thành (phường)",
- "truocsn": "Phường Nguyễn Nghiêm, Phường Trần Hưng Đạo (thành phố Quảng Ngãi), Phường Nghĩa Chánh, Phường Chánh Lộ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1781\",\"properties\":{\"matinhxa\":\"22.1795\",\"maxa\":1795},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đăk Bla (phường)",
- "truocsn": "Phường Trần Hưng Đạo (thành phố Kon Tum), Lê Lợi, Nguyễn Trãi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.552\",\"properties\":{\"matinhxa\":\"22.554\",\"maxa\":554},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đăk Cấm (phường)",
- "truocsn": "Phường Ngô Mây, Phường Duy Tân, Xã Đăk Cấm",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1733\",\"properties\":{\"matinhxa\":\"22.1747\",\"maxa\":1747},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đăk Hà (xã)",
- "truocsn": "Thị trấn Đăk Hà, Xã Hà Mòn, Xã Đăk La",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.557\",\"properties\":{\"matinhxa\":\"22.559\",\"maxa\":559},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đăk Kôi (xã)",
- "truocsn": "Xã Đăk Tơ Lung, Xã Đăk Kôi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1731\",\"properties\":{\"matinhxa\":\"22.1745\",\"maxa\":1745},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đăk Long (xã)",
- "truocsn": "xã Đăk Long (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.444\",\"properties\":{\"matinhxa\":\"22.444\",\"maxa\":444},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đăk Mar (xã)",
- "truocsn": "Xã Đăk Hring, Xã Đăk Mar",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.556\",\"properties\":{\"matinhxa\":\"22.558\",\"maxa\":558},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đăk Môn (xã)",
- "truocsn": "Xã Đăk Kroong, Xã Đăk Môn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.445\",\"properties\":{\"matinhxa\":\"22.445\",\"maxa\":445},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đăk Pék (xã)",
- "truocsn": "Thị trấn Đăk Glei, Xã Đăk Pék",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.560\",\"properties\":{\"matinhxa\":\"22.562\",\"maxa\":562},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đăk Plô (xã)",
- "truocsn": "Xã Đăk Nhoong, Xã Đăk Man, Xã Đăk Plô",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.559\",\"properties\":{\"matinhxa\":\"22.561\",\"maxa\":561},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đăk Pxi (xã)",
- "truocsn": "Xã Đăk Long (thuộc huyện Đăk Hà), Xã Đăk Pxi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.451\",\"properties\":{\"matinhxa\":\"22.451\",\"maxa\":451},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đăk Rơ Wa (xã)",
- "truocsn": "Xã Hòa Bình, Xã Chư Hreng, Xã Đăk Blà, Xã Đăk Rơ Wa",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.555\",\"properties\":{\"matinhxa\":\"22.557\",\"maxa\":557},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đăk Rve (xã)",
- "truocsn": "Thị trấn Đăk Rve, Xã Đăk Pne",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1734\",\"properties\":{\"matinhxa\":\"22.1748\",\"maxa\":1748},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đăk Sao (xã)",
- "truocsn": "Xã Đăk Na, Xã Đăk Sao",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.447\",\"properties\":{\"matinhxa\":\"22.447\",\"maxa\":447},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Đăk Tô (xã)",
- "truocsn": "Thị trấn Đăk Tô, Xã Tân Cảnh, Xã Pô Kô, Xã Diên Bình",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.455\",\"properties\":{\"matinhxa\":\"22.455\",\"maxa\":455},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Đăk Tờ Kan (xã)",
- "truocsn": "Xã Đăk Rơ Ông, Xã Đăk Tờ Kan",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.448\",\"properties\":{\"matinhxa\":\"22.448\",\"maxa\":448},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Đăk Ui (xã)",
- "truocsn": "Xã Đăk Ngọk, Xã Đăk Ui",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.452\",\"properties\":{\"matinhxa\":\"22.452\",\"maxa\":452},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Đặng Thùy Trâm (xã)",
- "truocsn": "Xã Ba Trang, Xã Ba Khâm",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1783\",\"properties\":{\"matinhxa\":\"22.1797\",\"maxa\":1797},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Đình Cương (xã)",
- "truocsn": "Xã Hành Đức, Xã Hành Phước, Xã Hành Thịnh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1765\",\"properties\":{\"matinhxa\":\"22.1779\",\"maxa\":1779},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Đông Sơn (xã)",
- "truocsn": "Xã Bình Hiệp, Xã Bình Thanh, Xã Bình Tân Phú, Xã Bình Châu, Xã Tịnh Hòa",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1796\",\"properties\":{\"matinhxa\":\"22.1810\",\"maxa\":1810},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Đông Trà Bồng (xã)",
- "truocsn": "Xã Trà Bình, Xã Trà Phú, Xã Trà Giang",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1753\",\"properties\":{\"matinhxa\":\"22.1767\",\"maxa\":1767},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Dục Nông (xã)",
- "truocsn": "Xã Đăk Ang, Xã Đăk Dục, Xã Đăk Nông",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.446\",\"properties\":{\"matinhxa\":\"22.446\",\"maxa\":446},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Đức Phổ (phường)",
- "truocsn": "Phường Nguyễn Nghiêm (thị xã Đức Phổ), Phổ Hòa, Phổ Minh, Phổ Vinh, Phổ Ninh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1799\",\"properties\":{\"matinhxa\":\"22.1813\",\"maxa\":1813},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Ia Chim (xã)",
- "truocsn": "Xã Đoàn Kết, Xã Đăk Năng, Xã Ia Chim",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.554\",\"properties\":{\"matinhxa\":\"22.556\",\"maxa\":556},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Ia Đal (xã)",
- "truocsn": "xã Ia Đal (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.474\",\"properties\":{\"matinhxa\":\"22.474\",\"maxa\":474},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Ia Tơi (xã)",
- "truocsn": "Xã Ia Dom, Xã Ia Tơi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.488\",\"properties\":{\"matinhxa\":\"22.488\",\"maxa\":488},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Khánh Cường (xã)",
- "truocsn": "Xã Phổ Khánh, Xã Phổ Cường",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1776\",\"properties\":{\"matinhxa\":\"22.1790\",\"maxa\":1790},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Kon Braih (xã)",
- "truocsn": "Xã Đăk Tờ Re, Xã Đăk Ruồng, Xã Tân Lập",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1735\",\"properties\":{\"matinhxa\":\"22.1749\",\"maxa\":1749},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Kon Đào (xã)",
- "truocsn": "Xã Văn Lem, Xã Đăk Trăm, Xã Kon Đào",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.450\",\"properties\":{\"matinhxa\":\"22.450\",\"maxa\":450},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Kon Plông (xã)",
- "truocsn": "Xã Ngọk Tem, Xã Hiếu, Xã Pờ Ê",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1729\",\"properties\":{\"matinhxa\":\"22.1743\",\"maxa\":1743},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Kon Tum (phường)",
- "truocsn": "Phường Quang Trung, Phường Quyết Thắng, Phường Thắng Lợi, Phường Trường Chinh, Phường Thống Nhất",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1732\",\"properties\":{\"matinhxa\":\"22.1746\",\"maxa\":1746},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Lân Phong (xã)",
- "truocsn": "Xã Đức Phong, Xã Đức Lân",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1773\",\"properties\":{\"matinhxa\":\"22.1787\",\"maxa\":1787},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Long Phụng (xã)",
- "truocsn": "Xã Thắng Lợi, Xã Đức Nhuận, Xã Đức Hiệp",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1763\",\"properties\":{\"matinhxa\":\"22.1777\",\"maxa\":1777},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lý Sơn (đặc khu)",
- "truocsn": "Huyện Lý Sơn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3294\",\"properties\":{\"matinhxa\":\"22.3310\",\"maxa\":3310},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Măng Bút (xã)",
- "truocsn": "Xã Đăk Nên, Xã Đăk Ring, Xã Măng Bút",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1728\",\"properties\":{\"matinhxa\":\"22.1742\",\"maxa\":1742},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Măng Đen (xã)",
- "truocsn": "Thị trấn Măng Đen, Xã Măng Cành, Xã Đăk Tăng",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1730\",\"properties\":{\"matinhxa\":\"22.1744\",\"maxa\":1744},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Măng Ri (xã)",
- "truocsn": "Xã Ngọk Yêu, Xã Văn Xuôi, Xã Tê Xăng, Xã Ngọk Lây, Xã Măng Ri",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3160\",\"properties\":{\"matinhxa\":\"22.3176\",\"maxa\":3176},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Minh Long (xã)",
- "truocsn": "Xã Long Hiệp, Xã Thanh An, Xã Long Môn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1771\",\"properties\":{\"matinhxa\":\"22.1785\",\"maxa\":1785},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Mỏ Cày (xã)",
- "truocsn": "Xã Đức Chánh, Xã Đức Thạnh, Xã Đức Minh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1764\",\"properties\":{\"matinhxa\":\"22.1778\",\"maxa\":1778},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Mộ Đức (xã)",
- "truocsn": "Thị trấn Mộ Đức, Xã Đức Hòa, Xã Đức Phú, Xã Đức Tân",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1772\",\"properties\":{\"matinhxa\":\"22.1786\",\"maxa\":1786},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Mô Rai (xã)",
- "truocsn": "xã Mô Rai (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.487\",\"properties\":{\"matinhxa\":\"22.487\",\"maxa\":487},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Nghĩa Giang (xã)",
- "truocsn": "Xã Nghĩa Thuận, Xã Nghĩa Kỳ, Xã Nghĩa Điền",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1745\",\"properties\":{\"matinhxa\":\"22.1759\",\"maxa\":1759},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Nghĩa Hành (xã)",
- "truocsn": "Thị trấn Chợ Chùa, Xã Hành Thuận, Xã Hành Trung",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1767\",\"properties\":{\"matinhxa\":\"22.1781\",\"maxa\":1781},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Nghĩa Lộ (phường)",
- "truocsn": "Phường Lê Hồng Phong, Phường Trần Phú, Phường Quảng Phú, Phường Nghĩa Lộ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1794\",\"properties\":{\"matinhxa\":\"22.1808\",\"maxa\":1808},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Ngọc Linh (xã)",
- "truocsn": "Xã Mường Hoong, Xã Ngọc Linh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.558\",\"properties\":{\"matinhxa\":\"22.560\",\"maxa\":560},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Ngọk Bay (xã)",
- "truocsn": "Xã Kroong, Xã Vinh Quang, Xã Ngọk Bay",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.553\",\"properties\":{\"matinhxa\":\"22.555\",\"maxa\":555},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Ngọk Réo (xã)",
- "truocsn": "Xã Ngọk Wang, Xã Ngọk Réo",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1736\",\"properties\":{\"matinhxa\":\"22.1750\",\"maxa\":1750},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Ngọk Tụ (xã)",
- "truocsn": "Xã Đăk Rơ Nga, Xã Ngọk Tụ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.449\",\"properties\":{\"matinhxa\":\"22.449\",\"maxa\":449},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Nguyễn Nghiêm (xã)",
- "truocsn": "Xã Phổ Nhơn, Xã Phổ Phong",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1775\",\"properties\":{\"matinhxa\":\"22.1789\",\"maxa\":1789},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Phước Giang (xã)",
- "truocsn": "Xã Hành Dũng, Xã Hành Nhân, Xã Hành Minh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1747\",\"properties\":{\"matinhxa\":\"22.1761\",\"maxa\":1761},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Rờ Kơi (xã)",
- "truocsn": "xã Rờ Kơi (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.473\",\"properties\":{\"matinhxa\":\"22.473\",\"maxa\":473},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Sa Bình (xã)",
- "truocsn": "Xã Sa Nghĩa, Xã Hơ Moong, Xã Sa Bình",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.489\",\"properties\":{\"matinhxa\":\"22.489\",\"maxa\":489},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Sa Huỳnh (phường)",
- "truocsn": "Phường Phổ Thạnh, Xã Phổ Châu",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1785\",\"properties\":{\"matinhxa\":\"22.1799\",\"maxa\":1799},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Sa Loong (xã)",
- "truocsn": "Xã Đăk Kan, Xã Sa Loong",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.454\",\"properties\":{\"matinhxa\":\"22.454\",\"maxa\":454},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Sa Thầy (xã)",
- "truocsn": "Thị trấn Sa Thầy, Xã Sa Sơn, Xã Sa Nhơn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.472\",\"properties\":{\"matinhxa\":\"22.472\",\"maxa\":472},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Sơn Hà (xã)",
- "truocsn": "Thị trấn Di Lăng, Xã Sơn Bao, Xã Sơn Thượng",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1741\",\"properties\":{\"matinhxa\":\"22.1755\",\"maxa\":1755},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Sơn Hạ (xã)",
- "truocsn": "Xã Sơn Thành, Xã Sơn Nham, Xã Sơn Hạ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1759\",\"properties\":{\"matinhxa\":\"22.1773\",\"maxa\":1773},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Sơn Kỳ (xã)",
- "truocsn": "Xã Sơn Ba, Xã Sơn Kỳ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1769\",\"properties\":{\"matinhxa\":\"22.1783\",\"maxa\":1783},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Sơn Linh (xã)",
- "truocsn": "Xã Sơn Giang, Xã Sơn Cao, Xã Sơn Linh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1742\",\"properties\":{\"matinhxa\":\"22.1756\",\"maxa\":1756},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Sơn Mai (xã)",
- "truocsn": "Xã Long Mai, Xã Long Sơn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1746\",\"properties\":{\"matinhxa\":\"22.1760\",\"maxa\":1760},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Sơn Tây (xã)",
- "truocsn": "Xã Sơn Long, Xã Sơn Tân, Xã Sơn Dung",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1744\",\"properties\":{\"matinhxa\":\"22.1758\",\"maxa\":1758},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Sơn Tây Hạ (xã)",
- "truocsn": "Xã Sơn Tinh, Xã Sơn Lập, Xã Sơn Màu",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1770\",\"properties\":{\"matinhxa\":\"22.1784\",\"maxa\":1784},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Sơn Tây Thượng (xã)",
- "truocsn": "Xã Sơn Mùa, Xã Sơn Liên, Xã Sơn Bua",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1756\",\"properties\":{\"matinhxa\":\"22.1770\",\"maxa\":1770},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Sơn Thủy (xã)",
- "truocsn": "Xã Sơn Trung, Xã Sơn Hải, Xã Sơn Thủy",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1740\",\"properties\":{\"matinhxa\":\"22.1754\",\"maxa\":1754},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Sơn Tịnh (xã)",
- "truocsn": "Thị trấn Tịnh Hà, Xã Tịnh Bình, Xã Tịnh Sơn",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1750\",\"properties\":{\"matinhxa\":\"22.1764\",\"maxa\":1764},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Tây Trà (xã)",
- "truocsn": "Xã Sơn Trà, Xã Trà Phong, Xã Trà Xinh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1758\",\"properties\":{\"matinhxa\":\"22.1772\",\"maxa\":1772},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Tây Trà Bồng (xã)",
- "truocsn": "Xã Hương Trà, Xã Trà Tây, Xã Trà Bùi",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1761\",\"properties\":{\"matinhxa\":\"22.1775\",\"maxa\":1775},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Thanh Bồng (xã)",
- "truocsn": "Xã Trà Lâm, Xã Trà Hiệp, Xã Trà Thanh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1757\",\"properties\":{\"matinhxa\":\"22.1771\",\"maxa\":1771},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Thiện Tín (xã)",
- "truocsn": "Xã Hành Thiện, Xã Hành Tín Tây, Xã Hành Tín Đông",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1762\",\"properties\":{\"matinhxa\":\"22.1776\",\"maxa\":1776},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Thọ Phong (xã)",
- "truocsn": "Xã Tịnh Phong, Xã Tịnh Thọ",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1751\",\"properties\":{\"matinhxa\":\"22.1765\",\"maxa\":1765},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tịnh Khê (xã)",
- "truocsn": "Xã Tịnh Kỳ, Xã Tịnh Châu, Xã Tịnh Long, Xã Tịnh Thiện, Xã Tịnh Khê",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1797\",\"properties\":{\"matinhxa\":\"22.1811\",\"maxa\":1811},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Trà Bồng (xã)",
- "truocsn": "Thị trấn Trà Xuân, Xã Trà Sơn, Xã Trà Thủy",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1752\",\"properties\":{\"matinhxa\":\"22.1766\",\"maxa\":1766},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Trà Câu (phường)",
- "truocsn": "Phường Phổ Văn, Phường Phổ Quang, Xã Phổ An, Xã Phổ Thuận",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1774\",\"properties\":{\"matinhxa\":\"22.1788\",\"maxa\":1788},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Trà Giang (xã)",
- "truocsn": "Xã Nghĩa Sơn, Xã Nghĩa Lâm, Xã Nghĩa Thắng",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1743\",\"properties\":{\"matinhxa\":\"22.1757\",\"maxa\":1757},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Trường Giang (xã)",
- "truocsn": "Xã Tịnh Giang, Xã Tịnh Đông, Xã Tịnh Minh",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1748\",\"properties\":{\"matinhxa\":\"22.1762\",\"maxa\":1762},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Trương Quang Trọng (phường)",
- "truocsn": "Phường Trương Quang Trọng, Xã Tịnh Ấn Tây, Xã Tịnh Ấn Đông, Xã Tịnh An",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1798\",\"properties\":{\"matinhxa\":\"22.1812\",\"maxa\":1812},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tu Mơ Rông (xã)",
- "truocsn": "Xã Đăk Hà, Xã Tu Mơ Rông",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3161\",\"properties\":{\"matinhxa\":\"22.3177\",\"maxa\":3177},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Tư Nghĩa (xã)",
- "truocsn": "Thị trấn La Hà, Xã Nghĩa Trung, Xã Nghĩa Thương, Xã Nghĩa Hòa",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1768\",\"properties\":{\"matinhxa\":\"22.1782\",\"maxa\":1782},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vạn Tường (xã)",
- "truocsn": "Xã Bình Thuận, Xã Bình Đông, Xã Bình Trị, Xã Bình Hải, Xã Bình Hòa, Xã Bình Phước",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1738\",\"properties\":{\"matinhxa\":\"22.1752\",\"maxa\":1752},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vệ Giang (xã)",
- "truocsn": "Thị trấn Sông Vệ, Xã Nghĩa Hiệp, Xã Nghĩa Phương",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1766\",\"properties\":{\"matinhxa\":\"22.1780\",\"maxa\":1780},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Xốp (xã)",
- "truocsn": "Xã Đăk Choong, Xã Xốp",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.561\",\"properties\":{\"matinhxa\":\"22.563\",\"maxa\":563},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Ya Ly (xã)",
- "truocsn": "Xã Ya Xiêr, Xã Ya Tăng, Xã Ya Ly",
- "provinceName": "tỉnh Quảng Ngãi",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.490\",\"properties\":{\"matinhxa\":\"22.490\",\"maxa\":490},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Anh Dũng (xã)",
- "truocsn": "Xã Ma Nới, Xã Hòa Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1264\",\"properties\":{\"matinhxa\":\"23.1275\",\"maxa\":1275},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Ba Ngòi (phường)",
- "truocsn": "Phường Ba Ngòi, Xã Cam Phước Đông",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1249\",\"properties\":{\"matinhxa\":\"23.1260\",\"maxa\":1260},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bác Ái (xã)",
- "truocsn": "Xã Phước Tiến, Xã Phước Thắng, Xã Phước Chính",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1260\",\"properties\":{\"matinhxa\":\"23.1271\",\"maxa\":1271},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bác Ái Đông (xã)",
- "truocsn": "Xã Phước Đại, Xã Phước Thành",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1261\",\"properties\":{\"matinhxa\":\"23.1272\",\"maxa\":1272},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bác Ái Tây (xã)",
- "truocsn": "Xã Phước Hòa, Xã Phước Tân, Xã Phước Bình",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1259\",\"properties\":{\"matinhxa\":\"23.1270\",\"maxa\":1270},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bắc Cam Ranh (phường)",
- "truocsn": "Phường Cam Nghĩa, Phường Cam Phúc Bắc, Xã Cam Thành Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1034\",\"properties\":{\"matinhxa\":\"23.1045\",\"maxa\":1045},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bắc Khánh Vĩnh (xã)",
- "truocsn": "Xã Khánh Bình, Xã Khánh Đông",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1029\",\"properties\":{\"matinhxa\":\"23.1040\",\"maxa\":1040},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bắc Nha Trang (phường)",
- "truocsn": "Phường Vĩnh Hòa, Phường Vĩnh Hải, Phường Vĩnh Phước, Phường Vĩnh Thọ, Xã Vĩnh Lương, Xã Vĩnh Phương",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1031\",\"properties\":{\"matinhxa\":\"23.1042\",\"maxa\":1042},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bắc Ninh Hòa (xã)",
- "truocsn": "Xã Ninh An, Xã Ninh Sơn, Xã Ninh Thọ",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1023\",\"properties\":{\"matinhxa\":\"23.1034\",\"maxa\":1034},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bảo An (phường)",
- "truocsn": "Phường Phước Mỹ, Phường Bảo An, Xã Thành Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1068\",\"properties\":{\"matinhxa\":\"23.1079\",\"maxa\":1079},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cà Ná (xã)",
- "truocsn": "Xã Phước Diêm, Xã Cà Ná",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1086\",\"properties\":{\"matinhxa\":\"23.1097\",\"maxa\":1097},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cam An (xã)",
- "truocsn": "Xã Cam Phước Tây, Xã Cam An Bắc, Xã Cam An Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1254\",\"properties\":{\"matinhxa\":\"23.1265\",\"maxa\":1265},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cam Hiệp (xã)",
- "truocsn": "Xã Sơn Tân, Xã Cam Hiệp Bắc, Xã Cam Hiệp Nam, Xã Cam Hòa, Xã Cam Tân, Xã Suối Tân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1253\",\"properties\":{\"matinhxa\":\"23.1264\",\"maxa\":1264},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cam Lâm (xã)",
- "truocsn": "Thị trấn Cam Đức, Xã Cam Hải Đông, Xã Cam Hải Tây, Xã Cam Thành Bắc, Xã Cam Hiệp Bắc, Xã Cam Hiệp Nam, Xã Cam Hòa, Xã Cam Tân, Xã Cam An Bắc, Xã Cam An Nam, Xã Suối Tân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1252\",\"properties\":{\"matinhxa\":\"23.1263\",\"maxa\":1263},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cam Linh (phường)",
- "truocsn": "Phường Cam Thuận, Phường Cam Lợi, Phường Cam Linh",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1250\",\"properties\":{\"matinhxa\":\"23.1261\",\"maxa\":1261},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cam Ranh (phường)",
- "truocsn": "Phường Cam Phú, Phường Cam Lộc, Phường Cam Phúc Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1248\",\"properties\":{\"matinhxa\":\"23.1259\",\"maxa\":1259},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Công Hải (xã)",
- "truocsn": "Xã Phước Chiến, Xã Công Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1267\",\"properties\":{\"matinhxa\":\"23.1278\",\"maxa\":1278},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đại Lãnh (xã)",
- "truocsn": "Xã Vạn Thạnh, Xã Vạn Thọ, Xã Đại Lãnh",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1005\",\"properties\":{\"matinhxa\":\"23.1016\",\"maxa\":1016},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Diên Điền (xã)",
- "truocsn": "Xã Diên Sơn, Xã Diên Phú, Xã Diên Điền",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1060\",\"properties\":{\"matinhxa\":\"23.1071\",\"maxa\":1071},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Diên Khánh (xã)",
- "truocsn": "Thị trấn Diên Khánh, Xã Diên An, Xã Diên Toàn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1057\",\"properties\":{\"matinhxa\":\"23.1068\",\"maxa\":1068},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Diên Lạc (xã)",
- "truocsn": "Xã Diên Thạnh, Xã Diên Lạc, Xã Diên Hòa",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1062\",\"properties\":{\"matinhxa\":\"23.1073\",\"maxa\":1073},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Diên Lâm (xã)",
- "truocsn": "Xã Xuân Đồng, Xã Diên Lâm",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1058\",\"properties\":{\"matinhxa\":\"23.1069\",\"maxa\":1069},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Diên Thọ (xã)",
- "truocsn": "Xã Diên Tân, Xã Diên Phước, Xã Diên Thọ",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1061\",\"properties\":{\"matinhxa\":\"23.1072\",\"maxa\":1072},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đô Vinh (phường)",
- "truocsn": "Phường Đô Vinh, Xã Nhơn Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1067\",\"properties\":{\"matinhxa\":\"23.1078\",\"maxa\":1078},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đông Hải (phường)",
- "truocsn": "Phường Mỹ Bình, Phường Mỹ Đông, Phường Mỹ Hải, Phường Đông Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1258\",\"properties\":{\"matinhxa\":\"23.1269\",\"maxa\":1269},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đông Khánh Sơn (xã)",
- "truocsn": "Xã Sơn Trung, Xã Ba Cụm Bắc, Xã Ba Cụm Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1066\",\"properties\":{\"matinhxa\":\"23.1077\",\"maxa\":1077},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đông Ninh Hòa (phường)",
- "truocsn": "Phường Ninh Diêm, Phường Ninh Hải, Phường Ninh Thủy, Xã Ninh Phước",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1026\",\"properties\":{\"matinhxa\":\"23.1037\",\"maxa\":1037},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hòa Thắng (phường)",
- "truocsn": "Phường Ninh Giang, Phường Ninh Hà, Xã Ninh Phú",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1255\",\"properties\":{\"matinhxa\":\"23.1266\",\"maxa\":1266},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hòa Trí (xã)",
- "truocsn": "Xã Ninh Thượng, Xã Ninh Trung, Xã Ninh Thân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1025\",\"properties\":{\"matinhxa\":\"23.1036\",\"maxa\":1036},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Khánh Sơn (xã)",
- "truocsn": "Thị trấn Tô Hạp, Xã Sơn Hiệp, Xã Sơn Bình",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1064\",\"properties\":{\"matinhxa\":\"23.1075\",\"maxa\":1075},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Khánh Vĩnh (xã)",
- "truocsn": "Thị trấn Khánh Vĩnh, Xã Sông Cầu, Xã Khánh Phú",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1055\",\"properties\":{\"matinhxa\":\"23.1066\",\"maxa\":1066},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Lâm Sơn (xã)",
- "truocsn": "Xã Lương Sơn, Xã Lâm Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1084\",\"properties\":{\"matinhxa\":\"23.1095\",\"maxa\":1095},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Mỹ Sơn (xã)",
- "truocsn": "Xã Phước Trung, Xã Mỹ Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1263\",\"properties\":{\"matinhxa\":\"23.1274\",\"maxa\":1274},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Nam Cam Ranh (xã)",
- "truocsn": "Xã Cam Lập, Xã Cam Bình, Xã Cam Thịnh Đông, Xã Cam Thịnh Tây",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1049\",\"properties\":{\"matinhxa\":\"23.1060\",\"maxa\":1060},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Nam Khánh Vĩnh (xã)",
- "truocsn": "Xã Cầu Bà, Xã Khánh Thành, Xã Liên Sang, Xã Sơn Thái",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1056\",\"properties\":{\"matinhxa\":\"23.1067\",\"maxa\":1067},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Nam Nha Trang (phường)",
- "truocsn": "Phường Phước Hải, Phường Phước Long, Phường Vĩnh Trường, Xã Vĩnh Thái, Xã Phước Đồng",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1033\",\"properties\":{\"matinhxa\":\"23.1044\",\"maxa\":1044},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Nam Ninh Hòa (xã)",
- "truocsn": "Xã Ninh Lộc, Xã Ninh Ích, Xã Ninh Hưng, Xã Ninh Tân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1256\",\"properties\":{\"matinhxa\":\"23.1267\",\"maxa\":1267},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Nha Trang (phường)",
- "truocsn": "Phường Vạn Thạnh, Phường Lộc Thọ, Phường Vĩnh Nguyên, Phường Tân Tiến, Phường Phước Hòa",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3290\",\"properties\":{\"matinhxa\":\"23.3306\",\"maxa\":3306},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Ninh Chử (phường)",
- "truocsn": "Phường Văn Hải, Thị trấn Khánh Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1266\",\"properties\":{\"matinhxa\":\"23.1277\",\"maxa\":1277},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Ninh Hải (xã)",
- "truocsn": "Xã Phương Hải, Xã Tri Hải, Xã Bắc Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1077\",\"properties\":{\"matinhxa\":\"23.1088\",\"maxa\":1088},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Ninh Hòa (phường)",
- "truocsn": "Phường Ninh Hiệp, Phường Ninh Đa, Xã Ninh Đông, Xã Ninh Phụng",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1020\",\"properties\":{\"matinhxa\":\"23.1031\",\"maxa\":1031},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Ninh Phước (xã)",
- "truocsn": "Thị trấn Phước Dân, Xã Phước Thuận, Xã Phước Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1079\",\"properties\":{\"matinhxa\":\"23.1090\",\"maxa\":1090},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Ninh Sơn (xã)",
- "truocsn": "Thị trấn Tân Sơn, Xã Quảng Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1262\",\"properties\":{\"matinhxa\":\"23.1273\",\"maxa\":1273},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Phan Rang (phường)",
- "truocsn": "Phường Kinh Dinh, Phường Phủ Hà, Phường Đài Sơn, Phường Đạo Long",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1257\",\"properties\":{\"matinhxa\":\"23.1268\",\"maxa\":1268},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Phước Dinh (xã)",
- "truocsn": "Xã An Hải, Xã Phước Dinh, Phường Đông Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1087\",\"properties\":{\"matinhxa\":\"23.1098\",\"maxa\":1098},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Phước Hà (xã)",
- "truocsn": "Xã Nhị Hà, Xã Phước Hà",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1081\",\"properties\":{\"matinhxa\":\"23.1092\",\"maxa\":1092},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Phước Hậu (xã)",
- "truocsn": "Xã Phước Vinh, Xã Phước Sơn, Xã Phước Hậu",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1080\",\"properties\":{\"matinhxa\":\"23.1091\",\"maxa\":1091},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Phước Hữu (xã)",
- "truocsn": "Xã Phước Thái, Xã Phước Hữu",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1083\",\"properties\":{\"matinhxa\":\"23.1094\",\"maxa\":1094},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Suối Dầu (xã)",
- "truocsn": "Xã Suối Cát, Xã Cam Hòa, Xã Cam Tân, Xã Suối Tân",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1251\",\"properties\":{\"matinhxa\":\"23.1262\",\"maxa\":1262},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Suối Hiệp (xã)",
- "truocsn": "Xã Suối Tiên, Xã Bình Lộc, Xã Suối Hiệp",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1063\",\"properties\":{\"matinhxa\":\"23.1074\",\"maxa\":1074},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Tân Định (xã)",
- "truocsn": "Xã Ninh Xuân, Xã Ninh Quang, Xã Ninh Bình",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1027\",\"properties\":{\"matinhxa\":\"23.1038\",\"maxa\":1038},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Tây Khánh Sơn (xã)",
- "truocsn": "Xã Sơn Lâm, Xã Thành Sơn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1065\",\"properties\":{\"matinhxa\":\"23.1076\",\"maxa\":1076},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Tây Khánh Vĩnh (xã)",
- "truocsn": "Xã Giang Ly, Xã Khánh Thượng, Xã Khánh Nam",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1030\",\"properties\":{\"matinhxa\":\"23.1041\",\"maxa\":1041},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Tây Nha Trang (phường)",
- "truocsn": "Phường Ngọc Hiệp, Phường Phương Sài, Xã Vĩnh Ngọc, Xã Vĩnh Thạnh, Xã Vĩnh Hiệp, Xã Vĩnh Trung",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1032\",\"properties\":{\"matinhxa\":\"23.1043\",\"maxa\":1043},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Tây Ninh Hòa (xã)",
- "truocsn": "Xã Ninh Tây, Xã Ninh Sim",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1024\",\"properties\":{\"matinhxa\":\"23.1035\",\"maxa\":1035},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Thuận Bắc (xã)",
- "truocsn": "Xã Bắc Phong, Xã Phước Kháng, Xã Lợi Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1268\",\"properties\":{\"matinhxa\":\"23.1279\",\"maxa\":1279},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Thuận Nam (xã)",
- "truocsn": "Xã Phước Nam, Xã Phước Ninh, Xã Phước Minh",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1085\",\"properties\":{\"matinhxa\":\"23.1096\",\"maxa\":1096},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Trung Khánh Vĩnh (xã)",
- "truocsn": "Xã Khánh Trung, Xã Khánh Hiệp",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1028\",\"properties\":{\"matinhxa\":\"23.1039\",\"maxa\":1039},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Trường Sa (đặc khu)",
- "truocsn": "Thị trấn Trường Sa, Xã Song Tử Tây, Xã Sinh Tồn",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3305\",\"properties\":{\"matinhxa\":\"23.3321\",\"maxa\":3321},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Tu Bông (xã)",
- "truocsn": "Xã Vạn Khánh, Xã Vạn Long, Xã Vạn Phước",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1003\",\"properties\":{\"matinhxa\":\"23.1014\",\"maxa\":1014},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Vạn Hưng (xã)",
- "truocsn": "Xã Xuân Sơn, Xã Vạn Hưng",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1007\",\"properties\":{\"matinhxa\":\"23.1018\",\"maxa\":1018},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Vạn Ninh (xã)",
- "truocsn": "Thị trấn Vạn Giã, Xã Vạn Phú, Xã Vạn Lương",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1004\",\"properties\":{\"matinhxa\":\"23.1015\",\"maxa\":1015},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Vạn Thắng (xã)",
- "truocsn": "Xã Vạn Bình, Xã Vạn Thắng",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1006\",\"properties\":{\"matinhxa\":\"23.1017\",\"maxa\":1017},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Vĩnh Hải (xã)",
- "truocsn": "Xã Nhơn Hải, Xã Thanh Hải, Xã Vĩnh Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1076\",\"properties\":{\"matinhxa\":\"23.1087\",\"maxa\":1087},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Xuân Hải (xã)",
- "truocsn": "Xã Hộ Hải, Xã Tân Hải, Xã Xuân Hải",
- "provinceName": "tỉnh Khánh Hòa",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1078\",\"properties\":{\"matinhxa\":\"23.1089\",\"maxa\":1089},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Al Bá (xã)",
- "truocsn": "Xã Ayun (huyện Chư Sê), Xã Kông Htok, Xã Al Bá",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2957\",\"properties\":{\"matinhxa\":\"24.2973\",\"maxa\":2973},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Bình (phường)",
- "truocsn": "Phường An Bình, Xã Tân An, Xã Cư An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3040\",\"properties\":{\"matinhxa\":\"24.3056\",\"maxa\":3056},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Ân Hảo (xã)",
- "truocsn": "Xã Ân Hảo Tây, Xã Ân Hảo Đông, Xã Ân Mỹ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2984\",\"properties\":{\"matinhxa\":\"24.3000\",\"maxa\":3000},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Hòa (xã)",
- "truocsn": "Xã An Hòa, Xã An Quang, Xã An Nghĩa",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2976\",\"properties\":{\"matinhxa\":\"24.2992\",\"maxa\":2992},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Khê (phường)",
- "truocsn": "Phường Ngô Mây, Phường Tây Sơn (thị xã An Khê), Phường An Phú, Phường An Phước, Phường An Tân, Xã Thành An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3041\",\"properties\":{\"matinhxa\":\"24.3057\",\"maxa\":3057},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Lão (xã)",
- "truocsn": "Thị trấn An Lão, Xã An Tân, Xã An Hưng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2973\",\"properties\":{\"matinhxa\":\"24.2989\",\"maxa\":2989},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "An Lương (xã)",
- "truocsn": "Xã Mỹ Chánh, Xã Mỹ Thành, Xã Mỹ Cát",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2994\",\"properties\":{\"matinhxa\":\"24.3010\",\"maxa\":3010},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "An Nhơn (phường)",
- "truocsn": "Phường Đập Đá, Xã Nhơn Mỹ, Xã Nhơn Hậu",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3016\",\"properties\":{\"matinhxa\":\"24.3032\",\"maxa\":3032},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "An Nhơn Bắc (phường)",
- "truocsn": "Phường Nhơn Thành, Xã Nhơn Phong, Xã Nhơn Hạnh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3017\",\"properties\":{\"matinhxa\":\"24.3033\",\"maxa\":3033},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "An Nhơn Đông (phường)",
- "truocsn": "Phường Nhơn Hưng, Xã Nhơn An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3018\",\"properties\":{\"matinhxa\":\"24.3034\",\"maxa\":3034},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "An Nhơn Nam (phường)",
- "truocsn": "Phường Nhơn Hòa, Xã Nhơn Thọ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3028\",\"properties\":{\"matinhxa\":\"24.3044\",\"maxa\":3044},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "An Nhơn Tây (xã)",
- "truocsn": "Xã Nhơn Lộc, Xã Nhơn Tân",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3029\",\"properties\":{\"matinhxa\":\"24.3045\",\"maxa\":3045},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "An Phú (phường)",
- "truocsn": "Phường Thắng Lợi, Xã Chư Á, Xã An Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3050\",\"properties\":{\"matinhxa\":\"24.3066\",\"maxa\":3066},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "An Toàn (xã)",
- "truocsn": "Xã An Toàn, Xã An Nghĩa (phần còn lại sau khi sáp nhập vào xã An Hòa)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2975\",\"properties\":{\"matinhxa\":\"24.2991\",\"maxa\":2991},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Ân Tường (xã)",
- "truocsn": "Xã Ân Tường Tây, Xã Ân Hữu, Xã Đak Mang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2988\",\"properties\":{\"matinhxa\":\"24.3004\",\"maxa\":3004},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "An Vinh (xã)",
- "truocsn": "Xã An Trung (huyện An Lão), Xã An Dũng, Xã An Vinh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2974\",\"properties\":{\"matinhxa\":\"24.2990\",\"maxa\":2990},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Ayun (xã)",
- "truocsn": "Xã Đak Jơ Ta, Xã Ayun (huyện Mang Yang)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3032\",\"properties\":{\"matinhxa\":\"24.3048\",\"maxa\":3048},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Ayun Pa (phường)",
- "truocsn": "Phường Đoàn Kết, Phường Sông Bờ, Phường Cheo Reo, Phường Hòa Bình",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2964\",\"properties\":{\"matinhxa\":\"24.2980\",\"maxa\":2980},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Bàu Cạn (xã)",
- "truocsn": "Xã Thăng Hưng, Xã Bình Giáo, Xã Bàu Cạn",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2946\",\"properties\":{\"matinhxa\":\"24.2962\",\"maxa\":2962},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Biển Hồ (xã)",
- "truocsn": "Xã Nghĩa Hưng, Xã Chư Đang Ya, Xã Hà Bầu, Xã Biển Hồ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3049\",\"properties\":{\"matinhxa\":\"24.3065\",\"maxa\":3065},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Tây Vinh, Xã Tây Bình, Xã Bình Hòa, Xã Bình Thành",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3001\",\"properties\":{\"matinhxa\":\"24.3017\",\"maxa\":3017},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Bình Định (phường)",
- "truocsn": "Phường Bình Định, Xã Nhơn Khánh, Xã Nhơn Phúc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3015\",\"properties\":{\"matinhxa\":\"24.3031\",\"maxa\":3031},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Bình Dương (xã)",
- "truocsn": "Thị trấn Bình Dương, Xã Mỹ Lợi, Xã Mỹ Phong",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2990\",\"properties\":{\"matinhxa\":\"24.3006\",\"maxa\":3006},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Bình Hiệp (xã)",
- "truocsn": "Xã Bình Thuận, Xã Bình Tân, Xã Tây An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2999\",\"properties\":{\"matinhxa\":\"24.3015\",\"maxa\":3015},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Bình Khê (xã)",
- "truocsn": "Xã Tây Giang, Xã Tây Thuận",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3000\",\"properties\":{\"matinhxa\":\"24.3016\",\"maxa\":3016},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Bình Phú (xã)",
- "truocsn": "Xã Vĩnh An, Xã Bình Tường, Xã Tây Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3002\",\"properties\":{\"matinhxa\":\"24.3018\",\"maxa\":3018},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Bờ Ngoong (xã)",
- "truocsn": "Xã Bar Măih, Xã Ia Tiêm, Xã Chư Pơng, Xã Bờ Ngoong",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2959\",\"properties\":{\"matinhxa\":\"24.2975\",\"maxa\":2975},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Bồng Sơn (phường)",
- "truocsn": "Phường Hoài Đức, Phường Bồng Sơn",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2978\",\"properties\":{\"matinhxa\":\"24.2994\",\"maxa\":2994},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Canh Liên (xã)",
- "truocsn": "Xã Canh Liên (phần còn lại sau khi sáp nhập vào xã Canh Vinh)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3025\",\"properties\":{\"matinhxa\":\"24.3041\",\"maxa\":3041},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Canh Vinh (xã)",
- "truocsn": "Xã Canh Vinh, Xã Canh Hiển, Xã Canh Liên, Xã Canh Hiệp (phần còn lại sau khi sáp nhập vào xã Vân Canh)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3026\",\"properties\":{\"matinhxa\":\"24.3042\",\"maxa\":3042},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Cát Tiến (xã)",
- "truocsn": "Thị trấn Cát Tiến, Xã Cát Thành, Xã Cát Hải",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3009\",\"properties\":{\"matinhxa\":\"24.3025\",\"maxa\":3025},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Chơ Long (xã)",
- "truocsn": "Xã Đăk Pơ Pho, Xã Chơ GLong",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3030\",\"properties\":{\"matinhxa\":\"24.3046\",\"maxa\":3046},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Chư A Thai (xã)",
- "truocsn": "Xã Ayun Hạ, Xã Ia Ake, Xã Chư A Thai",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2963\",\"properties\":{\"matinhxa\":\"24.2979\",\"maxa\":2979},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Chư Krey (xã)",
- "truocsn": "Xã An Trung (huyện Kông Chro), Xã Chư Krey",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3037\",\"properties\":{\"matinhxa\":\"24.3053\",\"maxa\":3053},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Chư Păh (xã)",
- "truocsn": "Thị trấn Phú Hòa, Xã Nghĩa Hòa, Xã Hòa Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2954\",\"properties\":{\"matinhxa\":\"24.2970\",\"maxa\":2970},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Chư Prông (xã)",
- "truocsn": "Thị trấn Chư Prông, Xã Ia Phìn, Xã Ia Kly, Xã Ia Drang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2931\",\"properties\":{\"matinhxa\":\"24.2947\",\"maxa\":2947},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Chư Pưh (xã)",
- "truocsn": "Thị trấn Nhơn Hòa, Xã Chư Don, Xã Ia Phang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2956\",\"properties\":{\"matinhxa\":\"24.2972\",\"maxa\":2972},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Chư Sê (xã)",
- "truocsn": "Thị trấn Chư Sê, Xã Dun, Xã Ia Blang, Xã Ia Pal, Xã Ia Glai",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2955\",\"properties\":{\"matinhxa\":\"24.2971\",\"maxa\":2971},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Cửu An (xã)",
- "truocsn": "Xã Tú An, Xã Xuân An, Xã Song An, Xã Cửu An",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3042\",\"properties\":{\"matinhxa\":\"24.3058\",\"maxa\":3058},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Đak Đoa (xã)",
- "truocsn": "Thị trấn Đak Đoa, Xã Tân Bình, Xã Glar",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3056\",\"properties\":{\"matinhxa\":\"24.3072\",\"maxa\":3072},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Đak Pơ (xã)",
- "truocsn": "Thị trấn Đak Pơ, Xã Hà Tam, Xã An Thành, Xã Yang Bắc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3039\",\"properties\":{\"matinhxa\":\"24.3055\",\"maxa\":3055},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Đak Rong (xã)",
- "truocsn": "Xã Kon Pne, Xã Đak Rong",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.70\",\"properties\":{\"matinhxa\":\"24.70\",\"maxa\":70},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Đak Sơmei (xã)",
- "truocsn": "Xã Hà Đông, Xã Đak Sơmei",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3057\",\"properties\":{\"matinhxa\":\"24.3073\",\"maxa\":3073},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Đăk Song (xã)",
- "truocsn": "Xã Đăk Pling, Xã Đăk Song",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3043\",\"properties\":{\"matinhxa\":\"24.3059\",\"maxa\":3059},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Đề Gi (xã)",
- "truocsn": "Thị trấn Cát Khánh, Xã Cát Minh, Xã Cát Tài",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3005\",\"properties\":{\"matinhxa\":\"24.3021\",\"maxa\":3021},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Diên Hồng (phường)",
- "truocsn": "Phường Yên Đỗ, Phường Ia Kring, Phường Diên Hồng, Xã Diên Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3046\",\"properties\":{\"matinhxa\":\"24.3062\",\"maxa\":3062},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Đức Cơ (xã)",
- "truocsn": "Thị trấn Chư Ty, Xã Ia Kriêng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2941\",\"properties\":{\"matinhxa\":\"24.2957\",\"maxa\":2957},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Gào (xã)",
- "truocsn": "Xã Ia Kênh, Xã Ia Pếch, Xã Gào",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2953\",\"properties\":{\"matinhxa\":\"24.2969\",\"maxa\":2969},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Hòa Hội (xã)",
- "truocsn": "Xã Cát Hanh, Xã Cát Hiệp",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3006\",\"properties\":{\"matinhxa\":\"24.3022\",\"maxa\":3022},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Hoài Ân (xã)",
- "truocsn": "Thị trấn Tăng Bạt Hổ, Xã Ân Phong, Xã Ân Đức, Xã Ân Tường Đông",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2986\",\"properties\":{\"matinhxa\":\"24.3002\",\"maxa\":3002},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Hoài Nhơn (phường)",
- "truocsn": "Phường Hoài Thanh, Phường Tam Quan Nam, Phường Hoài Thanh Tây",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2981\",\"properties\":{\"matinhxa\":\"24.2997\",\"maxa\":2997},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Hoài Nhơn Bắc (phường)",
- "truocsn": "Phường Tam Quan Bắc, Xã Hoài Sơn, Xã Hoài Châu Bắc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2979\",\"properties\":{\"matinhxa\":\"24.2995\",\"maxa\":2995},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Hoài Nhơn Đông (phường)",
- "truocsn": "Phường Hoài Hương, Xã Hoài Hải, Xã Hoài Mỹ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2982\",\"properties\":{\"matinhxa\":\"24.2998\",\"maxa\":2998},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Hoài Nhơn Nam (phường)",
- "truocsn": "Phường Hoài Tân, Phường Hoài Xuân",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2983\",\"properties\":{\"matinhxa\":\"24.2999\",\"maxa\":2999},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Hoài Nhơn Tây (phường)",
- "truocsn": "Phường Hoài Hảo, Xã Hoài Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2980\",\"properties\":{\"matinhxa\":\"24.2996\",\"maxa\":2996},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Hội Phú (phường)",
- "truocsn": "Phường Trà Bá, Phường Chi Lăng, Phường Hội Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3047\",\"properties\":{\"matinhxa\":\"24.3063\",\"maxa\":3063},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Hội Sơn (xã)",
- "truocsn": "Xã Cát Lâm, Xã Cát Sơn",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3004\",\"properties\":{\"matinhxa\":\"24.3020\",\"maxa\":3020},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Hra (xã)",
- "truocsn": "Xã Đak Ta Ley, Xã Hra",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3033\",\"properties\":{\"matinhxa\":\"24.3049\",\"maxa\":3049},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Ia Băng (xã)",
- "truocsn": "Xã Ia Băng (huyện Đak Đoa), Xã Adơk, Xã Ia Pết",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3060\",\"properties\":{\"matinhxa\":\"24.3076\",\"maxa\":3076},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Ia Boòng (xã)",
- "truocsn": "Xã Ia O (huyện Chư Prông), Xã Ia Me, Xã Ia Boòng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2933\",\"properties\":{\"matinhxa\":\"24.2949\",\"maxa\":2949},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Ia Chia (xã)",
- "truocsn": "xã Ia Chia (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2940\",\"properties\":{\"matinhxa\":\"24.2956\",\"maxa\":2956},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Ia Dơk (xã)",
- "truocsn": "Xã Ia Kla, Xã Ia Dơk",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2942\",\"properties\":{\"matinhxa\":\"24.2958\",\"maxa\":2958},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Ia Dom (xã)",
- "truocsn": "xã Ia Dom (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2944\",\"properties\":{\"matinhxa\":\"24.2960\",\"maxa\":2960},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Ia Dreh (xã)",
- "truocsn": "Xã Ia Rmok, Xã Krông Năng, Xã Ia Dreh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2971\",\"properties\":{\"matinhxa\":\"24.2987\",\"maxa\":2987},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Ia Grai (xã)",
- "truocsn": "Thị trấn Ia Kha, Xã Ia Bă, Xã Ia Grăng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2937\",\"properties\":{\"matinhxa\":\"24.2953\",\"maxa\":2953},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Ia Hiao (xã)",
- "truocsn": "Xã Chrôh Pơnan, Xã Ia Peng, Xã Ia Hiao",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2965\",\"properties\":{\"matinhxa\":\"24.2981\",\"maxa\":2981},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Ia Hrú (xã)",
- "truocsn": "Xã Ia Dreng, Xã Ia Rong, Xã HBông, Xã Ia Hrú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2958\",\"properties\":{\"matinhxa\":\"24.2974\",\"maxa\":2974},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Ia Hrung (xã)",
- "truocsn": "Xã Ia Sao (huyện Ia Grai), Xã Ia Yok, Xã Ia Dêr, Xã Ia Hrung",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2945\",\"properties\":{\"matinhxa\":\"24.2961\",\"maxa\":2961},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Ia Khươl (xã)",
- "truocsn": "Xã Đăk Tơ Ver, Xã Hà Tây, Xã Ia Khươl",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3061\",\"properties\":{\"matinhxa\":\"24.3077\",\"maxa\":3077},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Ia Ko (xã)",
- "truocsn": "Xã Ia Hlốp, Xã Ia Hla, Xã Ia Ko",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2936\",\"properties\":{\"matinhxa\":\"24.2952\",\"maxa\":2952},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Ia Krái (xã)",
- "truocsn": "Xã Ia Tô, Xã Ia Khai, Xã Ia Krái",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2938\",\"properties\":{\"matinhxa\":\"24.2954\",\"maxa\":2954},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Ia Krêl (xã)",
- "truocsn": "Xã Ia Lang, Xã Ia Din, Xã Ia Krêl",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2943\",\"properties\":{\"matinhxa\":\"24.2959\",\"maxa\":2959},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Ia Lâu (xã)",
- "truocsn": "Xã Ia Piơr, Xã Ia Lâu",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2947\",\"properties\":{\"matinhxa\":\"24.2963\",\"maxa\":2963},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Ia Le (xã)",
- "truocsn": "Xã Ia Blứ, Xã Ia Le",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2949\",\"properties\":{\"matinhxa\":\"24.2965\",\"maxa\":2965},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Ia Ly (xã)",
- "truocsn": "Thị trấn Ia Ly, Xã Ia Mơ Nông, Xã Ia Kreng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2950\",\"properties\":{\"matinhxa\":\"24.2966\",\"maxa\":2966},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Ia Mơ (xã)",
- "truocsn": "xã Ia Mơ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2948\",\"properties\":{\"matinhxa\":\"24.2964\",\"maxa\":2964},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Ia Nan (xã)",
- "truocsn": "xã Ia Nan (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2930\",\"properties\":{\"matinhxa\":\"24.2946\",\"maxa\":2946},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Ia O (xã)",
- "truocsn": "xã Ia O (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2939\",\"properties\":{\"matinhxa\":\"24.2955\",\"maxa\":2955},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Ia Pa (xã)",
- "truocsn": "Xã Ia Mrơn, Xã Kim Tân, Xã Ia Trôk",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2961\",\"properties\":{\"matinhxa\":\"24.2977\",\"maxa\":2977},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Ia Phí (xã)",
- "truocsn": "Xã Ia Ka, Xã Ia Nhin, Xã Ia Phí",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2951\",\"properties\":{\"matinhxa\":\"24.2967\",\"maxa\":2967},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Ia Pia (xã)",
- "truocsn": "Xã Ia Ga, Xã Ia Vê, Xã Ia Pia",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2935\",\"properties\":{\"matinhxa\":\"24.2951\",\"maxa\":2951},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Ia Pnôn (xã)",
- "truocsn": "xã Ia Pnôn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2929\",\"properties\":{\"matinhxa\":\"24.2945\",\"maxa\":2945},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Ia Púch (xã)",
- "truocsn": "xã Ia Púch (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2934\",\"properties\":{\"matinhxa\":\"24.2950\",\"maxa\":2950},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Ia Rbol (xã)",
- "truocsn": "Xã Chư Băh, Xã Ia Rbol",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2966\",\"properties\":{\"matinhxa\":\"24.2982\",\"maxa\":2982},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Ia Rsai (xã)",
- "truocsn": "Xã Chư RCăm, Xã Chư Gu, Xã Ia Rsai",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2968\",\"properties\":{\"matinhxa\":\"24.2984\",\"maxa\":2984},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Ia Sao (xã)",
- "truocsn": "Xã Ia Sao (thị xã Ayun Pa), Xã Ia Rtô",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2967\",\"properties\":{\"matinhxa\":\"24.2983\",\"maxa\":2983},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Ia Tôr (xã)",
- "truocsn": "Xã Ia Băng (huyện Chư Prông), Xã Ia Bang, Xã Ia Tôr",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2932\",\"properties\":{\"matinhxa\":\"24.2948\",\"maxa\":2948},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Ia Tul (xã)",
- "truocsn": "Xã Chư Mố, Xã Ia Broăi, Xã Ia Kdăm, Xã Ia Tul",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2969\",\"properties\":{\"matinhxa\":\"24.2985\",\"maxa\":2985},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Kbang (xã)",
- "truocsn": "Thị trấn Kbang, Xã Lơ Ku, Xã Đak Smar",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3051\",\"properties\":{\"matinhxa\":\"24.3067\",\"maxa\":3067},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "KDang (xã)",
- "truocsn": "Xã Hnol, Xã Trang, Xã KDang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3059\",\"properties\":{\"matinhxa\":\"24.3075\",\"maxa\":3075},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Kim Sơn (xã)",
- "truocsn": "Xã Ân Nghĩa, Xã Bok Tới",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2987\",\"properties\":{\"matinhxa\":\"24.3003\",\"maxa\":3003},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Kon Chiêng (xã)",
- "truocsn": "Xã Đak Trôi, Xã Kon Chiêng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3035\",\"properties\":{\"matinhxa\":\"24.3051\",\"maxa\":3051},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Kon Gang (xã)",
- "truocsn": "Xã Đak Krong, Xã Hneng, Xã Nam Yang, Xã Kon Gang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3058\",\"properties\":{\"matinhxa\":\"24.3074\",\"maxa\":3074},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Kông Bơ La (xã)",
- "truocsn": "Xã Đông, Xã Nghĩa An, Xã Kông Bơ La",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3055\",\"properties\":{\"matinhxa\":\"24.3071\",\"maxa\":3071},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Kông Chro (xã)",
- "truocsn": "Thị trấn Kông Chro, Xã Yang Trung, Xã Yang Nam",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3036\",\"properties\":{\"matinhxa\":\"24.3052\",\"maxa\":3052},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Krong (xã)",
- "truocsn": "xã Krong (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3053\",\"properties\":{\"matinhxa\":\"24.3069\",\"maxa\":3069},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Lơ Pang (xã)",
- "truocsn": "Xã Đê Ar, Xã Kon Thụp, Xã Lơ Pang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3034\",\"properties\":{\"matinhxa\":\"24.3050\",\"maxa\":3050},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Mang Yang (xã)",
- "truocsn": "Thị trấn Kon Dơng, Xã Đăk Yă, Xã Đak Djrăng, Xã Hải Yang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3031\",\"properties\":{\"matinhxa\":\"24.3047\",\"maxa\":3047},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Ngô Mây (xã)",
- "truocsn": "Xã Cát Hưng, Xã Cát Thắng, Xã Cát Chánh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3007\",\"properties\":{\"matinhxa\":\"24.3023\",\"maxa\":3023},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Nhơn Châu (xã)",
- "truocsn": "xã Nhơn Châu (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3282\",\"properties\":{\"matinhxa\":\"24.3298\",\"maxa\":3298},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Phù Cát (xã)",
- "truocsn": "Thị trấn Ngô Mây, Xã Cát Trinh, Xã Cát Tân",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3003\",\"properties\":{\"matinhxa\":\"24.3019\",\"maxa\":3019},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Phù Mỹ (xã)",
- "truocsn": "Thị trấn Phù Mỹ, Xã Mỹ Quang, Xã Mỹ Chánh Tây",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3011\",\"properties\":{\"matinhxa\":\"24.3027\",\"maxa\":3027},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Phù Mỹ Bắc (xã)",
- "truocsn": "Xã Mỹ Đức, Xã Mỹ Châu, Xã Mỹ Lộc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2991\",\"properties\":{\"matinhxa\":\"24.3007\",\"maxa\":3007},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Phù Mỹ Đông (xã)",
- "truocsn": "Xã Mỹ An, Xã Mỹ Thọ, Xã Mỹ Thắng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2993\",\"properties\":{\"matinhxa\":\"24.3009\",\"maxa\":3009},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Phù Mỹ Nam (xã)",
- "truocsn": "Xã Mỹ Tài, Xã Mỹ Hiệp",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2989\",\"properties\":{\"matinhxa\":\"24.3005\",\"maxa\":3005},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Phù Mỹ Tây (xã)",
- "truocsn": "Xã Mỹ Trinh, Xã Mỹ Hòa",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2992\",\"properties\":{\"matinhxa\":\"24.3008\",\"maxa\":3008},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Phú Thiện (xã)",
- "truocsn": "Thị trấn Phú Thiện, Xã Ia Sol, Xã Ia Piar, Xã Ia Yeng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2962\",\"properties\":{\"matinhxa\":\"24.2978\",\"maxa\":2978},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Phú Túc (xã)",
- "truocsn": "Thị trấn Phú Túc, Xã Phú Cần, Xã Chư Ngọc, Xã Ia Mlah, Xã Đất Bằng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2970\",\"properties\":{\"matinhxa\":\"24.2986\",\"maxa\":2986},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Pleiku (phường)",
- "truocsn": "Phường Tây Sơn (thành phố Pleiku), Phường Hội Thương, Phường Hoa Lư, Phường Phù Đổng, Xã Trà Đa",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2952\",\"properties\":{\"matinhxa\":\"24.2968\",\"maxa\":2968},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Pờ Tó (xã)",
- "truocsn": "Xã Chư Răng, Xã Pờ Tó",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2960\",\"properties\":{\"matinhxa\":\"24.2976\",\"maxa\":2976},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Quy Nhơn (phường)",
- "truocsn": "Phường Đống Đa (thành phố Quy Nhơn), Phường Hải Cảng, Phường Thị Nại, Phường Trần Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3013\",\"properties\":{\"matinhxa\":\"24.3029\",\"maxa\":3029},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Quy Nhơn Bắc (phường)",
- "truocsn": "Phường Trần Quang Diệu, Phường Nhơn Phú",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3012\",\"properties\":{\"matinhxa\":\"24.3028\",\"maxa\":3028},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Quy Nhơn Đông (phường)",
- "truocsn": "Phường Nhơn Bình, Xã Nhơn Hội, Xã Nhơn Lý, Xã Nhơn Hải",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3014\",\"properties\":{\"matinhxa\":\"24.3030\",\"maxa\":3030},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Quy Nhơn Nam (phường)",
- "truocsn": "Phường Ngô Mây (thành phố Quy Nhơn), Phường Nguyễn Văn Cừ, Phường Quang Trung, Phường Ghềnh Ráng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3027\",\"properties\":{\"matinhxa\":\"24.3043\",\"maxa\":3043},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Quy Nhơn Tây (phường)",
- "truocsn": "Phường Bùi Thị Xuân, Xã Phước Mỹ",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3023\",\"properties\":{\"matinhxa\":\"24.3039\",\"maxa\":3039},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Sơn Lang (xã)",
- "truocsn": "Xã Sơ Pai, Xã Sơn Lang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3052\",\"properties\":{\"matinhxa\":\"24.3068\",\"maxa\":3068},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "SRó (xã)",
- "truocsn": "Xã Đăk Kơ Ning, Xã SRó",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3045\",\"properties\":{\"matinhxa\":\"24.3061\",\"maxa\":3061},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Tam Quan (phường)",
- "truocsn": "Phường Tam Quan, Xã Hoài Châu",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2977\",\"properties\":{\"matinhxa\":\"24.2993\",\"maxa\":2993},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Tây Sơn (xã)",
- "truocsn": "Thị trấn Phú Phong, Xã Tây Xuân, Xã Bình Nghi",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2998\",\"properties\":{\"matinhxa\":\"24.3014\",\"maxa\":3014},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Thống Nhất (phường)",
- "truocsn": "Phường Đống Đa (thành phố Pleiku), Phường Yên Thế, Phường Thống Nhất",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3048\",\"properties\":{\"matinhxa\":\"24.3064\",\"maxa\":3064},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Tơ Tung (xã)",
- "truocsn": "Xã Kông Lơng Khơng, Xã Tơ Tung",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3054\",\"properties\":{\"matinhxa\":\"24.3070\",\"maxa\":3070},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Tuy Phước (xã)",
- "truocsn": "Thị trấn Tuy Phước, Thị trấn Diêu Trì, Xã Phước Thuận, Xã Phước Nghĩa, Xã Phước Lộc",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3019\",\"properties\":{\"matinhxa\":\"24.3035\",\"maxa\":3035},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Tuy Phước Bắc (xã)",
- "truocsn": "Xã Phước Hiệp, Xã Phước Hưng, Xã Phước Quang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3021\",\"properties\":{\"matinhxa\":\"24.3037\",\"maxa\":3037},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Tuy Phước Đông (xã)",
- "truocsn": "Xã Phước Sơn, Xã Phước Hòa, Xã Phước Thắng",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3020\",\"properties\":{\"matinhxa\":\"24.3036\",\"maxa\":3036},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Tuy Phước Tây (xã)",
- "truocsn": "Xã Phước An, Xã Phước Thành",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3022\",\"properties\":{\"matinhxa\":\"24.3038\",\"maxa\":3038},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Uar (xã)",
- "truocsn": "Xã Ia Rsươm, Xã Chư Drăng, Xã Uar",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2972\",\"properties\":{\"matinhxa\":\"24.2988\",\"maxa\":2988},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Vân Canh (xã)",
- "truocsn": "Thị trấn Vân Canh, Xã Canh Thuận, Xã Canh Hòa, Xã Canh Hiệp",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3024\",\"properties\":{\"matinhxa\":\"24.3040\",\"maxa\":3040},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Vạn Đức (xã)",
- "truocsn": "Xã Ân Sơn, Xã Ân Tín, Xã Ân Thạnh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2985\",\"properties\":{\"matinhxa\":\"24.3001\",\"maxa\":3001},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Vĩnh Quang (xã)",
- "truocsn": "Xã Vĩnh Thuận, Xã Vĩnh Hòa, Xã Vĩnh Quang",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3010\",\"properties\":{\"matinhxa\":\"24.3026\",\"maxa\":3026},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Vĩnh Sơn (xã)",
- "truocsn": "Xã Vĩnh Kim, Xã Vĩnh Sơn",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2996\",\"properties\":{\"matinhxa\":\"24.3012\",\"maxa\":3012},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "131",
- "ten": "Vĩnh Thạnh (xã)",
- "truocsn": "Thị trấn Vĩnh Thạnh, Xã Vĩnh Hảo",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2995\",\"properties\":{\"matinhxa\":\"24.3011\",\"maxa\":3011},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "132",
- "ten": "Vĩnh Thịnh (xã)",
- "truocsn": "Xã Vĩnh Hiệp, Xã Vĩnh Thịnh",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2997\",\"properties\":{\"matinhxa\":\"24.3013\",\"maxa\":3013},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "133",
- "ten": "Xuân An (xã)",
- "truocsn": "Xã Cát Nhơn, Xã Cát Tường",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3008\",\"properties\":{\"matinhxa\":\"24.3024\",\"maxa\":3024},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "134",
- "ten": "Ya Hội (xã)",
- "truocsn": "Xã Phú An, Xã Ya Hội",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3044\",\"properties\":{\"matinhxa\":\"24.3060\",\"maxa\":3060},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "135",
- "ten": "Ya Ma (xã)",
- "truocsn": "Xã Đăk Tơ Pang, Xã Kông Yang, Xã Ya Ma",
- "provinceName": "tỉnh Gia Lai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3038\",\"properties\":{\"matinhxa\":\"24.3054\",\"maxa\":3054},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "Bình Kiến (phường)",
- "truocsn": "Xã An Phú, Xã Hòa Kiến, Xã Bình Kiến, Phường 9 (phần còn lại sau khi sáp nhập vào phường Tuy Hòa)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2914\",\"properties\":{\"matinhxa\":\"25.2930\",\"maxa\":2930},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "Buôn Đôn (xã)",
- "truocsn": "Krông Na",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2843\",\"properties\":{\"matinhxa\":\"25.2859\",\"maxa\":2859},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Buôn Hồ (phường)",
- "truocsn": "Phường Đạt Hiếu, Phường An Bình, Phường An Lạc, Phường Thiện An, Phường Thống Nhất, Phường Đoàn Kết",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2848\",\"properties\":{\"matinhxa\":\"25.2864\",\"maxa\":2864},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Buôn Ma Thuột (phường)",
- "truocsn": "Phường Thành Công, Phường Tân Tiến, Phường Tân Thành, Phường Tự An, Phường Tân Lợi, Xã Cư Êbur",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2772\",\"properties\":{\"matinhxa\":\"25.2788\",\"maxa\":2788},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Cư Bao (phường)",
- "truocsn": "Phường Bình Tân, Xã Bình Thuận, Xã Cư Bao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2851\",\"properties\":{\"matinhxa\":\"25.2867\",\"maxa\":2867},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cư M’gar (xã)",
- "truocsn": "Xã Ea H’đing, Xã Ea Kpam, Xã Cư M’gar",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2879\",\"properties\":{\"matinhxa\":\"25.2895\",\"maxa\":2895},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Cư M’ta (xã)",
- "truocsn": "Xã Cư Króa, Xã Cư M’ta",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2861\",\"properties\":{\"matinhxa\":\"25.2877\",\"maxa\":2877},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Cư Pơng (xã)",
- "truocsn": "Xã Ea Sin, Xã Cư Pơng",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2891\",\"properties\":{\"matinhxa\":\"25.2907\",\"maxa\":2907},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cư Prao (xã)",
- "truocsn": "Xã Ea Pil, Xã Cư Prao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2894\",\"properties\":{\"matinhxa\":\"25.2910\",\"maxa\":2910},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cư Pui (xã)",
- "truocsn": "Xã Hòa Phong (huyện Krông Bông), Xã Cư Pui",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2866\",\"properties\":{\"matinhxa\":\"25.2882\",\"maxa\":2882},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cư Yang (xã)",
- "truocsn": "Xã Cư Bông, Xã Cư Yang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2858\",\"properties\":{\"matinhxa\":\"25.2874\",\"maxa\":2874},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cuôr Đăng (xã)",
- "truocsn": "Xã Ea Drơng, Xã Cuôr Đăng",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2847\",\"properties\":{\"matinhxa\":\"25.2863\",\"maxa\":2863},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đắk Liêng (xã)",
- "truocsn": "Xã Buôn Tría, Xã Buôn Triết, Xã Đắk Liêng",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2885\",\"properties\":{\"matinhxa\":\"25.2901\",\"maxa\":2901},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đắk Phơi (xã)",
- "truocsn": "Xã Đắk Nuê, Xã Đắk Phơi",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2886\",\"properties\":{\"matinhxa\":\"25.2902\",\"maxa\":2902},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Dang Kang (xã)",
- "truocsn": "Xã Hòa Thành (huyện Krông Bông), Xã Cư Kty, Xã Dang Kang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2865\",\"properties\":{\"matinhxa\":\"25.2881\",\"maxa\":2881},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Dliê Ya (xã)",
- "truocsn": "Xã Ea Tóh, Xã Ea Tân, Xã Dliê Ya",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2892\",\"properties\":{\"matinhxa\":\"25.2908\",\"maxa\":2908},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đông Hòa (phường)",
- "truocsn": "Phường Hòa Vinh, Phường Hòa Xuân Tây, Xã Hòa Tân Đông",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2922\",\"properties\":{\"matinhxa\":\"25.2938\",\"maxa\":2938},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đồng Xuân (xã)",
- "truocsn": "Thị trấn La Hai, Xã Xuân Sơn Nam, Xã Xuân Sơn Bắc, Xã Xuân Long, Xã Xuân Quang 2",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2897\",\"properties\":{\"matinhxa\":\"25.2913\",\"maxa\":2913},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Dray Bhăng (xã)",
- "truocsn": "Xã Hòa Hiệp, Xã Dray Bhăng, Xã Ea Bhốk",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2883\",\"properties\":{\"matinhxa\":\"25.2899\",\"maxa\":2899},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đức Bình (xã)",
- "truocsn": "Xã Sơn Giang, Xã Đức Bình Đông, Xã Đức Bình Tây, Xã Ea Bia",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2911\",\"properties\":{\"matinhxa\":\"25.2927\",\"maxa\":2927},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Dur Kmăl (xã)",
- "truocsn": "Xã Băng A Drênh, Xã Dur Kmăl",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2884\",\"properties\":{\"matinhxa\":\"25.2900\",\"maxa\":2900},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Ea Bá (xã)",
- "truocsn": "Xã Ea Bá, Xã Ea Bar (huyện Sông Hinh) (phần còn lại sau khi sáp nhập vào xã Ea Ly)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2912\",\"properties\":{\"matinhxa\":\"25.2928\",\"maxa\":2928},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Ea Bung (xã)",
- "truocsn": "Xã Ya Tờ Mốt, Xã Ea Bung",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2786\",\"properties\":{\"matinhxa\":\"25.2802\",\"maxa\":2802},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Ea Drăng (xã)",
- "truocsn": "Thị trấn Ea Drăng, Xã Ea Ral, Xã Dliê Yang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2888\",\"properties\":{\"matinhxa\":\"25.2904\",\"maxa\":2904},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Ea Drông (xã)",
- "truocsn": "Xã Ea Siên, Xã Ea Drông",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2850\",\"properties\":{\"matinhxa\":\"25.2866\",\"maxa\":2866},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Ea H’Leo (xã)",
- "truocsn": "xã Ea H’Leo (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2779\",\"properties\":{\"matinhxa\":\"25.2795\",\"maxa\":2795},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Ea Hiao (xã)",
- "truocsn": "Xã Ea Sol, Xã Ea Hiao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2889\",\"properties\":{\"matinhxa\":\"25.2905\",\"maxa\":2905},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Ea Kao (phường)",
- "truocsn": "Phường Ea Tam, Xã Ea Kao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2877\",\"properties\":{\"matinhxa\":\"25.2893\",\"maxa\":2893},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Ea Kar (xã)",
- "truocsn": "Thị trấn Ea Kar, Xã Cư Huê, Xã Ea Đar, Xã Ea Kmút, Xã Cư Ni, Xã Xuân Phú",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2854\",\"properties\":{\"matinhxa\":\"25.2870\",\"maxa\":2870},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Ea Khăl (xã)",
- "truocsn": "Xã Ea Nam, Xã Ea Tir, Xã Ea Khăl",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2781\",\"properties\":{\"matinhxa\":\"25.2797\",\"maxa\":2797},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Ea Kiết (xã)",
- "truocsn": "Xã Ea Kuêh, Xã Ea Kiết",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2844\",\"properties\":{\"matinhxa\":\"25.2860\",\"maxa\":2860},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Ea Kly (xã)",
- "truocsn": "Xã Krông Búk, Xã Ea Kly",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2870\",\"properties\":{\"matinhxa\":\"25.2886\",\"maxa\":2886},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Ea Knốp (xã)",
- "truocsn": "Thị trấn Ea Knốp, Xã Ea Tih, Xã Ea Sô, Xã Ea Sar",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2855\",\"properties\":{\"matinhxa\":\"25.2871\",\"maxa\":2871},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Ea Knuếc (xã)",
- "truocsn": "Xã Hòa Đông, Xã Ea Kênh, Xã Ea Knuếc",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2880\",\"properties\":{\"matinhxa\":\"25.2896\",\"maxa\":2896},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Ea Ktur (xã)",
- "truocsn": "Xã Ea Tiêu, Xã Ea Ktur, Xã Ea Bhốk (phần còn lại sau khi sáp nhập vào xã Dray Bhăng)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2882\",\"properties\":{\"matinhxa\":\"25.2898\",\"maxa\":2898},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Ea Ly (xã)",
- "truocsn": "Xã Ea Lâm, Xã Ea Ly, Xã Ea Bar (huyện Sông Hinh)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2910\",\"properties\":{\"matinhxa\":\"25.2926\",\"maxa\":2926},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Ea M’Droh (xã)",
- "truocsn": "Xã Quảng Hiệp, Xã Ea M’nang, Xã Ea M’Droh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2845\",\"properties\":{\"matinhxa\":\"25.2861\",\"maxa\":2861},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Ea Na (xã)",
- "truocsn": "Xã Ea Bông, Xã Dray Sáp, Xã Ea Na",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2777\",\"properties\":{\"matinhxa\":\"25.2793\",\"maxa\":2793},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Ea Ning (xã)",
- "truocsn": "Xã Cư Êwi, Xã Ea Hu, Xã Ea Ning",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2881\",\"properties\":{\"matinhxa\":\"25.2897\",\"maxa\":2897},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Ea Nuôl (xã)",
- "truocsn": "Xã Ea Bar (huyện Buôn Đôn), Xã Cuôr Knia, Xã Ea Nuôl",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2774\",\"properties\":{\"matinhxa\":\"25.2790\",\"maxa\":2790},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Ea Ô (xã)",
- "truocsn": "Xã Cư Elang, Xã Ea Ô",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2857\",\"properties\":{\"matinhxa\":\"25.2873\",\"maxa\":2873},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Ea Păl (xã)",
- "truocsn": "Xã Cư Prông, Xã Ea Păl",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2856\",\"properties\":{\"matinhxa\":\"25.2872\",\"maxa\":2872},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Ea Phê (xã)",
- "truocsn": "Xã Ea Kuăng, Xã Ea Hiu, Xã Ea Phê",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2871\",\"properties\":{\"matinhxa\":\"25.2887\",\"maxa\":2887},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Ea Riêng (xã)",
- "truocsn": "Xã Ea H’Mlay, Xã Ea M’Doal, Xã Ea Riêng",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2860\",\"properties\":{\"matinhxa\":\"25.2876\",\"maxa\":2876},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Ea Rốk (xã)",
- "truocsn": "Xã Ia Jlơi, Xã Cư Kbang, Xã Ea Rốk",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2784\",\"properties\":{\"matinhxa\":\"25.2800\",\"maxa\":2800},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Ea Súp (xã)",
- "truocsn": "Thị trấn Ea Súp, Xã Cư M’Lan, Xã Ea Lê",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2782\",\"properties\":{\"matinhxa\":\"25.2798\",\"maxa\":2798},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Ea Trang (xã)",
- "truocsn": "xã Ea Trang (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2863\",\"properties\":{\"matinhxa\":\"25.2879\",\"maxa\":2879},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Ea Tul (xã)",
- "truocsn": "Xã Ea Tar, Xã Cư Dliê Mnông, Xã Ea Tul",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2846\",\"properties\":{\"matinhxa\":\"25.2862\",\"maxa\":2862},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Ea Wer (xã)",
- "truocsn": "Xã Ea Huar, Xã Tân Hòa, Xã Ea Wer",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2775\",\"properties\":{\"matinhxa\":\"25.2791\",\"maxa\":2791},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Ea Wy (xã)",
- "truocsn": "Xã Cư A Mung, Xã Cư Mốt, Xã Ea Wy",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2780\",\"properties\":{\"matinhxa\":\"25.2796\",\"maxa\":2796},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Hòa Hiệp (phường)",
- "truocsn": "Phường Hòa Hiệp Trung, Phường Hòa Hiệp Nam, Phường Hòa Hiệp Bắc (phần còn lại sau khi sáp nhập vào phường Phú Yên)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2923\",\"properties\":{\"matinhxa\":\"25.2939\",\"maxa\":2939},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Hòa Mỹ (xã)",
- "truocsn": "Xã Hòa Mỹ Đông, Xã Hòa Mỹ Tây",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2924\",\"properties\":{\"matinhxa\":\"25.2940\",\"maxa\":2940},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Hòa Phú (xã)",
- "truocsn": "Xã Hòa Phú (thành phố Buôn Ma Thuột), Xã Hòa Xuân, Xã Hòa Khánh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2773\",\"properties\":{\"matinhxa\":\"25.2789\",\"maxa\":2789},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Hòa Sơn (xã)",
- "truocsn": "Xã Yang Reh, Xã Ea Trul, Xã Hòa Sơn",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2867\",\"properties\":{\"matinhxa\":\"25.2883\",\"maxa\":2883},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Hòa Thịnh (xã)",
- "truocsn": "Xã Hòa Đồng, Xã Hòa Thịnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2926\",\"properties\":{\"matinhxa\":\"25.2942\",\"maxa\":2942},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Hòa Xuân (xã)",
- "truocsn": "Xã Hòa Tâm, Xã Hòa Xuân Đông, Xã Hòa Xuân Nam",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2925\",\"properties\":{\"matinhxa\":\"25.2941\",\"maxa\":2941},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Ia Lốp (xã)",
- "truocsn": "xã Ia Lốp (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2783\",\"properties\":{\"matinhxa\":\"25.2799\",\"maxa\":2799},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Ia Rvê (xã)",
- "truocsn": "xã Ia Rvê (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2785\",\"properties\":{\"matinhxa\":\"25.2801\",\"maxa\":2801},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Krông Á (xã)",
- "truocsn": "Xã Cư San, Xã Krông Á",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2862\",\"properties\":{\"matinhxa\":\"25.2878\",\"maxa\":2878},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Krông Ana (xã)",
- "truocsn": "Thị trấn Buôn Trấp, Xã Bình Hòa, Xã Quảng Điền",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2776\",\"properties\":{\"matinhxa\":\"25.2792\",\"maxa\":2792},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Krông Bông (xã)",
- "truocsn": "Thị trấn Krông Kmar, Xã Hòa Lễ, Xã Khuê Ngọc Điền",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2864\",\"properties\":{\"matinhxa\":\"25.2880\",\"maxa\":2880},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Krông Búk (xã)",
- "truocsn": "Xã Cư Né, Xã Chứ Kbô",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2890\",\"properties\":{\"matinhxa\":\"25.2906\",\"maxa\":2906},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Krông Năng (xã)",
- "truocsn": "Thị trấn Krông Năng, Xã Phú Lộc, Xã Ea Hồ",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2852\",\"properties\":{\"matinhxa\":\"25.2868\",\"maxa\":2868},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Krông Nô (xã)",
- "truocsn": "xã Krông Nô (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2887\",\"properties\":{\"matinhxa\":\"25.2903\",\"maxa\":2903},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Krông Pắc (xã)",
- "truocsn": "Thị trấn Phước An, Xã Hòa An (huyện Krông Pắc), Xã Ea Yông, Xã Hòa Tiến",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2869\",\"properties\":{\"matinhxa\":\"25.2885\",\"maxa\":2885},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Liên Sơn Lắk (xã)",
- "truocsn": "Thị trấn Liên Sơn, Xã Yang Tao, Xã Bông Krang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2874\",\"properties\":{\"matinhxa\":\"25.2890\",\"maxa\":2890},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "M’Drắk (xã)",
- "truocsn": "Thị trấn M’Drắk, Xã Krông Jing, Xã Ea Lai",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2859\",\"properties\":{\"matinhxa\":\"25.2875\",\"maxa\":2875},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nam Ka (xã)",
- "truocsn": "Xã Ea Rbin, Xã Nam Ka",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2778\",\"properties\":{\"matinhxa\":\"25.2794\",\"maxa\":2794},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Ô Loan (xã)",
- "truocsn": "Xã An Hiệp, Xã An Hòa Hải, Xã An Cư",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2905\",\"properties\":{\"matinhxa\":\"25.2921\",\"maxa\":2921},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Phú Hòa 1 (xã)",
- "truocsn": "Thị trấn Phú Hòa, Xã Hòa Thắng (huyện Phú Hòa), Xã Hòa Định Đông, Xã Hòa Định Tây, Xã Hòa Hội, Xã Hòa An (huyện Phú Hòa)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2928\",\"properties\":{\"matinhxa\":\"25.2944\",\"maxa\":2944},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Phú Hòa 2 (xã)",
- "truocsn": "Xã Hòa Quang Nam, Xã Hòa Quang Bắc, Xã Hòa Trị",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2927\",\"properties\":{\"matinhxa\":\"25.2943\",\"maxa\":2943},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Phú Mỡ (xã)",
- "truocsn": "Xã Xuân Quang 1, Xã Phú Mỡ",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2898\",\"properties\":{\"matinhxa\":\"25.2914\",\"maxa\":2914},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Phú Xuân (xã)",
- "truocsn": "Xã Ea Púk, Xã Ea Dăh, Xã Phú Xuân",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2853\",\"properties\":{\"matinhxa\":\"25.2869\",\"maxa\":2869},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Phú Yên (phường)",
- "truocsn": "Phường Phú Đông, Phường Phú Lâm, Phường Phú Thạnh, Xã Hòa Thành (thị xã Đông Hòa), Phường Hòa Hiệp Bắc, Xã Hòa Bình 1 (phần còn lại sau khi sáp nhập vào xã Tây Hòa)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2913\",\"properties\":{\"matinhxa\":\"25.2929\",\"maxa\":2929},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Pơng Drang (xã)",
- "truocsn": "Thị trấn Pơng Drang, Xã Ea Ngai, Xã Tân Lập",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2849\",\"properties\":{\"matinhxa\":\"25.2865\",\"maxa\":2865},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Quảng Phú (xã)",
- "truocsn": "Thị trấn Quảng Phú, Thị trấn Ea Pốk, Xã Cư Suê, Xã Quảng Tiến",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2878\",\"properties\":{\"matinhxa\":\"25.2894\",\"maxa\":2894},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Sơn Hòa (xã)",
- "truocsn": "Thị trấn Củng Sơn, Xã Suối Bạc, Xã Sơn Hà, Xã Sơn Nguyên, Xã Sơn Phước",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2900\",\"properties\":{\"matinhxa\":\"25.2916\",\"maxa\":2916},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Sơn Thành (xã)",
- "truocsn": "Xã Hòa Phú (huyện Tây Hòa), Xã Sơn Thành Đông, Xã Sơn Thành Tây",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2920\",\"properties\":{\"matinhxa\":\"25.2936\",\"maxa\":2936},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Sông Cầu (phường)",
- "truocsn": "Phường Xuân Yên, Phường Xuân Phú, Xã Xuân Phương, Xã Xuân Thịnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2915\",\"properties\":{\"matinhxa\":\"25.2931\",\"maxa\":2931},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Sông Hinh (xã)",
- "truocsn": "Thị trấn Hai Riêng, Xã Ea Trol, Xã Sông Hinh, Xã Ea Bia (phần còn lại sau khi sáp nhập vào xã Đức Bình)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2919\",\"properties\":{\"matinhxa\":\"25.2935\",\"maxa\":2935},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Suối Trai (xã)",
- "truocsn": "Xã Ea Chà Rang, Xã Krông Pa, Xã Suối Trai",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2909\",\"properties\":{\"matinhxa\":\"25.2925\",\"maxa\":2925},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tam Giang (xã)",
- "truocsn": "Xã Ea Tam, Xã Cư Klông, Xã Tam Giang",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2893\",\"properties\":{\"matinhxa\":\"25.2909\",\"maxa\":2909},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tân An (phường)",
- "truocsn": "Phường Tân An, Xã Ea Tu, Xã Hòa Thuận",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2876\",\"properties\":{\"matinhxa\":\"25.2892\",\"maxa\":2892},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tân Lập (phường)",
- "truocsn": "Phường Tân Hòa, Phường Tân Lập, Xã Hòa Thắng (thành phố Buôn Ma Thuột)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2875\",\"properties\":{\"matinhxa\":\"25.2891\",\"maxa\":2891},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Ea Yiêng, Xã Ea Uy, Xã Tân Tiến",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2872\",\"properties\":{\"matinhxa\":\"25.2888\",\"maxa\":2888},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tây Hòa (xã)",
- "truocsn": "Thị trấn Phú Thứ, Xã Hòa Phong (huyện Tây Hòa), Xã Hòa Tân Tây, Xã Hòa Bình 1",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2921\",\"properties\":{\"matinhxa\":\"25.2937\",\"maxa\":2937},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tây Sơn (xã)",
- "truocsn": "Xã Sơn Hội, Xã Cà Lúi, Xã Phước Tân",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2907\",\"properties\":{\"matinhxa\":\"25.2923\",\"maxa\":2923},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Thành Nhất (phường)",
- "truocsn": "Phường Khánh Xuân, Phường Thành Nhất",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2771\",\"properties\":{\"matinhxa\":\"25.2786\",\"maxa\":2786},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tuy An Bắc (xã)",
- "truocsn": "Thị trấn Chí Thạnh, Xã An Dân, Xã An Định",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2902\",\"properties\":{\"matinhxa\":\"25.2918\",\"maxa\":2918},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tuy An Đông (xã)",
- "truocsn": "Xã An Ninh Đông, Xã An Ninh Tây, Xã An Thạch",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2903\",\"properties\":{\"matinhxa\":\"25.2919\",\"maxa\":2919},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tuy An Nam (xã)",
- "truocsn": "Xã An Thọ, Xã An Mỹ, Xã An Chấn",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2906\",\"properties\":{\"matinhxa\":\"25.2922\",\"maxa\":2922},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Tuy An Tây (xã)",
- "truocsn": "Xã An Nghiệp, Xã An Xuân, Xã An Lĩnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2904\",\"properties\":{\"matinhxa\":\"25.2920\",\"maxa\":2920},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tuy Hòa (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 4, Phường 5, Phường 7, Phường 9, Xã Hòa An (huyện Phú Hòa) (phần còn lại sau khi sáp nhập vào xã Phú Hòa 1), Xã Hòa Trị (phần còn lại sau khi sáp nhập vào xã Phú Hòa 2)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2895\",\"properties\":{\"matinhxa\":\"25.2911\",\"maxa\":2911},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vân Hòa (xã)",
- "truocsn": "Xã Sơn Long, Xã Sơn Xuân, Xã Sơn Định",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2908\",\"properties\":{\"matinhxa\":\"25.2924\",\"maxa\":2924},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Vụ Bổn (xã)",
- "truocsn": "xã Vụ Bổn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2873\",\"properties\":{\"matinhxa\":\"25.2889\",\"maxa\":2889},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Xuân Cảnh (xã)",
- "truocsn": "Xã Xuân Bình, Xã Xuân Cảnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2918\",\"properties\":{\"matinhxa\":\"25.2934\",\"maxa\":2934},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Xuân Đài (phường)",
- "truocsn": "Phường Xuân Thành, Phường Xuân Đài",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2896\",\"properties\":{\"matinhxa\":\"25.2912\",\"maxa\":2912},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Xuân Lãnh (xã)",
- "truocsn": "Xã Đa Lộc, Xã Xuân Lãnh",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2899\",\"properties\":{\"matinhxa\":\"25.2915\",\"maxa\":2915},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Xuân Lộc (xã)",
- "truocsn": "Xã Xuân Hải, Xã Xuân Lộc",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2917\",\"properties\":{\"matinhxa\":\"25.2933\",\"maxa\":2933},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Xuân Phước (xã)",
- "truocsn": "Xã Xuân Quang 3, Xã Xuân Phước",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2901\",\"properties\":{\"matinhxa\":\"25.2917\",\"maxa\":2917},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Xuân Thọ (xã)",
- "truocsn": "Xã Xuân Lâm, Xã Xuân Thọ 1, Xã Xuân Thọ 2",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2916\",\"properties\":{\"matinhxa\":\"25.2932\",\"maxa\":2932},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Yang Mao (xã)",
- "truocsn": "Xã Cư Drăm, Xã Yang Mao",
- "provinceName": "tỉnh Đắk Lắk",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2868\",\"properties\":{\"matinhxa\":\"25.2884\",\"maxa\":2884},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "1 Bảo Lộc (phường)",
- "truocsn": "Phường 1 (thành phố Bảo Lộc), Phường Lộc Phát, Xã Lộc Thanh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1070\",\"properties\":{\"matinhxa\":\"26.1081\",\"maxa\":1081},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "2 Bảo Lộc (phường)",
- "truocsn": "Phường 2 (thành phố Bảo Lộc), Xã Lộc Tân, Xã ĐamBri",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1072\",\"properties\":{\"matinhxa\":\"26.1083\",\"maxa\":1083},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "3 Bảo Lộc (phường)",
- "truocsn": "Phường Lộc Tiến, Xã Lộc Châu, Xã Đại Lào",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1071\",\"properties\":{\"matinhxa\":\"26.1082\",\"maxa\":1082},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "B’Lao (phường)",
- "truocsn": "Phường Lộc Sơn, Phường B’Lao, Xã Lộc Nga",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1073\",\"properties\":{\"matinhxa\":\"26.1084\",\"maxa\":1084},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bắc Bình (xã)",
- "truocsn": "Thị trấn Chợ Lầu, Xã Phan Hòa, Xã Phan Hiệp, Xã Phan Rí Thành",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3075\",\"properties\":{\"matinhxa\":\"26.3091\",\"maxa\":3091},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bắc Gia Nghĩa (phường)",
- "truocsn": "Phường Quảng Thành, Phường Nghĩa Thành, Phường Nghĩa Đức, Xã Đắk Ha",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2810\",\"properties\":{\"matinhxa\":\"26.2826\",\"maxa\":2826},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bắc Ruộng (xã)",
- "truocsn": "Xã Măng Tố, Xã Bắc Ruộng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3090\",\"properties\":{\"matinhxa\":\"26.3106\",\"maxa\":3106},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bảo Lâm 1 (xã)",
- "truocsn": "Thị trấn Lộc Thắng, Xã Lộc Quảng, Xã Lộc Ngãi",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1074\",\"properties\":{\"matinhxa\":\"26.1085\",\"maxa\":1085},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bảo Lâm 2 (xã)",
- "truocsn": "Xã Lộc An, Xã Lộc Đức, Xã Tân Lạc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1277\",\"properties\":{\"matinhxa\":\"26.1288\",\"maxa\":1288},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bảo Lâm 3 (xã)",
- "truocsn": "Xã Lộc Thành, Xã Lộc Nam",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1271\",\"properties\":{\"matinhxa\":\"26.1282\",\"maxa\":1282},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bảo Lâm 4 (xã)",
- "truocsn": "Xã Lộc Phú, Xã Lộc Lâm, Xã B’Lá",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1270\",\"properties\":{\"matinhxa\":\"26.1281\",\"maxa\":1281},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bảo Lâm 5 (xã)",
- "truocsn": "Xã Lộc Bảo, Xã Lộc Bắc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1269\",\"properties\":{\"matinhxa\":\"26.1280\",\"maxa\":1280},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bảo Thuận (xã)",
- "truocsn": "Xã Đinh Lạc, Xã Tân Nghĩa, Xã Bảo Thuận",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.440\",\"properties\":{\"matinhxa\":\"26.440\",\"maxa\":440},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bình Thuận (phường)",
- "truocsn": "Phường Phú Tài, Xã Phong Nẫm, Xã Hàm Hiệp",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3067\",\"properties\":{\"matinhxa\":\"26.3083\",\"maxa\":3083},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cam Ly - Đà Lạt (phường)",
- "truocsn": "Phường 5, Phường 6, Xã Tà Nung",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.182\",\"properties\":{\"matinhxa\":\"26.182\",\"maxa\":182},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cát Tiên (xã)",
- "truocsn": "Thị trấn Cát Tiên, Xã Nam Ninh, Xã Quảng Ngãi",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1051\",\"properties\":{\"matinhxa\":\"26.1062\",\"maxa\":1062},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Cát Tiên 2 (xã)",
- "truocsn": "Thị trấn Phước Cát, Xã Phước Cát 2, Xã Đức Phổ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1052\",\"properties\":{\"matinhxa\":\"26.1063\",\"maxa\":1063},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cát Tiên 3 (xã)",
- "truocsn": "Xã Gia Viễn, Xã Tiên Hoàng, Xã Đồng Nai Thượng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1069\",\"properties\":{\"matinhxa\":\"26.1080\",\"maxa\":1080},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Cư Jút (xã)",
- "truocsn": "Thị trấn Ea T’ling, Xã Trúc Sơn, Xã Tâm Thắng, Xã Cư K’nia",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2842\",\"properties\":{\"matinhxa\":\"26.2858\",\"maxa\":2858},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "D’Ran (xã)",
- "truocsn": "Thị trấn D’Ran, Xã Lạc Xuân",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.279\",\"properties\":{\"matinhxa\":\"26.279\",\"maxa\":279},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đạ Huoai (xã)",
- "truocsn": "Thị trấn Mađaguôi, Xã Mađaguôi, Xã Đạ Oai",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1278\",\"properties\":{\"matinhxa\":\"26.1289\",\"maxa\":1289},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đạ Huoai 2 (xã)",
- "truocsn": "Thị trấn Đạ M’ri, Xã Hà Lâm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1272\",\"properties\":{\"matinhxa\":\"26.1283\",\"maxa\":1283},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Đạ Huoai 3 (xã)",
- "truocsn": "xã Bà Gia",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1279\",\"properties\":{\"matinhxa\":\"26.1290\",\"maxa\":1290},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Đạ Tẻh (xã)",
- "truocsn": "Thị trấn Đạ Tẻh, Xã An Nhơn, Xã Đạ Lây",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1050\",\"properties\":{\"matinhxa\":\"26.1061\",\"maxa\":1061},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đạ Tẻh 2 (xã)",
- "truocsn": "Xã Quảng Trị, Xã Đạ Pal, Xã Đạ Kho",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1274\",\"properties\":{\"matinhxa\":\"26.1285\",\"maxa\":1285},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đạ Tẻh 3 (xã)",
- "truocsn": "Xã Mỹ Đức, Xã Quốc Oai",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1273\",\"properties\":{\"matinhxa\":\"26.1284\",\"maxa\":1284},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đắk Mil (xã)",
- "truocsn": "Xã Đắk Gằn, Xã Đắk N’Drót, Xã Đắk R’La",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2804\",\"properties\":{\"matinhxa\":\"26.2820\",\"maxa\":2820},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đắk Sắk (xã)",
- "truocsn": "Xã Nam Xuân, Xã Long Sơn, Xã Đắk Sắk",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2805\",\"properties\":{\"matinhxa\":\"26.2821\",\"maxa\":2821},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Đắk Song (xã)",
- "truocsn": "Xã Đắk Môl, Xã Đắk Hòa",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2833\",\"properties\":{\"matinhxa\":\"26.2849\",\"maxa\":2849},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Đắk Wil (xã)",
- "truocsn": "Xã Ea Pô, Xã Đắk Wil",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2798\",\"properties\":{\"matinhxa\":\"26.2814\",\"maxa\":2814},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Đam Rông 1 (xã)",
- "truocsn": "Xã Phi Liêng, Xã Đạ K’Nàng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.277\",\"properties\":{\"matinhxa\":\"26.277\",\"maxa\":277},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Đam Rông 2 (xã)",
- "truocsn": "Xã Rô Men, Xã Liêng Srônh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.122\",\"properties\":{\"matinhxa\":\"26.122\",\"maxa\":122},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Đam Rông 3 (xã)",
- "truocsn": "Xã Đạ Rsal, Xã Đạ M’Rông",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.146\",\"properties\":{\"matinhxa\":\"26.146\",\"maxa\":146},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Đam Rông 4 (xã)",
- "truocsn": "Xã Đạ Tông, Xã Đạ Long, Xã Đưng K’Nớ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.145\",\"properties\":{\"matinhxa\":\"26.145\",\"maxa\":145},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Di Linh (xã)",
- "truocsn": "Thị trấn Di Linh, Xã Liên Đầm, Xã Tân Châu, Xã Gung Ré",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.144\",\"properties\":{\"matinhxa\":\"26.144\",\"maxa\":144},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Đinh Trang Thượng (xã)",
- "truocsn": "Xã Tân Lâm, Xã Tân Thượng, Xã Đinh Trang Thượng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.443\",\"properties\":{\"matinhxa\":\"26.443\",\"maxa\":443},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Đinh Văn Lâm Hà (xã)",
- "truocsn": "Xã Bình Thạnh (huyện Đức Trọng), Xã Tân Văn, Thị trấn Đinh Văn",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.274\",\"properties\":{\"matinhxa\":\"26.274\",\"maxa\":274},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Đơn Dương (xã)",
- "truocsn": "Thị trấn Thạnh Mỹ, Xã Đạ Ròn, Xã Tu Tra",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.288\",\"properties\":{\"matinhxa\":\"26.288\",\"maxa\":288},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Đông Gia Nghĩa (phường)",
- "truocsn": "Phường Nghĩa Trung, Xã Đắk Nia",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2812\",\"properties\":{\"matinhxa\":\"26.2828\",\"maxa\":2828},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Đông Giang (xã)",
- "truocsn": "Xã Đông Tiến, Xã Đông Giang",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3062\",\"properties\":{\"matinhxa\":\"26.3078\",\"maxa\":3078},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Đồng Kho (xã)",
- "truocsn": "Xã Huy Khiêm, Xã La Ngâu, Xã Đức Bình, Xã Đồng Kho",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3092\",\"properties\":{\"matinhxa\":\"26.3108\",\"maxa\":3108},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Đức An (xã)",
- "truocsn": "Thị trấn Đức An, Xã Đắk N’Drung, Xã Nam Bình",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2832\",\"properties\":{\"matinhxa\":\"26.2848\",\"maxa\":2848},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Đức Lập (xã)",
- "truocsn": "Thị trấn Đắk Mil, Xã Đức Mạnh, Xã Đức Minh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2802\",\"properties\":{\"matinhxa\":\"26.2818\",\"maxa\":2818},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Đức Linh (xã)",
- "truocsn": "Thị trấn Võ Xu, Xã Nam Chính, Xã Vũ Hòa",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3094\",\"properties\":{\"matinhxa\":\"26.3110\",\"maxa\":3110},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Đức Trọng (xã)",
- "truocsn": "Thị trấn Liên Nghĩa, Xã Phú Hội",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.344\",\"properties\":{\"matinhxa\":\"26.344\",\"maxa\":344},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Gia Hiệp (xã)",
- "truocsn": "Xã Tam Bố, Xã Gia Hiệp",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.441\",\"properties\":{\"matinhxa\":\"26.441\",\"maxa\":441},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Hải Ninh (xã)",
- "truocsn": "Xã Bình An, Xã Phan Điền, Xã Hải Ninh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3077\",\"properties\":{\"matinhxa\":\"26.3093\",\"maxa\":3093},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Hàm Kiệm (xã)",
- "truocsn": "Xã Mương Mán, Xã Hàm Cường, Xã Hàm Kiệm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3087\",\"properties\":{\"matinhxa\":\"26.3103\",\"maxa\":3103},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Hàm Liêm (xã)",
- "truocsn": "Xã Hàm Chính, Xã Hàm Liêm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3083\",\"properties\":{\"matinhxa\":\"26.3099\",\"maxa\":3099},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Hàm Tân (xã)",
- "truocsn": "Xã Tân Hà (huyện Hàm Tân), Xã Tân Xuân, Thị trấn Tân Nghĩa",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3101\",\"properties\":{\"matinhxa\":\"26.3117\",\"maxa\":3117},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Hàm Thắng (phường)",
- "truocsn": "Phường Xuân An, Thị trấn Phú Long, Xã Hàm Thắng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3069\",\"properties\":{\"matinhxa\":\"26.3085\",\"maxa\":3085},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Hàm Thạnh (xã)",
- "truocsn": "Xã Mỹ Thạnh, Xã Hàm Cần, Xã Hàm Thạnh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3086\",\"properties\":{\"matinhxa\":\"26.3102\",\"maxa\":3102},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Hàm Thuận (xã)",
- "truocsn": "Thị trấn Ma Lâm, Xã Thuận Minh, Xã Hàm Đức",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3063\",\"properties\":{\"matinhxa\":\"26.3079\",\"maxa\":3079},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Hàm Thuận Bắc (xã)",
- "truocsn": "Xã Thuận Hòa, Xã Hàm Trí, Xã Hàm Phú",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3159\",\"properties\":{\"matinhxa\":\"26.3175\",\"maxa\":3175},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Hàm Thuận Nam (xã)",
- "truocsn": "Thị trấn Thuận Nam, Xã Hàm Minh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3085\",\"properties\":{\"matinhxa\":\"26.3101\",\"maxa\":3101},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Hiệp Thạnh (xã)",
- "truocsn": "Xã Hiệp An, Xã Liên Hiệp, Xã Hiệp Thạnh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.345\",\"properties\":{\"matinhxa\":\"26.345\",\"maxa\":345},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Hòa Bắc (xã)",
- "truocsn": "Xã Hòa Nam, Xã Hòa Bắc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1276\",\"properties\":{\"matinhxa\":\"26.1287\",\"maxa\":1287},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Hòa Ninh (xã)",
- "truocsn": "Xã Đinh Trang Hòa, Xã Hòa Trung, Xã Hòa Ninh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1275\",\"properties\":{\"matinhxa\":\"26.1286\",\"maxa\":1286},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Hòa Thắng (xã)",
- "truocsn": "Xã Hồng Phong, Xã Hòa Thắng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3081\",\"properties\":{\"matinhxa\":\"26.3097\",\"maxa\":3097},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Hoài Đức (xã)",
- "truocsn": "Thị trấn Đức Tài, Xã Đức Tín, Xã Đức Hạnh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3096\",\"properties\":{\"matinhxa\":\"26.3112\",\"maxa\":3112},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Hồng Sơn (xã)",
- "truocsn": "Xã Hồng Liêm, Xã Hồng Sơn",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3082\",\"properties\":{\"matinhxa\":\"26.3098\",\"maxa\":3098},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Hồng Thái (xã)",
- "truocsn": "Xã Phan Thanh, Xã Hồng Thái, Xã Hòa Thắng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3080\",\"properties\":{\"matinhxa\":\"26.3096\",\"maxa\":3096},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Ka Đô (xã)",
- "truocsn": "Xã Lạc Lâm, Xã Ka Đô",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.342\",\"properties\":{\"matinhxa\":\"26.342\",\"maxa\":342},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Kiến Đức (xã)",
- "truocsn": "Thị trấn Kiến Đức, Xã Đạo Nghĩa, Xã Nghĩa Thắng, Xã Kiến Thành",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2768\",\"properties\":{\"matinhxa\":\"26.2783\",\"maxa\":2783},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Krông Nô (xã)",
- "truocsn": "Xã Tân Thành (huyện Krông Nô), Xã Đắk Drô, Thị trấn Đắk Mâm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2807\",\"properties\":{\"matinhxa\":\"26.2823\",\"maxa\":2823},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "La Dạ (xã)",
- "truocsn": "Xã Đa Mi, Xã La Dạ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3084\",\"properties\":{\"matinhxa\":\"26.3100\",\"maxa\":3100},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "La Gi (phường)",
- "truocsn": "Phường Tân An, Phường Bình Tân, Phường Tân Thiện, Xã Tân Bình",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3100\",\"properties\":{\"matinhxa\":\"26.3116\",\"maxa\":3116},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Lạc Dương (xã)",
- "truocsn": "Xã Đạ Sar, Xã Đạ Nhim, Xã Đạ Chais",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.184\",\"properties\":{\"matinhxa\":\"26.184\",\"maxa\":184},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Lâm Viên - Đà Lạt (phường)",
- "truocsn": "Phường 8, Phường 9, Phường 12",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.180\",\"properties\":{\"matinhxa\":\"26.180\",\"maxa\":180},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Lang Biang - Đà Lạt (phường)",
- "truocsn": "Phường 7, Thị trấn Lạc Dương, Xã Lát",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.177\",\"properties\":{\"matinhxa\":\"26.177\",\"maxa\":177},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Liên Hương (xã)",
- "truocsn": "Thị trấn Liên Hương, Xã Bình Thạnh (huyện Tuy Phong), Xã Phước Thể, Xã Phú Lạc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3071\",\"properties\":{\"matinhxa\":\"26.3087\",\"maxa\":3087},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Lương Sơn (xã)",
- "truocsn": "Thị trấn Lương Sơn, Xã Sông Bình",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3079\",\"properties\":{\"matinhxa\":\"26.3095\",\"maxa\":3095},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Mũi Né (phường)",
- "truocsn": "Phường Hàm Tiến, Phường Mũi Né, Xã Thiện Nghiệp",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3065\",\"properties\":{\"matinhxa\":\"26.3081\",\"maxa\":3081},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Nam Ban Lâm Hà (xã)",
- "truocsn": "Thị trấn Nam Ban, Xã Đông Thanh, Xã Mê Linh, Xã Gia Lâm",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.273\",\"properties\":{\"matinhxa\":\"26.273\",\"maxa\":273},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Nam Đà (xã)",
- "truocsn": "Xã Buôn Choáh, Xã Đắk Sôr, Xã Nam Đà",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2808\",\"properties\":{\"matinhxa\":\"26.2824\",\"maxa\":2824},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Nam Dong (xã)",
- "truocsn": "Xã Đắk D’rông, Xã Nam Dong",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2799\",\"properties\":{\"matinhxa\":\"26.2815\",\"maxa\":2815},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Nam Gia Nghĩa (phường)",
- "truocsn": "Phường Nghĩa Phú, Phường Nghĩa Tân, Xã Đắk R’Moan",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2811\",\"properties\":{\"matinhxa\":\"26.2827\",\"maxa\":2827},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Nam Hà Lâm Hà (xã)",
- "truocsn": "Xã Nam Hà, Xã Phi Tô",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.276\",\"properties\":{\"matinhxa\":\"26.276\",\"maxa\":276},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Nâm Nung (xã)",
- "truocsn": "Xã Nâm N’Đir, Xã Nâm Nung",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2831\",\"properties\":{\"matinhxa\":\"26.2847\",\"maxa\":2847},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Nam Thành (xã)",
- "truocsn": "Xã Mê Pu, Xã Sùng Nhơn, Xã Đa Kai",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3095\",\"properties\":{\"matinhxa\":\"26.3111\",\"maxa\":3111},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Nghị Đức (xã)",
- "truocsn": "Xã Đức Phú, Xã Nghị Đức",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3361\",\"properties\":{\"matinhxa\":\"26.3107\",\"maxa\":3107},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Nhân Cơ (xã)",
- "truocsn": "Xã Nhân Đạo, Xã Đắk Wer, Xã Nhân Cơ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2813\",\"properties\":{\"matinhxa\":\"26.2829\",\"maxa\":2829},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Ninh Gia (xã)",
- "truocsn": "xã Ninh Gia (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.347\",\"properties\":{\"matinhxa\":\"26.347\",\"maxa\":347},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Phan Rí Cửa (xã)",
- "truocsn": "Thị trấn Phan Rí Cửa, Xã Chí Công, Xã Hòa Minh, Xã Phong Phú",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3072\",\"properties\":{\"matinhxa\":\"26.3088\",\"maxa\":3088},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Phan Sơn (xã)",
- "truocsn": "Xã Phan Lâm, Xã Phan Sơn",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3076\",\"properties\":{\"matinhxa\":\"26.3092\",\"maxa\":3092},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Phan Thiết (phường)",
- "truocsn": "Phường Phú Trinh, Phường Lạc Đạo, Phường Bình Hưng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3068\",\"properties\":{\"matinhxa\":\"26.3084\",\"maxa\":3084},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Phú Quý (đặc khu)",
- "truocsn": "Xã Long Hải, Xã Ngũ Phụng, Xã Tam Thanh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3295\",\"properties\":{\"matinhxa\":\"26.3311\",\"maxa\":3311},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Phú Sơn Lâm Hà (xã)",
- "truocsn": "Xã Phú Sơn, Xã Đạ Đờn",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.275\",\"properties\":{\"matinhxa\":\"26.275\",\"maxa\":275},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Phú Thủy (phường)",
- "truocsn": "Phường Thanh Hải, Phường Phú Hài, Phường Phú Thủy",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3066\",\"properties\":{\"matinhxa\":\"26.3082\",\"maxa\":3082},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Phúc Thọ Lâm Hà (xã)",
- "truocsn": "Xã Phúc Thọ, Xã Tân Thanh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.143\",\"properties\":{\"matinhxa\":\"26.143\",\"maxa\":143},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Phước Hội (phường)",
- "truocsn": "Phường Phước Lộc, Phường Phước Hội, Xã Tân Phước",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3099\",\"properties\":{\"matinhxa\":\"26.3115\",\"maxa\":3115},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Quảng Hòa (xã)",
- "truocsn": "xã Quảng Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2770\",\"properties\":{\"matinhxa\":\"26.2785\",\"maxa\":2785},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Quảng Khê (xã)",
- "truocsn": "Xã Đắk Plao, Xã Quảng Khê",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2815\",\"properties\":{\"matinhxa\":\"26.2831\",\"maxa\":2831},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Quảng Lập (xã)",
- "truocsn": "Xã Ka Đơn, Xã Quảng Lập",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.343\",\"properties\":{\"matinhxa\":\"26.343\",\"maxa\":343},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Quảng Phú (xã)",
- "truocsn": "Xã Đức Xuyên, Xã Đắk Nang, Xã Quảng Phú",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2809\",\"properties\":{\"matinhxa\":\"26.2825\",\"maxa\":2825},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Quảng Sơn (xã)",
- "truocsn": "xã Quảng Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2769\",\"properties\":{\"matinhxa\":\"26.2784\",\"maxa\":2784},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Quảng Tân (xã)",
- "truocsn": "Xã Đắk Ngo, Xã Quảng Tân",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2841\",\"properties\":{\"matinhxa\":\"26.2857\",\"maxa\":2857},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Quảng Tín (xã)",
- "truocsn": "Xã Đắk Sin, Xã Hưng Bình, Xã Đắk Ru, Xã Quảng Tín",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2840\",\"properties\":{\"matinhxa\":\"26.2856\",\"maxa\":2856},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Quảng Trực (xã)",
- "truocsn": "xã Quảng Trực (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2838\",\"properties\":{\"matinhxa\":\"26.2854\",\"maxa\":2854},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Sơn Điền (xã)",
- "truocsn": "Xã Gia Bắc, Xã Sơn Điền",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.442\",\"properties\":{\"matinhxa\":\"26.442\",\"maxa\":442},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Sơn Mỹ (xã)",
- "truocsn": "Xã Tân Thắng, Xã Thắng Hải, Xã Sơn Mỹ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3103\",\"properties\":{\"matinhxa\":\"26.3119\",\"maxa\":3119},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Sông Lũy (xã)",
- "truocsn": "Xã Phan Tiến, Xã Bình Tân, Xã Sông Lũy",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3078\",\"properties\":{\"matinhxa\":\"26.3094\",\"maxa\":3094},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Suối Kiết (xã)",
- "truocsn": "Xã Gia Huynh, Xã Suối Kiết",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3093\",\"properties\":{\"matinhxa\":\"26.3109\",\"maxa\":3109},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Tà Đùng (xã)",
- "truocsn": "Xã Đắk Som, Xã Đắk R’Măng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2814\",\"properties\":{\"matinhxa\":\"26.2830\",\"maxa\":2830},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Tà Hine (xã)",
- "truocsn": "Xã Ninh Loan, Xã Đà Loan, Xã Tà Hine",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.439\",\"properties\":{\"matinhxa\":\"26.439\",\"maxa\":439},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Tà Năng (xã)",
- "truocsn": "Xã Đa Quyn, Xã Tà Năng",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.438\",\"properties\":{\"matinhxa\":\"26.438\",\"maxa\":438},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Tân Hà Lâm Hà (xã)",
- "truocsn": "Xã Tân Hà (huyện Lâm Hà), Xã Hoài Đức, Xã Đan Phượng, Xã Liên Hà",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.278\",\"properties\":{\"matinhxa\":\"26.278\",\"maxa\":278},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Tân Hải (xã)",
- "truocsn": "Xã Tân Tiến, Xã Tân Hải",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3102\",\"properties\":{\"matinhxa\":\"26.3118\",\"maxa\":3118},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Tân Hội (xã)",
- "truocsn": "Xã Tân Thành (huyện Đức Trọng), Xã N’ Thôn Hạ, Xã Tân Hội",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.346\",\"properties\":{\"matinhxa\":\"26.346\",\"maxa\":346},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Tân Lập (xã)",
- "truocsn": "Xã Sông Phan, Xã Tân Lập",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3088\",\"properties\":{\"matinhxa\":\"26.3104\",\"maxa\":3104},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Tân Minh (xã)",
- "truocsn": "Thị trấn Tân Minh, Xã Tân Đức, Xã Tân Phúc",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3098\",\"properties\":{\"matinhxa\":\"26.3114\",\"maxa\":3114},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Thành (huyện Hàm Thuận Nam), Xã Thuận Quý, Xã Tân Thuận",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3089\",\"properties\":{\"matinhxa\":\"26.3105\",\"maxa\":3105},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Tánh Linh (xã)",
- "truocsn": "Thị trấn Lạc Tánh, Xã Gia An, Xã Đức Thuận",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3091\",\"properties\":{\"matinhxa\":\"26.3378\",\"maxa\":3378},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Thuận An (xã)",
- "truocsn": "Xã Đắk Lao, Xã Thuận An",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2803\",\"properties\":{\"matinhxa\":\"26.2819\",\"maxa\":2819},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Thuận Hạnh (xã)",
- "truocsn": "Xã Thuận Hà, Xã Thuận Hạnh",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2835\",\"properties\":{\"matinhxa\":\"26.2851\",\"maxa\":2851},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Tiến Thành (phường)",
- "truocsn": "Phường Đức Long, Xã Tiến Thành",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3070\",\"properties\":{\"matinhxa\":\"26.3086\",\"maxa\":3086},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Trà Tân (xã)",
- "truocsn": "Xã Tân Hà (huyện Đức Linh), Xã Đông Hà, Xã Trà Tân",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3097\",\"properties\":{\"matinhxa\":\"26.3113\",\"maxa\":3113},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Trường Xuân (xã)",
- "truocsn": "Xã Nâm N’Jang, Xã Trường Xuân",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2767\",\"properties\":{\"matinhxa\":\"26.2782\",\"maxa\":2782},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Tuy Đức (xã)",
- "truocsn": "Xã Quảng Tâm, Xã Đắk R’Tíh, Xã Đắk Búk So",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2839\",\"properties\":{\"matinhxa\":\"26.2855\",\"maxa\":2855},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Tuy Phong (xã)",
- "truocsn": "Xã Phan Dũng, Xã Phong Phú",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3073\",\"properties\":{\"matinhxa\":\"26.3089\",\"maxa\":3089},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Tuyên Quang (xã)",
- "truocsn": "Xã Tiến Lợi, Xã Hàm Mỹ",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3064\",\"properties\":{\"matinhxa\":\"26.3080\",\"maxa\":3080},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Vĩnh Hảo (xã)",
- "truocsn": "Xã Vĩnh Tân, Xã Vĩnh Hảo",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3074\",\"properties\":{\"matinhxa\":\"26.3090\",\"maxa\":3090},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Xuân Hương - Đà Lạt (phường)",
- "truocsn": "Phường 1 (thành phố Đà Lạt), Phường 2 (thành phố Đà Lạt), Phường 3, Phường 4, Phường 10",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.181\",\"properties\":{\"matinhxa\":\"26.181\",\"maxa\":181},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Xuân Trường - Đà Lạt (phường)",
- "truocsn": "Phường 11, Xã Xuân Thọ, Xã Xuân Trường, Xã Trạm Hành",
- "provinceName": "tỉnh Lâm Đồng",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.183\",\"properties\":{\"matinhxa\":\"26.183\",\"maxa\":183},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Lục Long (xã)",
- "truocsn": "Xã Dương Xuân Hội, Xã Long Trì, Xã An Lục Long",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1346\",\"properties\":{\"matinhxa\":\"27.1358\",\"maxa\":1358},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Ninh (xã)",
- "truocsn": "Xã Lộc Giang, Xã An Ninh Đông, Xã An Ninh Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1341\",\"properties\":{\"matinhxa\":\"27.1353\",\"maxa\":1353},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Tịnh (phường)",
- "truocsn": "Phường Lộc Hưng, Phường An Tịnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2732\",\"properties\":{\"matinhxa\":\"27.2747\",\"maxa\":2747},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bến Cầu (xã)",
- "truocsn": "Thị trấn Bến Cầu, Xã An Thạnh (huyện Bến Cầu), Xã Tiên Thuận, Xã Lợi Thuận",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2734\",\"properties\":{\"matinhxa\":\"27.2749\",\"maxa\":2749},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bến Lức (xã)",
- "truocsn": "Xã An Thạnh (huyện Bến Lức), Xã Thanh Phú, Thị trấn Bến Lức",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1351\",\"properties\":{\"matinhxa\":\"27.1363\",\"maxa\":1363},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Bình Đức (xã)",
- "truocsn": "Xã Thạnh Đức (huyện Bến Lức), Xã Nhựt Chánh, Xã Bình Đức",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1313\",\"properties\":{\"matinhxa\":\"27.1325\",\"maxa\":1325},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình Hiệp (xã)",
- "truocsn": "Xã Thạnh Trị, Xã Bình Tân, Xã Bình Hòa Tây, Xã Bình Hiệp",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1290\",\"properties\":{\"matinhxa\":\"27.1302\",\"maxa\":1302},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Hòa (xã)",
- "truocsn": "Xã Bình Thạnh (huyện Mộc Hóa), Xã Bình Hòa Đông, Xã Bình Hòa Trung",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1292\",\"properties\":{\"matinhxa\":\"27.1304\",\"maxa\":1304},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Minh (phường)",
- "truocsn": "Phường Ninh Sơn, Xã Tân Bình (thành phố Tây Ninh), Xã Bình Minh, Xã Thạnh Tân, Xã Suối Đá, Xã Phan",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2753\",\"properties\":{\"matinhxa\":\"27.2768\",\"maxa\":2768},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Thành (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Thạnh Hóa), Xã Thuận Bình, Xã Bình Hòa Hưng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1333\",\"properties\":{\"matinhxa\":\"27.1345\",\"maxa\":1345},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Cần Đước (xã)",
- "truocsn": "Thị trấn Cần Đước, Xã Phước Tuy, Xã Tân Ân, Xã Tân Chánh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1296\",\"properties\":{\"matinhxa\":\"27.1308\",\"maxa\":1308},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Cần Giuộc (xã)",
- "truocsn": "Thị trấn Cần Giuộc, Xã Phước Lại, Xã Long Hậu",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1327\",\"properties\":{\"matinhxa\":\"27.1339\",\"maxa\":1339},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Cầu Khởi (xã)",
- "truocsn": "Xã Phước Ninh, Xã Cầu Khởi, Xã Chà Là",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2745\",\"properties\":{\"matinhxa\":\"27.2760\",\"maxa\":2760},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Châu Thành, Xã Đồng Khởi, Xã An Bình, Xã Thái Bình",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2749\",\"properties\":{\"matinhxa\":\"27.2764\",\"maxa\":2764},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông Thành (xã)",
- "truocsn": "Thị trấn Đông Thành, Xã Mỹ Thạnh Tây, Xã Mỹ Thạnh Đông, Xã Mỹ Bình",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1336\",\"properties\":{\"matinhxa\":\"27.1348\",\"maxa\":1348},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đức Hòa (xã)",
- "truocsn": "Thị trấn Đức Hòa, Xã Hựu Thạnh, Xã Đức Hòa Hạ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1340\",\"properties\":{\"matinhxa\":\"27.1352\",\"maxa\":1352},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Đức Huệ (xã)",
- "truocsn": "Xã Bình Hòa Bắc, Xã Bình Hòa Nam, Xã Bình Thành",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1338\",\"properties\":{\"matinhxa\":\"27.1350\",\"maxa\":1350},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đức Lập (xã)",
- "truocsn": "Xã Đức Lập Hạ, Xã Mỹ Hạnh Bắc, Xã Đức Hòa Thượng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1348\",\"properties\":{\"matinhxa\":\"27.1360\",\"maxa\":1360},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Dương Minh Châu (xã)",
- "truocsn": "Thị trấn Dương Minh Châu, Xã Phan, Xã Suối Đá, Xã Phước Minh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2754\",\"properties\":{\"matinhxa\":\"27.2769\",\"maxa\":2769},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Gia Lộc (phường)",
- "truocsn": "Xã Phước Đông (huyện Gò Dầu), Phường Gia Lộc",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2735\",\"properties\":{\"matinhxa\":\"27.2750\",\"maxa\":2750},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Gò Dầu (phường)",
- "truocsn": "Phường Gia Bình, Thị trấn Gò Dầu, Xã Thanh Phước",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2733\",\"properties\":{\"matinhxa\":\"27.2748\",\"maxa\":2748},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hảo Đước (xã)",
- "truocsn": "Xã An Cơ, Xã Trí Bình, Xã Hảo Đước",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2752\",\"properties\":{\"matinhxa\":\"27.2767\",\"maxa\":2767},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hậu Nghĩa (xã)",
- "truocsn": "Thị trấn Hậu Nghĩa, Xã Đức Lập Thượng, Xã Tân Mỹ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1339\",\"properties\":{\"matinhxa\":\"27.1351\",\"maxa\":1351},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Hậu Thạnh (xã)",
- "truocsn": "Xã Hậu Thạnh Đông, Xã Hậu Thạnh Tây, Xã Bắc Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1331\",\"properties\":{\"matinhxa\":\"27.1343\",\"maxa\":1343},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hiệp Hòa (xã)",
- "truocsn": "Xã Tân Phú (huyện Đức Hòa), Xã Hiệp Hòa, Thị trấn Hiệp Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1342\",\"properties\":{\"matinhxa\":\"27.1354\",\"maxa\":1354},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hòa Hội (xã)",
- "truocsn": "Xã Biên Giới, Xã Hòa Thạnh, Xã Hòa Hội",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2750\",\"properties\":{\"matinhxa\":\"27.2765\",\"maxa\":2765},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hòa Khánh (xã)",
- "truocsn": "Xã Hòa Khánh Tây, Xã Hòa Khánh Nam, Xã Hòa Khánh Đông",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1349\",\"properties\":{\"matinhxa\":\"27.1361\",\"maxa\":1361},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hòa Thành (phường)",
- "truocsn": "Phường Long Thành Trung, Xã Long Thành Nam",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2740\",\"properties\":{\"matinhxa\":\"27.2755\",\"maxa\":2755},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hưng Điền (xã)",
- "truocsn": "Xã Hưng Hà, Xã Hưng Điền B, Xã Hưng Điền",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3362\",\"properties\":{\"matinhxa\":\"27.1295\",\"maxa\":1295},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hưng Thuận (xã)",
- "truocsn": "Xã Đôn Thuận, Xã Hưng Thuận",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2739\",\"properties\":{\"matinhxa\":\"27.2754\",\"maxa\":2754},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Khánh Hậu (phường)",
- "truocsn": "Phường Tân Khánh, Phường Khánh Hậu, Xã Lợi Bình Nhơn",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1282\",\"properties\":{\"matinhxa\":\"27.1293\",\"maxa\":1293},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Khánh Hưng (xã)",
- "truocsn": "Xã Hưng Điền A, Xã Thái Bình Trung, Xã Vĩnh Trị, Xã Thái Trị, Xã Khánh Hưng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1287\",\"properties\":{\"matinhxa\":\"27.1299\",\"maxa\":1299},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Kiến Tường (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3 (thị xã Kiến Tường)",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1289\",\"properties\":{\"matinhxa\":\"27.1301\",\"maxa\":1301},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Lộc Ninh (xã)",
- "truocsn": "Xã Bến Củi, Xã Lộc Ninh, Xã Phước Minh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2744\",\"properties\":{\"matinhxa\":\"27.2759\",\"maxa\":2759},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Long An (phường)",
- "truocsn": "Phường 1 (thành phố Tân An), Phường 3 (thành phố Tân An), Phường 4, Phường 5, Phường 6, Xã Hướng Thọ Phú, Xã Bình Thạnh (huyện Thủ Thừa)",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1280\",\"properties\":{\"matinhxa\":\"27.1291\",\"maxa\":1291},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Long Cang (xã)",
- "truocsn": "Xã Long Định, Xã Phước Vân, Xã Long Cang",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1323\",\"properties\":{\"matinhxa\":\"27.1335\",\"maxa\":1335},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Long Chữ (xã)",
- "truocsn": "Xã Long Vĩnh, Xã Long Phước, Xã Long Chữ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2738\",\"properties\":{\"matinhxa\":\"27.2753\",\"maxa\":2753},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Long Hoa (phường)",
- "truocsn": "Phường Long Thành Bắc, Phường Long Hoa, Xã Trường Hòa, Xã Trường Tây, Xã Trường Đông",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2747\",\"properties\":{\"matinhxa\":\"27.2762\",\"maxa\":2762},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Long Hựu (xã)",
- "truocsn": "Xã Long Hựu Đông, Xã Long Hựu Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1326\",\"properties\":{\"matinhxa\":\"27.1338\",\"maxa\":1338},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Long Thuận (xã)",
- "truocsn": "Xã Long Thuận (huyện Bến Cầu), Xã Long Giang, Xã Long Khánh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2736\",\"properties\":{\"matinhxa\":\"27.2751\",\"maxa\":2751},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lương Hòa (xã)",
- "truocsn": "Xã Tân Bửu, Xã Lương Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1312\",\"properties\":{\"matinhxa\":\"27.1324\",\"maxa\":1324},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Mộc Hóa (xã)",
- "truocsn": "Xã Tân Thành, Xã Tân Lập (huyện Mộc Hóa), Thị trấn Bình Phong Thạnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1293\",\"properties\":{\"matinhxa\":\"27.1305\",\"maxa\":1305},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mỹ An (xã)",
- "truocsn": "Xã Mỹ Phú, Xã Mỹ An",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1318\",\"properties\":{\"matinhxa\":\"27.1330\",\"maxa\":1330},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Mỹ Hạnh (xã)",
- "truocsn": "Xã Đức Hòa Đông, Xã Mỹ Hạnh Nam, Xã Đức Hòa Thượng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1350\",\"properties\":{\"matinhxa\":\"27.1362\",\"maxa\":1362},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Mỹ Lệ (xã)",
- "truocsn": "Xã Tân Trạch, Xã Long Sơn, Xã Mỹ Lệ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1324\",\"properties\":{\"matinhxa\":\"27.1336\",\"maxa\":1336},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Mỹ Lộc (xã)",
- "truocsn": "Xã Phước Lâm, Xã Thuận Thành, Xã Mỹ Lộc",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1329\",\"properties\":{\"matinhxa\":\"27.1341\",\"maxa\":1341},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Mỹ Quý (xã)",
- "truocsn": "Xã Mỹ Thạnh Bắc, Xã Mỹ Quý Đông, Xã Mỹ Quý Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1337\",\"properties\":{\"matinhxa\":\"27.1349\",\"maxa\":1349},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Mỹ Thạnh (xã)",
- "truocsn": "Xã Bình An, Xã Mỹ Lạc, Xã Mỹ Thạnh, Xã Tân Thành (huyện Thủ Thừa)",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1317\",\"properties\":{\"matinhxa\":\"27.1329\",\"maxa\":1329},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mỹ Yên (xã)",
- "truocsn": "Xã Long Hiệp, Xã Phước Lợi, Xã Mỹ Yên",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1314\",\"properties\":{\"matinhxa\":\"27.1326\",\"maxa\":1326},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Nhơn Hòa Lập (xã)",
- "truocsn": "Xã Tân Lập (huyện Tân Thạnh), Xã Nhơn Hòa, Xã Nhơn Hòa Lập",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1320\",\"properties\":{\"matinhxa\":\"27.1332\",\"maxa\":1332},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Nhơn Ninh (xã)",
- "truocsn": "Xã Tân Thành (huyện Tân Thạnh), Xã Tân Ninh, Xã Nhơn Ninh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1332\",\"properties\":{\"matinhxa\":\"27.1344\",\"maxa\":1344},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Nhựt Tảo (xã)",
- "truocsn": "Xã Tân Bình (huyện Tân Trụ), Xã Quê Mỹ Thạnh, Xã Lạc Tấn, Xã Nhị Thành, Thủ Thừa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1319\",\"properties\":{\"matinhxa\":\"27.1331\",\"maxa\":1331},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Ninh Điền (xã)",
- "truocsn": "Xã Thành Long, Xã Ninh Điền",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2743\",\"properties\":{\"matinhxa\":\"27.2758\",\"maxa\":2758},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Ninh Thạnh (phường)",
- "truocsn": "Phường Ninh Thạnh, Xã Bàu Năng, Xã Chà Là",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2751\",\"properties\":{\"matinhxa\":\"27.2766\",\"maxa\":2766},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phước Chỉ (xã)",
- "truocsn": "Xã Phước Bình, Xã Phước Chỉ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2730\",\"properties\":{\"matinhxa\":\"27.2745\",\"maxa\":2745},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phước Lý (xã)",
- "truocsn": "Xã Long Thượng, Xã Phước Hậu, Xã Phước Lý",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1328\",\"properties\":{\"matinhxa\":\"27.1340\",\"maxa\":1340},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Phước Thạnh (xã)",
- "truocsn": "Xã Hiệp Thạnh (huyện Gò Dầu), Xã Phước Trạch, Xã Phước Thạnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2737\",\"properties\":{\"matinhxa\":\"27.2752\",\"maxa\":2752},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phước Vinh (xã)",
- "truocsn": "Xã Hòa Hiệp, Xã Phước Vinh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2755\",\"properties\":{\"matinhxa\":\"27.2770\",\"maxa\":2770},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Phước Vĩnh Tây (xã)",
- "truocsn": "Xã Long An, Xã Long Phụng, Xã Phước Vĩnh Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1330\",\"properties\":{\"matinhxa\":\"27.1342\",\"maxa\":1342},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Rạch Kiến (xã)",
- "truocsn": "Xã Long Trạch, Xã Long Khê, Xã Long Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1322\",\"properties\":{\"matinhxa\":\"27.1334\",\"maxa\":1334},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Tầm Vu (xã)",
- "truocsn": "Thị trấn Tầm Vu, Xã Hiệp Thạnh (huyện Châu Thành), Xã Phú Ngãi Trị, Xã Phước Tân Hưng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1344\",\"properties\":{\"matinhxa\":\"27.1356\",\"maxa\":1356},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Tân An (phường)",
- "truocsn": "Phường 7, Xã Bình Tâm, Xã Nhơn Thạnh Trung, Xã An Vĩnh Ngãi",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1281\",\"properties\":{\"matinhxa\":\"27.1292\",\"maxa\":1292},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Tân Biên (xã)",
- "truocsn": "Xã Tân Bình (huyện Tân Biên), Xã Thạnh Tây, Thị trấn Tân Biên",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2759\",\"properties\":{\"matinhxa\":\"27.2774\",\"maxa\":2774},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tân Châu (xã)",
- "truocsn": "Thị trấn Tân Châu, Xã Thạnh Đông, Xã Tân Phú (huyện Tân Châu), Xã Suối Dây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2760\",\"properties\":{\"matinhxa\":\"27.2775\",\"maxa\":2775},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tân Đông (xã)",
- "truocsn": "Xã Tân Đông (huyện Tân Châu), Xã Tân Hà",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2764\",\"properties\":{\"matinhxa\":\"27.2779\",\"maxa\":2779},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tân Hòa (xã)",
- "truocsn": "Xã Tân Hòa (huyện Tân Châu), Xã Suối Ngô",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2762\",\"properties\":{\"matinhxa\":\"27.2777\",\"maxa\":2777},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tân Hội (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Tân Châu), Xã Tân Hội",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2763\",\"properties\":{\"matinhxa\":\"27.2778\",\"maxa\":2778},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tân Hưng (xã)",
- "truocsn": "Thị trấn Tân Hưng, Xã Vĩnh Thạnh, Xã Vĩnh Lợi",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1283\",\"properties\":{\"matinhxa\":\"27.1294\",\"maxa\":1294},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Lân (xã)",
- "truocsn": "Xã Phước Đông (huyện Cần Đước), Xã Tân Lân",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1325\",\"properties\":{\"matinhxa\":\"27.1337\",\"maxa\":1337},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Lập (xã)",
- "truocsn": "Xã Tân Lập (huyện Tân Biên), Xã Thạnh Bắc",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2765\",\"properties\":{\"matinhxa\":\"27.2780\",\"maxa\":2780},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Long (xã)",
- "truocsn": "Xã Long Thuận (huyện Thủ Thừa), Xã Long Thạnh, Xã Tân Long",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1316\",\"properties\":{\"matinhxa\":\"27.1328\",\"maxa\":1328},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tân Ninh (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3 (thành phố Tây Ninh), Phường IV, Phường Hiệp Ninh, Xã Thái Bình",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2748\",\"properties\":{\"matinhxa\":\"27.2763\",\"maxa\":2763},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tân Phú (xã)",
- "truocsn": "Xã Tân Hưng, Xã Mỏ Công, Xã Trà Vong, Xã Tân Phong, Xã Tân Phú (huyện Tân Châu)",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2757\",\"properties\":{\"matinhxa\":\"27.2772\",\"maxa\":2772},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tân Tập (xã)",
- "truocsn": "Xã Đông Thạnh, Xã Phước Vĩnh Đông, Xã Tân Tập",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1343\",\"properties\":{\"matinhxa\":\"27.1355\",\"maxa\":1355},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Tân Tây (xã)",
- "truocsn": "Xã Tân Đông (huyện Thạnh Hóa), Xã Thủy Đông, Xã Tân Tây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1335\",\"properties\":{\"matinhxa\":\"27.1347\",\"maxa\":1347},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Tân Thành (huyện Tân Châu), Xã Suối Dây",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2758\",\"properties\":{\"matinhxa\":\"27.2773\",\"maxa\":2773},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tân Thạnh (xã)",
- "truocsn": "Xã Tân Bình, Xã Tân Hòa (huyện Tân Thạnh), Xã Kiến Bình, Thị trấn Tân Thạnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1310\",\"properties\":{\"matinhxa\":\"27.1322\",\"maxa\":1322},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Tân Trụ (xã)",
- "truocsn": "Thị trấn Tân Trụ, Xã Bình Trinh Đông, Xã Bình Lãng, Xã Bình Tịnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1347\",\"properties\":{\"matinhxa\":\"27.1359\",\"maxa\":1359},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thạnh Bình (xã)",
- "truocsn": "Xã Thạnh Bình, Xã Tân Phong",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2761\",\"properties\":{\"matinhxa\":\"27.2776\",\"maxa\":2776},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thanh Điền (phường)",
- "truocsn": "Phường Hiệp Tân, Xã Thanh Điền",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2746\",\"properties\":{\"matinhxa\":\"27.2761\",\"maxa\":2761},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thạnh Đức (xã)",
- "truocsn": "Xã Thạnh Đức (huyện Gò Dầu), Xã Cẩm Giang",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2742\",\"properties\":{\"matinhxa\":\"27.2757\",\"maxa\":2757},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Thạnh Hóa (xã)",
- "truocsn": "Thị trấn Thạnh Hóa, Xã Thủy Tây, Xã Thạnh An",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1294\",\"properties\":{\"matinhxa\":\"27.1306\",\"maxa\":1306},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Thạnh Lợi (xã)",
- "truocsn": "Xã Thạnh Hòa, Xã Lương Bình, Xã Thạnh Lợi",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1311\",\"properties\":{\"matinhxa\":\"27.1323\",\"maxa\":1323},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Thạnh Phước (xã)",
- "truocsn": "Xã Thuận Nghĩa Hòa, Xã Thạnh Phú, Xã Thạnh Phước",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1334\",\"properties\":{\"matinhxa\":\"27.1346\",\"maxa\":1346},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Thủ Thừa (xã)",
- "truocsn": "Thị trấn Thủ Thừa, Xã Bình Thạnh, Xã Tân Thành (huyện Thủ Thừa), Xã Nhị Thành",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1315\",\"properties\":{\"matinhxa\":\"27.1327\",\"maxa\":1327},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Thuận Mỹ (xã)",
- "truocsn": "Xã Thanh Phú Long, Xã Thanh Vĩnh Đông, Xã Thuận Mỹ",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1295\",\"properties\":{\"matinhxa\":\"27.1307\",\"maxa\":1307},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Trà Vong (xã)",
- "truocsn": "Xã Mỏ Công, Xã Trà Vong",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2756\",\"properties\":{\"matinhxa\":\"27.2771\",\"maxa\":2771},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Trảng Bàng (phường)",
- "truocsn": "Phường An Hòa, Phường Trảng Bàng",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2731\",\"properties\":{\"matinhxa\":\"27.2746\",\"maxa\":2746},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Truông Mít (xã)",
- "truocsn": "Xã Bàu Đồn, Xã Truông Mít",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2741\",\"properties\":{\"matinhxa\":\"27.2756\",\"maxa\":2756},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tuyên Bình (xã)",
- "truocsn": "Xã Tuyên Bình, Xã Tuyên Bình Tây, Xã Vĩnh Bình, Xã Vĩnh Thuận, Xã Thái Bình Trung",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1288\",\"properties\":{\"matinhxa\":\"27.1300\",\"maxa\":1300},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tuyên Thạnh (xã)",
- "truocsn": "Xã Thạnh Hưng (thị xã Kiến Tường), Xã Tuyên Thạnh, Xã Bắc Hòa",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1291\",\"properties\":{\"matinhxa\":\"27.1303\",\"maxa\":1303},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Vàm Cỏ (xã)",
- "truocsn": "Xã Tân Phước Tây, Xã Nhựt Ninh, Xã Đức Tân",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1321\",\"properties\":{\"matinhxa\":\"27.1333\",\"maxa\":1333},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vĩnh Châu (xã)",
- "truocsn": "Xã Vĩnh Đại, Xã Vĩnh Bửu, Xã Vĩnh Châu A",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1285\",\"properties\":{\"matinhxa\":\"27.1297\",\"maxa\":1297},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vĩnh Công (xã)",
- "truocsn": "Xã Hòa Phú, Xã Bình Quới, Xã Vĩnh Công",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1345\",\"properties\":{\"matinhxa\":\"27.1357\",\"maxa\":1357},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Vĩnh Hưng (xã)",
- "truocsn": "Thị trấn Vĩnh Hưng, Xã Vĩnh Trị, Xã Thái Trị, Xã Khánh Hưng, Xã Thái Bình Trung, Xã Vĩnh Thuận, Xã Vĩnh Bình",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1286\",\"properties\":{\"matinhxa\":\"27.1298\",\"maxa\":1298},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Vĩnh Thạnh (xã)",
- "truocsn": "Xã Thạnh Hưng (huyện Tân Hưng), Xã Vĩnh Châu B, Xã Hưng Thạnh",
- "provinceName": "tỉnh Tây Ninh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1284\",\"properties\":{\"matinhxa\":\"27.1296\",\"maxa\":1296},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Lộc (phường)",
- "truocsn": "Phường Phú Thịnh, Xã Thanh Phú, Xã Thanh Lương",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2296\",\"properties\":{\"matinhxa\":\"28.2310\",\"maxa\":2310},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Phước (xã)",
- "truocsn": "Xã Tam An, Xã An Phước",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3131\",\"properties\":{\"matinhxa\":\"28.3147\",\"maxa\":3147},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Viễn (xã)",
- "truocsn": "Xã Đồi 61, Xã An Viễn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3121\",\"properties\":{\"matinhxa\":\"28.3137\",\"maxa\":3137},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Bảo Vinh (phường)",
- "truocsn": "Phường Bảo Vinh, Xã Bảo Quang",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3143\",\"properties\":{\"matinhxa\":\"28.3159\",\"maxa\":3159},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bàu Hàm (xã)",
- "truocsn": "Xã Thanh Bình (huyện Trảng Bom), Xã Cây Gáo, Xã Sông Thao, Xã Bàu Hàm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3118\",\"properties\":{\"matinhxa\":\"28.3134\",\"maxa\":3134},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Biên Hòa (phường)",
- "truocsn": "Phường Tân Hạnh, Phường Hóa An, Phường Bửu Hòa, Phường Tân Vạn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3140\",\"properties\":{\"matinhxa\":\"28.3156\",\"maxa\":3156},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Long Đức, Xã Bình An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3132\",\"properties\":{\"matinhxa\":\"28.3148\",\"maxa\":3148},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Lộc (phường)",
- "truocsn": "Phường Suối Tre, Xã Xuân Thiện, Xã Bình Lộc",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3142\",\"properties\":{\"matinhxa\":\"28.3158\",\"maxa\":3158},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Long (phường)",
- "truocsn": "Phường An Lộc, Phường Hưng Chiến, Phường Phú Đức, Xã Thanh Bình (huyện Hớn Quản)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2295\",\"properties\":{\"matinhxa\":\"28.2309\",\"maxa\":2309},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Minh (xã)",
- "truocsn": "Xã Bình Minh (huyện Trảng Bom), Xã Bắc Sơn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3120\",\"properties\":{\"matinhxa\":\"28.3136\",\"maxa\":3136},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Phước (phường)",
- "truocsn": "Phường Tân Phú, Phường Tân Đồng, Phường Tân Thiện, Phường Tân Bình, Phường Tân Xuân, Xã Tiến Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2277\",\"properties\":{\"matinhxa\":\"28.2291\",\"maxa\":2291},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Tân (xã)",
- "truocsn": "Xã Long Hưng (huyện Phú Riềng), Xã Long Bình, Xã Bình Tân",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2282\",\"properties\":{\"matinhxa\":\"28.2296\",\"maxa\":2296},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bom Bo (xã)",
- "truocsn": "Xã Bình Minh (huyện Bù Đăng), Xã Bom Bo",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2308\",\"properties\":{\"matinhxa\":\"28.2322\",\"maxa\":2322},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bù Đăng (xã)",
- "truocsn": "Thị trấn Đức Phong, Xã Đoàn Kết, Xã Minh Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2305\",\"properties\":{\"matinhxa\":\"28.2319\",\"maxa\":2319},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Bù Gia Mập (xã)",
- "truocsn": "xã Bù Gia Mập (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2311\",\"properties\":{\"matinhxa\":\"28.2325\",\"maxa\":2325},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cẩm Mỹ (xã)",
- "truocsn": "Thị trấn Long Giao, Xã Nhân Nghĩa, Xã Xuân Mỹ, Xã Bảo Bình",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3104\",\"properties\":{\"matinhxa\":\"28.3120\",\"maxa\":3120},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Chơn Thành (phường)",
- "truocsn": "Phường Hưng Long, Phường Thành Tâm, Phường Minh Thành",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2315\",\"properties\":{\"matinhxa\":\"28.2329\",\"maxa\":2329},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Đa Kia (xã)",
- "truocsn": "Xã Phước Minh, Xã Bình Thắng, Xã Đa Kia",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2281\",\"properties\":{\"matinhxa\":\"28.2295\",\"maxa\":2295},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đại Phước (xã)",
- "truocsn": "Xã Phú Hữu, Xã Phú Đông, Xã Phước Khánh, Xã Đại Phước",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3152\",\"properties\":{\"matinhxa\":\"28.3168\",\"maxa\":3168},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đak Lua (xã)",
- "truocsn": "xã Đak Lua (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3154\",\"properties\":{\"matinhxa\":\"28.3170\",\"maxa\":3170},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đak Nhau (xã)",
- "truocsn": "Xã Đường 10, Xã Đak Nhau",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2306\",\"properties\":{\"matinhxa\":\"28.2320\",\"maxa\":2320},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Đăk Ơ (xã)",
- "truocsn": "xã Đăk Ơ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2302\",\"properties\":{\"matinhxa\":\"28.2316\",\"maxa\":2316},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Dầu Giây (xã)",
- "truocsn": "Thị trấn Dầu Giây, Xã Hưng Lộc, Xã Bàu Hàm 2, Xã Lộ 25",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3123\",\"properties\":{\"matinhxa\":\"28.3139\",\"maxa\":3139},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Định Quán (xã)",
- "truocsn": "Thị trấn Định Quán, Xã Phú Ngọc, Xã Gia Canh, Xã Ngọc Định",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3156\",\"properties\":{\"matinhxa\":\"28.3172\",\"maxa\":3172},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Đồng Phú (xã)",
- "truocsn": "Thị trấn Tân Phú, Xã Tân Tiến (huyện Đồng Phú), Xã Tân Lập",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2313\",\"properties\":{\"matinhxa\":\"28.2327\",\"maxa\":2327},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đồng Tâm (xã)",
- "truocsn": "Xã Đồng Tiến, Xã Tân Phước, Xã Đồng Tâm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2304\",\"properties\":{\"matinhxa\":\"28.2318\",\"maxa\":2318},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đồng Xoài (phường)",
- "truocsn": "Phường Tiến Thành, Xã Tân Thành (thành phố Đồng Xoài)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2278\",\"properties\":{\"matinhxa\":\"28.2292\",\"maxa\":2292},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Gia Kiệm (xã)",
- "truocsn": "Xã Quang Trung, Xã Gia Tân 3, Xã Gia Kiệm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3122\",\"properties\":{\"matinhxa\":\"28.3138\",\"maxa\":3138},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hàng Gòn (phường)",
- "truocsn": "Phường Xuân Tân, Xã Hàng Gòn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3144\",\"properties\":{\"matinhxa\":\"28.3160\",\"maxa\":3160},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hố Nai (phường)",
- "truocsn": "Phường Tân Hòa, Xã Hố Nai 3",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3108\",\"properties\":{\"matinhxa\":\"28.3124\",\"maxa\":3124},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Hưng Phước (xã)",
- "truocsn": "Xã Phước Thiện, Xã Hưng Phước",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2294\",\"properties\":{\"matinhxa\":\"28.2308\",\"maxa\":2308},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hưng Thịnh (xã)",
- "truocsn": "Xã Đông Hòa, Xã Tây Hòa, Xã Trung Hòa, Xã Hưng Thịnh",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3119\",\"properties\":{\"matinhxa\":\"28.3135\",\"maxa\":3135},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "La Ngà (xã)",
- "truocsn": "Xã Túc Trưng, Xã La Ngà",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3115\",\"properties\":{\"matinhxa\":\"28.3131\",\"maxa\":3131},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Lộc Hưng (xã)",
- "truocsn": "Xã Lộc Khánh, Xã Lộc Điền, Xã Lộc Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2292\",\"properties\":{\"matinhxa\":\"28.2306\",\"maxa\":2306},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Lộc Ninh (xã)",
- "truocsn": "Thị trấn Lộc Ninh, Xã Lộc Thái, Xã Lộc Thuận",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2286\",\"properties\":{\"matinhxa\":\"28.2300\",\"maxa\":2300},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Lộc Quang (xã)",
- "truocsn": "Xã Lộc Phú, Xã Lộc Hiệp, Xã Lộc Quang",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2290\",\"properties\":{\"matinhxa\":\"28.2304\",\"maxa\":2304},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Lộc Tấn (xã)",
- "truocsn": "Xã Lộc Thiện, Xã Lộc Tấn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2289\",\"properties\":{\"matinhxa\":\"28.2303\",\"maxa\":2303},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Lộc Thành (xã)",
- "truocsn": "Xã Lộc Thịnh, Xã Lộc Thành",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2291\",\"properties\":{\"matinhxa\":\"28.2305\",\"maxa\":2305},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Lộc Thạnh (xã)",
- "truocsn": "Xã Lộc Hòa, Xã Lộc Thạnh",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2287\",\"properties\":{\"matinhxa\":\"28.2301\",\"maxa\":2301},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Long Bình (phường)",
- "truocsn": "Phường Hố Nai, Phường Tân Biên, Phường Long Bình",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3107\",\"properties\":{\"matinhxa\":\"28.3123\",\"maxa\":3123},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Long Hà (xã)",
- "truocsn": "Xã Long Tân (huyện Phú Riềng), Xã Long Hà",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2283\",\"properties\":{\"matinhxa\":\"28.2297\",\"maxa\":2297},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Long Hưng (phường)",
- "truocsn": "Phường Long Bình Tân, Phường An Hòa, Xã Long Hưng (thành phố Biên Hòa)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3139\",\"properties\":{\"matinhxa\":\"28.3155\",\"maxa\":3155},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Long Khánh (phường)",
- "truocsn": "Xã Xuân An, Xã Xuân Bình, Xã Xuân Hòa, Xã Phú Bình, Xã Bàu Trâm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3141\",\"properties\":{\"matinhxa\":\"28.3157\",\"maxa\":3157},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Long Phước (xã)",
- "truocsn": "Xã Bàu Cạn, Xã Long Phước",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3134\",\"properties\":{\"matinhxa\":\"28.3150\",\"maxa\":3150},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Long Thành (xã)",
- "truocsn": "Thị trấn Long Thành, Xã Lộc An, Xã Bình Sơn (huyện Long Thành), Xã Long An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3128\",\"properties\":{\"matinhxa\":\"28.3144\",\"maxa\":3144},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Minh Đức (xã)",
- "truocsn": "Xã An Phú, Xã Minh Tâm, Xã Minh Đức",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2298\",\"properties\":{\"matinhxa\":\"28.2312\",\"maxa\":2312},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Minh Hưng (phường)",
- "truocsn": "Phường Minh Long, Phường Minh Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2316\",\"properties\":{\"matinhxa\":\"28.2330\",\"maxa\":2330},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Nam Cát Tiên (xã)",
- "truocsn": "Xã Phú An, Xã Nam Cát Tiên",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3157\",\"properties\":{\"matinhxa\":\"28.3173\",\"maxa\":3173},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Nghĩa Trung (xã)",
- "truocsn": "Xã Đức Liễu, Xã Nghĩa Bình, Xã Nghĩa Trung",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2309\",\"properties\":{\"matinhxa\":\"28.2323\",\"maxa\":2323},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Nha Bích (xã)",
- "truocsn": "Xã Minh Thắng, Xã Minh Lập, Xã Nha Bích",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2312\",\"properties\":{\"matinhxa\":\"28.2326\",\"maxa\":2326},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Nhơn Trạch (xã)",
- "truocsn": "Thị trấn Hiệp Phước, Xã Long Tân (huyện Nhơn Trạch), Xã Phú Thạnh, Xã Phú Hội, Xã Phước Thiền",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3151\",\"properties\":{\"matinhxa\":\"28.3167\",\"maxa\":3167},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phú Hòa (xã)",
- "truocsn": "Xã Phú Điền, Xã Phú Lợi, Xã Phú Hòa",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3114\",\"properties\":{\"matinhxa\":\"28.3130\",\"maxa\":3130},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phú Lâm (xã)",
- "truocsn": "Xã Thanh Sơn, Xã Phú Sơn (huyện Tân Phú), Xã Phú Bình, Xã Phú Lâm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3109\",\"properties\":{\"matinhxa\":\"28.3125\",\"maxa\":3125},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phú Lý (xã)",
- "truocsn": "xã Phú Lý (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3155\",\"properties\":{\"matinhxa\":\"28.3171\",\"maxa\":3171},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phú Nghĩa (xã)",
- "truocsn": "Xã Phú Văn, Xã Đức Hạnh, Xã Phú Nghĩa",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2285\",\"properties\":{\"matinhxa\":\"28.2299\",\"maxa\":2299},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phú Riềng (xã)",
- "truocsn": "Xã Bù Nho, Xã Phú Riềng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2284\",\"properties\":{\"matinhxa\":\"28.2298\",\"maxa\":2298},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Phú Trung (xã)",
- "truocsn": "Xã Phước Tân, Xã Phú Trung",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2303\",\"properties\":{\"matinhxa\":\"28.2317\",\"maxa\":2317},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phú Vinh (xã)",
- "truocsn": "Xã Phú Tân, Xã Phú Vinh",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3113\",\"properties\":{\"matinhxa\":\"28.3129\",\"maxa\":3129},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Phước An (xã)",
- "truocsn": "Xã Phước An (huyện Nhơn Trạch), Xã Vĩnh Thanh, Xã Long Thọ",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3153\",\"properties\":{\"matinhxa\":\"28.3169\",\"maxa\":3169},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Phước Bình (phường)",
- "truocsn": "Phường Long Phước, Phường Phước Bình, Xã Bình Sơn (huyện Phú Riềng), Xã Long Giang",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2280\",\"properties\":{\"matinhxa\":\"28.2294\",\"maxa\":2294},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phước Long (phường)",
- "truocsn": "Phường Long Thủy, Phường Thác Mơ, Phường Sơn Giang, Xã Phước Tín",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2279\",\"properties\":{\"matinhxa\":\"28.2293\",\"maxa\":2293},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phước Sơn (xã)",
- "truocsn": "Xã Đăng Hà, Xã Thống Nhất, Xã Phước Sơn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2310\",\"properties\":{\"matinhxa\":\"28.2324\",\"maxa\":2324},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phước Tân (phường)",
- "truocsn": "phường Phước Tân (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3130\",\"properties\":{\"matinhxa\":\"28.3146\",\"maxa\":3146},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Phước Thái (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Long Thành), Xã Phước Bình, Xã Phước Thái",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3135\",\"properties\":{\"matinhxa\":\"28.3151\",\"maxa\":3151},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Sông Ray (xã)",
- "truocsn": "Xã Lâm San, Xã Sông Ray",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3127\",\"properties\":{\"matinhxa\":\"28.3143\",\"maxa\":3143},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tà Lài (xã)",
- "truocsn": "Xã Phú Thịnh, Xã Phú Lập, Xã Tà Lài",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3158\",\"properties\":{\"matinhxa\":\"28.3174\",\"maxa\":3174},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tam Hiệp (phường)",
- "truocsn": "Phường Tân Hiệp, Phường Tân Mai, Phường Bình Đa, Phường Tam Hiệp",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3137\",\"properties\":{\"matinhxa\":\"28.3153\",\"maxa\":3153},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tam Phước (phường)",
- "truocsn": "phường Tam Phước (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3129\",\"properties\":{\"matinhxa\":\"28.3145\",\"maxa\":3145},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Vĩnh Tân, Xã Tân An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3111\",\"properties\":{\"matinhxa\":\"28.3127\",\"maxa\":3127},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Hưng (xã)",
- "truocsn": "Xã Tân Hưng (huyện Hớn Quản), Xã An Khương, Xã Thanh An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2297\",\"properties\":{\"matinhxa\":\"28.2311\",\"maxa\":2311},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Khai (xã)",
- "truocsn": "Thị trấn Tân Khai, Xã Tân Hiệp (huyện Hớn Quản), Xã Đồng Nơ",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2300\",\"properties\":{\"matinhxa\":\"28.2314\",\"maxa\":2314},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tân Lợi (xã)",
- "truocsn": "Xã Tân Hưng, Xã Tân Lợi (huyện Đồng Phú), Xã Tân Hòa",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2314\",\"properties\":{\"matinhxa\":\"28.2328\",\"maxa\":2328},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tân Phú (xã)",
- "truocsn": "Thị trấn Tân Phú (huyện Tân Phú), Xã Phú Lộc, Xã Trà Cổ, Xã Phú Thanh, Xã Phú Xuân",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3145\",\"properties\":{\"matinhxa\":\"28.3161\",\"maxa\":3161},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tân Quan (xã)",
- "truocsn": "Xã Phước An, Xã Tân Lợi (huyện Hớn Quản), Xã Quang Minh, Xã Tân Quan",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2299\",\"properties\":{\"matinhxa\":\"28.2313\",\"maxa\":2313},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Tân Thành, Xã Tân Tiến (huyện Bù Đốp), Xã Lộc An (huyện Lộc Ninh)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2288\",\"properties\":{\"matinhxa\":\"28.2302\",\"maxa\":2302},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tân Triều (phường)",
- "truocsn": "Phường Tân Phong, Xã Tân Bình, Xã Bình Lợi, Xã Thạnh Phú",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3106\",\"properties\":{\"matinhxa\":\"28.3122\",\"maxa\":3122},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thanh Sơn (xã)",
- "truocsn": "xã Thanh Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3112\",\"properties\":{\"matinhxa\":\"28.3128\",\"maxa\":3128},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thiện Hưng (xã)",
- "truocsn": "Thị trấn Thanh Bình, Xã Thanh Hòa, Xã Thiện Hưng",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2293\",\"properties\":{\"matinhxa\":\"28.2307\",\"maxa\":2307},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thọ Sơn (xã)",
- "truocsn": "Xã Phú Sơn (huyện Bù Đăng), Xã Đồng Nai, Xã Thọ Sơn",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2307\",\"properties\":{\"matinhxa\":\"28.2321\",\"maxa\":2321},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thống Nhất (xã)",
- "truocsn": "Xã Gia Tân 1, Xã Gia Tân 2, Xã Phú Cường, Xã Phú Túc",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3116\",\"properties\":{\"matinhxa\":\"28.3132\",\"maxa\":3132},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thuận Lợi (xã)",
- "truocsn": "Xã Thuận Phú, Xã Thuận Lợi",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2301\",\"properties\":{\"matinhxa\":\"28.2315\",\"maxa\":2315},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Trấn Biên (phường)",
- "truocsn": "Phường Bửu Long, Phường Quang Vinh, Phường Trung Dũng, Phường Thống Nhất, Phường Hiệp Hòa, Phường An Bình",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3138\",\"properties\":{\"matinhxa\":\"28.3154\",\"maxa\":3154},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trảng Bom (xã)",
- "truocsn": "Thị trấn Trảng Bom, Xã Quảng Tiến, Xã Sông Trầu, Xã Giang Điền",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3117\",\"properties\":{\"matinhxa\":\"28.3133\",\"maxa\":3133},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Trảng Dài (phường)",
- "truocsn": "Phường Trảng Dài, Xã Thiện Tân",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3105\",\"properties\":{\"matinhxa\":\"28.3121\",\"maxa\":3121},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Trị An (xã)",
- "truocsn": "Thị trấn Vĩnh An, Xã Mã Đà, Xã Trị An",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3110\",\"properties\":{\"matinhxa\":\"28.3126\",\"maxa\":3126},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Xuân Bắc (xã)",
- "truocsn": "Xã Suối Nho, Xã Xuân Bắc",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3146\",\"properties\":{\"matinhxa\":\"28.3162\",\"maxa\":3162},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Xuân Định (xã)",
- "truocsn": "Xã Xuân Bảo, Xã Bảo Hòa, Xã Xuân Định",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3150\",\"properties\":{\"matinhxa\":\"28.3166\",\"maxa\":3166},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Xuân Đông (xã)",
- "truocsn": "Xã Xuân Tây, Xã Xuân Đông, Xã Xuân Tâm",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3126\",\"properties\":{\"matinhxa\":\"28.3142\",\"maxa\":3142},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Xuân Đường (xã)",
- "truocsn": "Xã Cẩm Đường, Xã Thừa Đức, Xã Xuân Đường",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3125\",\"properties\":{\"matinhxa\":\"28.3141\",\"maxa\":3141},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Xuân Hòa (xã)",
- "truocsn": "Xã Xuân Hưng, Xã Xuân Hòa, Xã Xuân Tâm (phần còn lại sau khi sáp nhập vào xã Xuân Đông)",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3148\",\"properties\":{\"matinhxa\":\"28.3164\",\"maxa\":3164},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Xuân Lập (phường)",
- "truocsn": "Phường Bàu Sen, Phường Xuân Lập",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3133\",\"properties\":{\"matinhxa\":\"28.3149\",\"maxa\":3149},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Xuân Lộc (xã)",
- "truocsn": "Thị trấn Gia Ray, Xã Xuân Thọ, Xã Xuân Trường, Xã Suối Cát, Xã Xuân Hiệp",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3136\",\"properties\":{\"matinhxa\":\"28.3152\",\"maxa\":3152},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Xuân Phú (xã)",
- "truocsn": "Xã Lang Minh, Xã Xuân Phú",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3149\",\"properties\":{\"matinhxa\":\"28.3165\",\"maxa\":3165},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Xuân Quế (xã)",
- "truocsn": "Xã Sông Nhạn, Xã Xuân Quế",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3124\",\"properties\":{\"matinhxa\":\"28.3140\",\"maxa\":3140},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Xuân Thành (xã)",
- "truocsn": "Xã Suối Cao, Xã Xuân Thành",
- "provinceName": "tỉnh Đồng Nai",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3147\",\"properties\":{\"matinhxa\":\"28.3163\",\"maxa\":3163},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Đông (phường)",
- "truocsn": "Phường 5, Phường 7, Phường 9 (Quận 5)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.173\",\"properties\":{\"matinhxa\":\"29.173\",\"maxa\":173},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Hội Đông (phường)",
- "truocsn": "Phường 15, Phường 16 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.74\",\"properties\":{\"matinhxa\":\"29.74\",\"maxa\":74},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Hội Tây (phường)",
- "truocsn": "Phường 12, Phường 14 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.77\",\"properties\":{\"matinhxa\":\"29.77\",\"maxa\":77},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Khánh (phường)",
- "truocsn": "Phường Thủ Thiêm, Phường An Lợi Đông, Phường Thảo Điền, Phường An Khánh, Phường An Phú (thành phố Thủ Đức)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.131\",\"properties\":{\"matinhxa\":\"29.131\",\"maxa\":131},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Lạc (phường)",
- "truocsn": "Phường Bình Trị Đông B, Phường An Lạc A, Phường An Lạc",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.224\",\"properties\":{\"matinhxa\":\"29.224\",\"maxa\":224},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Long (xã)",
- "truocsn": "Xã An Linh, Xã Tân Long, Xã An Long",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.20\",\"properties\":{\"matinhxa\":\"29.20\",\"maxa\":20},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "An Nhơn (phường)",
- "truocsn": "Phường 5, Phường 6 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.76\",\"properties\":{\"matinhxa\":\"29.76\",\"maxa\":76},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "An Nhơn Tây (xã)",
- "truocsn": "Xã Phú Mỹ Hưng, Xã An Phú, Xã An Nhơn Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.187\",\"properties\":{\"matinhxa\":\"29.187\",\"maxa\":187},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "An Phú (phường)",
- "truocsn": "Phường An Phú (thành phố Thuận An), Phường Bình Chuẩn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.35\",\"properties\":{\"matinhxa\":\"29.35\",\"maxa\":35},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "An Phú Đông (phường)",
- "truocsn": "Phường Thạnh Lộc, Phường An Phú Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.217\",\"properties\":{\"matinhxa\":\"29.217\",\"maxa\":217},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "An Thới Đông (xã)",
- "truocsn": "Xã Lý Nhơn, Xã An Thới Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.215\",\"properties\":{\"matinhxa\":\"29.215\",\"maxa\":215},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bà Điểm (xã)",
- "truocsn": "Xã Xuân Thới Thượng, Xã Trung Chánh, Xã Bà Điểm",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.201\",\"properties\":{\"matinhxa\":\"29.201\",\"maxa\":201},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bà Rịa (phường)",
- "truocsn": "Phường Phước Trung, Phường Phước Nguyên, Phường Long Toàn, Phường Phước Hưng",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2208\",\"properties\":{\"matinhxa\":\"29.2222\",\"maxa\":2222},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bắc Tân Uyên (xã)",
- "truocsn": "Thị trấn Tân Thành, Xã Đất Cuốc, Xã Tân Định",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.24\",\"properties\":{\"matinhxa\":\"29.24\",\"maxa\":24},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Bàn Cờ (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3, Phường 5, Phường 4 (Quận 3)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.141\",\"properties\":{\"matinhxa\":\"29.141\",\"maxa\":141},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Bàu Bàng (xã)",
- "truocsn": "Thị trấn Lai Uyên",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.12\",\"properties\":{\"matinhxa\":\"29.12\",\"maxa\":12},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Bàu Lâm (xã)",
- "truocsn": "Xã Tân Lâm, Xã Bàu Lâm",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2219\",\"properties\":{\"matinhxa\":\"29.2233\",\"maxa\":2233},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Bảy Hiền (phường)",
- "truocsn": "Phường 10, Phường 11, Phường 12 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.112\",\"properties\":{\"matinhxa\":\"29.112\",\"maxa\":112},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Bến Cát (phường)",
- "truocsn": "Xã Tân Hưng (huyện Bàu Bàng), Xã Lai Hưng, Phường Mỹ Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.10\",\"properties\":{\"matinhxa\":\"29.10\",\"maxa\":10},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Bến Thành (phường)",
- "truocsn": "Phường Bến Thành, Phường Phạm Ngũ Lão, Phường Cầu Ông Lãnh, Phường Nguyễn Thái Bình",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.41\",\"properties\":{\"matinhxa\":\"29.41\",\"maxa\":41},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Bình Chánh (xã)",
- "truocsn": "Xã Tân Quý Tây, Xã Bình Chánh, Xã An Phú Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.208\",\"properties\":{\"matinhxa\":\"29.208\",\"maxa\":208},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Bình Châu (xã)",
- "truocsn": "xã Bình Châu (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2222\",\"properties\":{\"matinhxa\":\"29.2236\",\"maxa\":2236},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Bình Cơ (phường)",
- "truocsn": "Xã Bình Mỹ (huyện Bắc Tân Uyên), Phường Hội Nghĩa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.25\",\"properties\":{\"matinhxa\":\"29.25\",\"maxa\":25},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Bình Đông (phường)",
- "truocsn": "Phường 6 (Quận 8), Phường 7 (Quận 8), Xã An Phú Tây, Phường 5 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.211\",\"properties\":{\"matinhxa\":\"29.211\",\"maxa\":211},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Bình Dương (phường)",
- "truocsn": "Phường Phú Mỹ (thành phố Thủ Dầu Một), Phường Hòa Phú, Phường Phú Tân, Phường Phú Chánh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.4\",\"properties\":{\"matinhxa\":\"29.4\",\"maxa\":4},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Bình Giã (xã)",
- "truocsn": "Xã Bình Trung, Xã Quảng Thành, Xã Bình Giã",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2214\",\"properties\":{\"matinhxa\":\"29.2228\",\"maxa\":2228},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Bình Hòa (phường)",
- "truocsn": "Phường Bình Hòa, Phường Vĩnh Phú",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.36\",\"properties\":{\"matinhxa\":\"29.36\",\"maxa\":36},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Bình Hưng (xã)",
- "truocsn": "Xã Phong Phú, Xã Bình Hưng, Phường 7 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.206\",\"properties\":{\"matinhxa\":\"29.206\",\"maxa\":206},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Bình Hưng Hòa (phường)",
- "truocsn": "Phường Bình Hưng Hòa, Phường Sơn Kỳ, Phường Bình Hưng Hòa A",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.212\",\"properties\":{\"matinhxa\":\"29.212\",\"maxa\":212},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Bình Khánh (xã)",
- "truocsn": "Xã Tam Thôn Hiệp, Xã Bình Khánh, Xã An Thới Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.214\",\"properties\":{\"matinhxa\":\"29.214\",\"maxa\":214},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Bình Lợi (xã)",
- "truocsn": "Xã Lê Minh Xuân, Xã Bình Lợi",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.205\",\"properties\":{\"matinhxa\":\"29.205\",\"maxa\":205},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Bình Lợi Trung (phường)",
- "truocsn": "Phường 5, Phường 11, Phường 13 (quận Bình Thạnh)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.92\",\"properties\":{\"matinhxa\":\"29.92\",\"maxa\":92},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Bình Mỹ (xã)",
- "truocsn": "Xã Bình Mỹ (huyện Củ Chi), Xã Hòa Phú, Xã Trung An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.195\",\"properties\":{\"matinhxa\":\"29.195\",\"maxa\":195},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Bình Phú (phường)",
- "truocsn": "Phường 10, Phường 11 (Quận 6), Phường 16 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.188\",\"properties\":{\"matinhxa\":\"29.188\",\"maxa\":188},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Bình Quới (phường)",
- "truocsn": "Phường 27, Phường 28",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.96\",\"properties\":{\"matinhxa\":\"29.96\",\"maxa\":96},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Bình Tân (phường)",
- "truocsn": "Phường Bình Hưng Hòa B, Phường Bình Trị Đông A, Phường Tân Tạo",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.223\",\"properties\":{\"matinhxa\":\"29.223\",\"maxa\":223},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Bình Tây (phường)",
- "truocsn": "Phường 2, Phường 9 (Quận 6)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.179\",\"properties\":{\"matinhxa\":\"29.179\",\"maxa\":179},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Bình Thạnh (phường)",
- "truocsn": "Phường 12, Phường 14 (quận Bình Thạnh), Phường 26",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.93\",\"properties\":{\"matinhxa\":\"29.93\",\"maxa\":93},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Bình Thới (phường)",
- "truocsn": "Phường 3, Phường 10 (Quận 11), Phường 8 (Quận 11)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.147\",\"properties\":{\"matinhxa\":\"29.147\",\"maxa\":147},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Bình Tiên (phường)",
- "truocsn": "Phường 1, Phường 7, Phường 8 (Quận 6)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.189\",\"properties\":{\"matinhxa\":\"29.189\",\"maxa\":189},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Bình Trị Đông (phường)",
- "truocsn": "Phường Bình Trị Đông, Phường Bình Hưng Hòa A, Phường Bình Trị Đông A",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.222\",\"properties\":{\"matinhxa\":\"29.222\",\"maxa\":222},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Bình Trưng (phường)",
- "truocsn": "Phường Bình Trưng Đông, Phường Bình Trưng Tây, Phường An Phú (thành phố Thủ Đức)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.132\",\"properties\":{\"matinhxa\":\"29.132\",\"maxa\":132},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Cần Giờ (xã)",
- "truocsn": "Xã Long Hòa (huyện Cần Giờ), Thị trấn Cần Thạnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.213\",\"properties\":{\"matinhxa\":\"29.213\",\"maxa\":213},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Cát Lái (phường)",
- "truocsn": "Phường Thạnh Mỹ Lợi, Phường Cát Lái",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.133\",\"properties\":{\"matinhxa\":\"29.133\",\"maxa\":133},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Cầu Kiệu (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 7 (quận Phú Nhuận), Phường 15 (quận Phú Nhuận)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.129\",\"properties\":{\"matinhxa\":\"29.129\",\"maxa\":129},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Cầu Ông Lãnh (phường)",
- "truocsn": "Phường Nguyễn Cư Trinh, Phường Cầu Kho, Phường Cô Giang, Phường Cầu Ông Lãnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.42\",\"properties\":{\"matinhxa\":\"29.42\",\"maxa\":42},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Chánh Hiệp (phường)",
- "truocsn": "Phường Định Hòa, Phường Tương Bình Hiệp, Phường Hiệp An, Phường Chánh Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3\",\"properties\":{\"matinhxa\":\"29.3\",\"maxa\":3},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Chánh Hưng (phường)",
- "truocsn": "Phường 4 (Quận 8), Rạch Ông, Phường Hưng Phú, Phường 5 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.198\",\"properties\":{\"matinhxa\":\"29.198\",\"maxa\":198},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Chánh Phú Hòa (phường)",
- "truocsn": "Phường Chánh Phú Hòa, Xã Hưng Hòa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.14\",\"properties\":{\"matinhxa\":\"29.14\",\"maxa\":14},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Châu Đức (xã)",
- "truocsn": "Xã Cù Bị, Xã Xà Bang",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2215\",\"properties\":{\"matinhxa\":\"29.2229\",\"maxa\":2229},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Châu Pha (xã)",
- "truocsn": "Xã Tóc Tiên, Xã Châu Pha",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2230\",\"properties\":{\"matinhxa\":\"29.2244\",\"maxa\":2244},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Chợ Lớn (phường)",
- "truocsn": "Phường 11, Phường 12, Phường 13, Phường 14 (Quận 5)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.178\",\"properties\":{\"matinhxa\":\"29.178\",\"maxa\":178},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Chợ Quán (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 4 (Quận 5)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.172\",\"properties\":{\"matinhxa\":\"29.172\",\"maxa\":172},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Côn Đảo (đặc khu)",
- "truocsn": "Huyện Côn Đảo",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3296\",\"properties\":{\"matinhxa\":\"29.3312\",\"maxa\":3312},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Củ Chi (xã)",
- "truocsn": "Xã Tân Phú Trung, Xã Tân Thông Hội, Xã Phước Vĩnh An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.193\",\"properties\":{\"matinhxa\":\"29.193\",\"maxa\":193},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Đất Đỏ (xã)",
- "truocsn": "Thị trấn Đất Đỏ, Xã Long Tân (huyện Long Đất), Xã Láng Dài, Xã Phước Long Thọ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2224\",\"properties\":{\"matinhxa\":\"29.2238\",\"maxa\":2238},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Dầu Tiếng (xã)",
- "truocsn": "Thị trấn Dầu Tiếng, Xã Định An, Xã Định Thành, Xã Định Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.5\",\"properties\":{\"matinhxa\":\"29.5\",\"maxa\":5},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Dĩ An (phường)",
- "truocsn": "Phường An Bình, Phường Dĩ An, Phường Tân Đông Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.29\",\"properties\":{\"matinhxa\":\"29.29\",\"maxa\":29},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Diên Hồng (phường)",
- "truocsn": "Phường 6, Phường 8 (Quận 10), Phường 14 (Quận 10)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.46\",\"properties\":{\"matinhxa\":\"29.46\",\"maxa\":46},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Đông Hòa (phường)",
- "truocsn": "Phường Bình An, Phường Bình Thắng, Phường Đông Hòa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.31\",\"properties\":{\"matinhxa\":\"29.31\",\"maxa\":31},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Đông Hưng Thuận (phường)",
- "truocsn": "Phường Tân Thới Nhất, Phường Tân Hưng Thuận, Phường Đông Hưng Thuận",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.48\",\"properties\":{\"matinhxa\":\"29.48\",\"maxa\":48},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Đông Thạnh (xã)",
- "truocsn": "Xã Thới Tam Thôn, Xã Nhị Bình, Xã Đông Thạnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.197\",\"properties\":{\"matinhxa\":\"29.197\",\"maxa\":197},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Đức Nhuận (phường)",
- "truocsn": "Phường 4, Phường 5, Phường 9 (quận Phú Nhuận)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.128\",\"properties\":{\"matinhxa\":\"29.128\",\"maxa\":128},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Gia Định (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 7, Phường 17 (quận Bình Thạnh)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.95\",\"properties\":{\"matinhxa\":\"29.95\",\"maxa\":95},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Gò Vấp (phường)",
- "truocsn": "Phường 10, Phường 17 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.75\",\"properties\":{\"matinhxa\":\"29.75\",\"maxa\":75},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Hạnh Thông (phường)",
- "truocsn": "Phường 1, Phường 3 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.80\",\"properties\":{\"matinhxa\":\"29.80\",\"maxa\":80},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Hiệp Bình (phường)",
- "truocsn": "Phường Hiệp Bình Chánh, Phường Hiệp Bình Phước, Phường Linh Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.44\",\"properties\":{\"matinhxa\":\"29.44\",\"maxa\":44},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Hiệp Phước (xã)",
- "truocsn": "Xã Nhơn Đức, Xã Long Thới, Xã Hiệp Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.210\",\"properties\":{\"matinhxa\":\"29.210\",\"maxa\":210},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Hồ Tràm (xã)",
- "truocsn": "Thị trấn Phước Bửu, Xã Phước Tân, Xã Phước Thuận",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2217\",\"properties\":{\"matinhxa\":\"29.2231\",\"maxa\":2231},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Hòa Bình (phường)",
- "truocsn": "Phường 5, Phường 14 (Quận 11)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.97\",\"properties\":{\"matinhxa\":\"29.97\",\"maxa\":97},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Hòa Hiệp (xã)",
- "truocsn": "xã Hòa Hiệp (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2221\",\"properties\":{\"matinhxa\":\"29.2235\",\"maxa\":2235},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Hòa Hội (xã)",
- "truocsn": "Xã Hòa Hưng, Xã Hòa Bình, Xã Hòa Hội",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2220\",\"properties\":{\"matinhxa\":\"29.2234\",\"maxa\":2234},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Hòa Hưng (phường)",
- "truocsn": "Phường 12, Phường 13, Phường 15 (Quận 10), Phường 14 (Quận 10)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.134\",\"properties\":{\"matinhxa\":\"29.134\",\"maxa\":134},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Hòa Lợi (phường)",
- "truocsn": "Phường Tân Định (thành phố Bến Cát), Phường Hòa Lợi",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.16\",\"properties\":{\"matinhxa\":\"29.16\",\"maxa\":16},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Hóc Môn (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Hóc Môn), Xã Tân Xuân, Thị trấn Hóc Môn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.196\",\"properties\":{\"matinhxa\":\"29.196\",\"maxa\":196},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Hưng Long (xã)",
- "truocsn": "Xã Đa Phước, Xã Qui Đức, Xã Hưng Long",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.207\",\"properties\":{\"matinhxa\":\"29.207\",\"maxa\":207},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Khánh Hội (phường)",
- "truocsn": "Phường 8, Phường 9 (Quận 4), Phường 2, Phường 4 (Quận 4), Phường 15 (Quận 4)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.165\",\"properties\":{\"matinhxa\":\"29.165\",\"maxa\":165},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Kim Long (xã)",
- "truocsn": "Thị trấn Kim Long, Xã Bàu Chinh, Xã Láng Lớn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2211\",\"properties\":{\"matinhxa\":\"29.2225\",\"maxa\":2225},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Lái Thiêu (phường)",
- "truocsn": "Phường Bình Nhâm, Phường Lái Thiêu, Phường Vĩnh Phú",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.33\",\"properties\":{\"matinhxa\":\"29.33\",\"maxa\":33},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Linh Xuân (phường)",
- "truocsn": "Phường Linh Trung, Phường Linh Xuân, Phường Linh Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.49\",\"properties\":{\"matinhxa\":\"29.49\",\"maxa\":49},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Long Bình (phường)",
- "truocsn": "Phường Long Bình, Phường Long Thạnh Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.65\",\"properties\":{\"matinhxa\":\"29.65\",\"maxa\":65},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Long Điền (xã)",
- "truocsn": "Thị trấn Long Điền, Xã Tam An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2223\",\"properties\":{\"matinhxa\":\"29.2237\",\"maxa\":2237},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Long Hải (xã)",
- "truocsn": "Thị trấn Long Hải, Xã Phước Tỉnh, Xã Phước Hưng",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2251\",\"properties\":{\"matinhxa\":\"29.2265\",\"maxa\":2265},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Long Hòa (xã)",
- "truocsn": "Xã Long Tân, Xã Long Hòa (huyện Dầu Tiếng), Xã Minh Tân, Xã Minh Thạnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.7\",\"properties\":{\"matinhxa\":\"29.7\",\"maxa\":7},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Long Hương (phường)",
- "truocsn": "Xã Tân Hưng (thành phố Bà Rịa), Phường Kim Dinh, Phường Long Hương",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2210\",\"properties\":{\"matinhxa\":\"29.2224\",\"maxa\":2224},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Long Nguyên (phường)",
- "truocsn": "Phường An Điền, Xã Long Nguyên, Phường Mỹ Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.13\",\"properties\":{\"matinhxa\":\"29.13\",\"maxa\":13},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Long Phước (phường)",
- "truocsn": "Phường Trường Thạnh, Phường Long Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.72\",\"properties\":{\"matinhxa\":\"29.72\",\"maxa\":72},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Long Sơn (xã)",
- "truocsn": "xã Long Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2231\",\"properties\":{\"matinhxa\":\"29.2245\",\"maxa\":2245},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Long Trường (phường)",
- "truocsn": "Phường Phú Hữu, Phường Long Trường",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.73\",\"properties\":{\"matinhxa\":\"29.73\",\"maxa\":73},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Minh Phụng (phường)",
- "truocsn": "Phường 1, Phường 7, Phường 16 (Quận 11)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.148\",\"properties\":{\"matinhxa\":\"29.148\",\"maxa\":148},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Minh Thạnh (xã)",
- "truocsn": "Xã Minh Hòa, Xã Minh Tân, Xã Minh Thạnh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.6\",\"properties\":{\"matinhxa\":\"29.6\",\"maxa\":6},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Ngãi Giao (xã)",
- "truocsn": "Thị trấn Ngãi Giao, Xã Bình Ba, Xã Suối Nghệ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2212\",\"properties\":{\"matinhxa\":\"29.2226\",\"maxa\":2226},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Nghĩa Thành (xã)",
- "truocsn": "Xã Đá Bạc, Xã Nghĩa Thành",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2216\",\"properties\":{\"matinhxa\":\"29.2230\",\"maxa\":2230},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Nhà Bè (xã)",
- "truocsn": "Thị trấn Nhà Bè, Xã Phú Xuân, Xã Phước Kiển, Xã Phước Lộc",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.209\",\"properties\":{\"matinhxa\":\"29.209\",\"maxa\":209},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Nhiêu Lộc (phường)",
- "truocsn": "Phường 9, Phường 11, Phường 12, Phường 14 (Quận 3)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.135\",\"properties\":{\"matinhxa\":\"29.135\",\"maxa\":135},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Nhuận Đức (xã)",
- "truocsn": "Xã Phạm Văn Cội, Xã Trung Lập Hạ, Xã Nhuận Đức",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.190\",\"properties\":{\"matinhxa\":\"29.190\",\"maxa\":190},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Phú An (phường)",
- "truocsn": "Phường Tân An, Xã Phú An, Phường Hiệp An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.17\",\"properties\":{\"matinhxa\":\"29.17\",\"maxa\":17},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Phú Định (phường)",
- "truocsn": "Phường 14, Phường 15 (Quận 8), Phường Xóm Củi, Phường 16 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.199\",\"properties\":{\"matinhxa\":\"29.199\",\"maxa\":199},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Phú Giáo (xã)",
- "truocsn": "Thị trấn Phước Vĩnh, Xã An Bình, Xã Tam Lập",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.18\",\"properties\":{\"matinhxa\":\"29.18\",\"maxa\":18},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Phú Hòa Đông (xã)",
- "truocsn": "Xã Tân Thạnh Tây, Xã Tân Thạnh Đông, Xã Phú Hòa Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.191\",\"properties\":{\"matinhxa\":\"29.191\",\"maxa\":191},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Phú Lâm (phường)",
- "truocsn": "Phường 12, Phường 13, Phường 14 (Quận 6)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.185\",\"properties\":{\"matinhxa\":\"29.185\",\"maxa\":185},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Phú Lợi (phường)",
- "truocsn": "Phường Phú Hòa, Phường Phú Lợi, Phường Hiệp Thành (thành phố Thủ Dầu Một)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.1\",\"properties\":{\"matinhxa\":\"29.1\",\"maxa\":1},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Phú Mỹ (phường)",
- "truocsn": "Phường Phú Mỹ (thành phố Phú Mỹ), Phường Mỹ Xuân",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2226\",\"properties\":{\"matinhxa\":\"29.2240\",\"maxa\":2240},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Phú Nhuận (phường)",
- "truocsn": "Phường 8, Phường 10, Phường 11, Phường 13 (quận Phú Nhuận), Phường 15 (quận Phú Nhuận)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.130\",\"properties\":{\"matinhxa\":\"29.130\",\"maxa\":130},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Phú Thạnh (phường)",
- "truocsn": "Phường Hiệp Tân, Phường Phú Thạnh, Phường Tân Thới Hòa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.124\",\"properties\":{\"matinhxa\":\"29.124\",\"maxa\":124},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Phú Thọ (phường)",
- "truocsn": "Phường 11, Phường 15 (Quận 11), Phường 8 (Quận 11)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.62\",\"properties\":{\"matinhxa\":\"29.62\",\"maxa\":62},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Phú Thọ Hòa (phường)",
- "truocsn": "Phường Phú Thọ Hòa, Phường Tân Thành, Phường Tân Quý",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.123\",\"properties\":{\"matinhxa\":\"29.123\",\"maxa\":123},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Phú Thuận (phường)",
- "truocsn": "Phường Phú Thuận, Phường Phú Mỹ (Quận 7)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.268\",\"properties\":{\"matinhxa\":\"29.268\",\"maxa\":268},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Phước Hải (xã)",
- "truocsn": "Thị trấn Phước Hải, Xã Phước Hội",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2225\",\"properties\":{\"matinhxa\":\"29.2239\",\"maxa\":2239},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Phước Hòa (xã)",
- "truocsn": "Xã Vĩnh Hòa, Xã Phước Hòa, Xã Tam Lập",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.21\",\"properties\":{\"matinhxa\":\"29.21\",\"maxa\":21},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Phước Long (phường)",
- "truocsn": "Phường Phước Bình, Phường Phước Long A, Phường Phước Long B",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.71\",\"properties\":{\"matinhxa\":\"29.71\",\"maxa\":71},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Phước Thắng (phường)",
- "truocsn": "Phường 11, Phường 12 (thành phố Vũng Tàu)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2207\",\"properties\":{\"matinhxa\":\"29.2221\",\"maxa\":2221},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Phước Thành (xã)",
- "truocsn": "Xã Tân Hiệp (huyện Phú Giáo), Xã An Thái, Xã Phước Sang",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.19\",\"properties\":{\"matinhxa\":\"29.19\",\"maxa\":19},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Rạch Dừa (phường)",
- "truocsn": "Phường 10 (thành phố Vũng Tàu), Phường Thắng Nhất, Phường Rạch Dừa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2206\",\"properties\":{\"matinhxa\":\"29.2220\",\"maxa\":2220},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Sài Gòn (phường)",
- "truocsn": "Phường Bến Nghé, Phường Đa Kao, Phường Nguyễn Thái Bình",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.38\",\"properties\":{\"matinhxa\":\"29.38\",\"maxa\":38},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Tam Bình (phường)",
- "truocsn": "Phường Bình Chiểu, Phường Tam Phú, Phường Tam Bình",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.50\",\"properties\":{\"matinhxa\":\"29.50\",\"maxa\":50},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Tam Long (phường)",
- "truocsn": "Phường Long Tâm, Xã Hòa Long, Xã Long Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2209\",\"properties\":{\"matinhxa\":\"29.2223\",\"maxa\":2223},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Tam Thắng (phường)",
- "truocsn": "Phường 7, Phường 8, Phường 9 (thành phố Vũng Tàu), Phường Nguyễn An Ninh",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2205\",\"properties\":{\"matinhxa\":\"29.2219\",\"maxa\":2219},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Tân An Hội (xã)",
- "truocsn": "Thị trấn Củ Chi, Xã Phước Hiệp, Xã Tân An Hội",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.192\",\"properties\":{\"matinhxa\":\"29.192\",\"maxa\":192},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Tân Bình (phường)",
- "truocsn": "Phường 13, Phường 14 (quận Tân Bình), Phường 15 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.113\",\"properties\":{\"matinhxa\":\"29.113\",\"maxa\":113},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Tân Định (phường)",
- "truocsn": "Phường Tân Định (Quận 1), Phường Đa Kao",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.37\",\"properties\":{\"matinhxa\":\"29.37\",\"maxa\":37},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Tân Đông Hiệp (phường)",
- "truocsn": "Phường Tân Bình, Phường Thái Hòa, Phường Tân Đông Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.30\",\"properties\":{\"matinhxa\":\"29.30\",\"maxa\":30},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Tân Hải (phường)",
- "truocsn": "Phường Tân Hòa, Phường Tân Hải",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2227\",\"properties\":{\"matinhxa\":\"29.2241\",\"maxa\":2241},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Tân Hiệp (phường)",
- "truocsn": "Phường Khánh Bình, Phường Tân Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.27\",\"properties\":{\"matinhxa\":\"29.27\",\"maxa\":27},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "125",
- "ten": "Tân Hòa (phường)",
- "truocsn": "Phường 6, Phường 8, Phường 9 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.114\",\"properties\":{\"matinhxa\":\"29.114\",\"maxa\":114},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "126",
- "ten": "Tân Hưng (phường)",
- "truocsn": "Phường Tân Phong, Phường Tân Quy, Phường Tân Kiểng, Phường Tân Hưng",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.267\",\"properties\":{\"matinhxa\":\"29.267\",\"maxa\":267},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "127",
- "ten": "Tân Khánh (phường)",
- "truocsn": "Phường Thạnh Phước, Phường Tân Phước Khánh, Phường Tân Vĩnh Hiệp, Xã Thạnh Hội, Phường Thái Hòa",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.23\",\"properties\":{\"matinhxa\":\"29.23\",\"maxa\":23},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "128",
- "ten": "Tân Mỹ (phường)",
- "truocsn": "Phường Tân Phú (Quận 7), Phường Phú Mỹ (Quận 7)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.186\",\"properties\":{\"matinhxa\":\"29.186\",\"maxa\":186},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "129",
- "ten": "Tân Nhựt (xã)",
- "truocsn": "Thị trấn Tân Túc, Xã Tân Nhựt, Phường Tân Tạo A, Xã Tân Kiên, Phường 16 (Quận 8)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.202\",\"properties\":{\"matinhxa\":\"29.202\",\"maxa\":202},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "130",
- "ten": "Tân Phú (phường)",
- "truocsn": "Phường Phú Trung, Phường Hòa Thạnh, Phường Tân Thới Hòa, Phường Tân Thành",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.127\",\"properties\":{\"matinhxa\":\"29.127\",\"maxa\":127},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "131",
- "ten": "Tân Phước (phường)",
- "truocsn": "Phường Phước Hòa, Phường Tân Phước",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2228\",\"properties\":{\"matinhxa\":\"29.2242\",\"maxa\":2242},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "132",
- "ten": "Tân Sơn (phường)",
- "truocsn": "Phường 15 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.115\",\"properties\":{\"matinhxa\":\"29.115\",\"maxa\":115},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "133",
- "ten": "Tân Sơn Hòa (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.98\",\"properties\":{\"matinhxa\":\"29.98\",\"maxa\":98},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "134",
- "ten": "Tân Sơn Nhất (phường)",
- "truocsn": "Phường 4, Phường 5, Phường 7 (quận Tân Bình)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.101\",\"properties\":{\"matinhxa\":\"29.101\",\"maxa\":101},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "135",
- "ten": "Tân Sơn Nhì (phường)",
- "truocsn": "Phường Tân Sơn Nhì, Phường Sơn Kỳ, Phường Tân Quý, Phường Tân Thành",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.116\",\"properties\":{\"matinhxa\":\"29.116\",\"maxa\":116},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "136",
- "ten": "Tân Tạo (phường)",
- "truocsn": "Xã Tân Kiên, Phường Tân Tạo A, Phường Tân Tạo",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.244\",\"properties\":{\"matinhxa\":\"29.244\",\"maxa\":244},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "137",
- "ten": "Tân Thành (phường)",
- "truocsn": "Phường Hắc Dịch, Xã Sông Xoài",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2229\",\"properties\":{\"matinhxa\":\"29.2243\",\"maxa\":2243},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "138",
- "ten": "Tân Thới Hiệp (phường)",
- "truocsn": "Phường Hiệp Thành (Quận 12), Phường Tân Thới Hiệp",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.45\",\"properties\":{\"matinhxa\":\"29.45\",\"maxa\":45},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "139",
- "ten": "Tân Thuận (phường)",
- "truocsn": "Phường Bình Thuận, Phường Tân Thuận Đông, Phường Tân Thuận Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.254\",\"properties\":{\"matinhxa\":\"29.254\",\"maxa\":254},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "140",
- "ten": "Tân Uyên (phường)",
- "truocsn": "Phường Uyên Hưng, Xã Bạch Đằng, Xã Tân Lập, Xã Tân Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.22\",\"properties\":{\"matinhxa\":\"29.22\",\"maxa\":22},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "141",
- "ten": "Tân Vĩnh Lộc (xã)",
- "truocsn": "Xã Vĩnh Lộc B, Xã Phạm Văn Hai, Phường Tân Tạo",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.204\",\"properties\":{\"matinhxa\":\"29.204\",\"maxa\":204},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "142",
- "ten": "Tăng Nhơn Phú (phường)",
- "truocsn": "Phường Tân Phú (thành phố Thủ Đức), Phường Hiệp Phú, Phường Tăng Nhơn Phú A, Phường Tăng Nhơn Phú B, Phường Long Thạnh Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.66\",\"properties\":{\"matinhxa\":\"29.66\",\"maxa\":66},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "143",
- "ten": "Tây Nam (phường)",
- "truocsn": "Phường An Tây, Xã Thanh Tuyền, Xã An Lập",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.8\",\"properties\":{\"matinhxa\":\"29.8\",\"maxa\":8},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "144",
- "ten": "Tây Thạnh (phường)",
- "truocsn": "Phường Tây Thạnh, Phường Sơn Kỳ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.117\",\"properties\":{\"matinhxa\":\"29.117\",\"maxa\":117},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "145",
- "ten": "Thái Mỹ (xã)",
- "truocsn": "Xã Trung Lập Thượng, Xã Phước Thạnh, Xã Thái Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.194\",\"properties\":{\"matinhxa\":\"29.194\",\"maxa\":194},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "146",
- "ten": "Thanh An (xã)",
- "truocsn": "Xã Thanh An, Xã Định Hiệp, Xã Thanh Tuyền, Xã An Lập",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.9\",\"properties\":{\"matinhxa\":\"29.9\",\"maxa\":9},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "147",
- "ten": "Thạnh An (xã)",
- "truocsn": "xã Thạnh An (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.216\",\"properties\":{\"matinhxa\":\"29.216\",\"maxa\":216},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "148",
- "ten": "Thạnh Mỹ Tây (phường)",
- "truocsn": "Phường 19, Phường 22, Phường 25",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.94\",\"properties\":{\"matinhxa\":\"29.94\",\"maxa\":94},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "149",
- "ten": "Thới An (phường)",
- "truocsn": "Phường Thạnh Xuân, Phường Thới An",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.43\",\"properties\":{\"matinhxa\":\"29.43\",\"maxa\":43},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "150",
- "ten": "Thới Hòa (phường)",
- "truocsn": "phường Thới Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.15\",\"properties\":{\"matinhxa\":\"29.15\",\"maxa\":15},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "151",
- "ten": "Thông Tây Hội (phường)",
- "truocsn": "Phường 8, Phường 11 (quận Gò Vấp)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.91\",\"properties\":{\"matinhxa\":\"29.91\",\"maxa\":91},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "152",
- "ten": "Thủ Dầu Một (phường)",
- "truocsn": "Phường Phú Cường, Phường Phú Thọ, Phường Chánh Nghĩa, Phường Hiệp Thành (thành phố Thủ Dầu Một), Phường Chánh Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2\",\"properties\":{\"matinhxa\":\"29.2\",\"maxa\":2},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "153",
- "ten": "Thủ Đức (phường)",
- "truocsn": "Phường Bình Thọ, Phường Linh Chiểu, Phường Trường Thọ, Phường Linh Tây, Phường Linh Đông",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.61\",\"properties\":{\"matinhxa\":\"29.61\",\"maxa\":61},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "154",
- "ten": "Thuận An (phường)",
- "truocsn": "Phường Hưng Định, Phường An Thạnh, Xã An Sơn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.32\",\"properties\":{\"matinhxa\":\"29.32\",\"maxa\":32},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "155",
- "ten": "Thuận Giao (phường)",
- "truocsn": "Phường Thuận Giao, Phường Bình Chuẩn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.34\",\"properties\":{\"matinhxa\":\"29.34\",\"maxa\":34},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "156",
- "ten": "Thường Tân (xã)",
- "truocsn": "Xã Lạc An, Xã Hiếu Liêm, Xã Thường Tân, Xã Tân Mỹ",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.28\",\"properties\":{\"matinhxa\":\"29.28\",\"maxa\":28},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "157",
- "ten": "Trừ Văn Thố (xã)",
- "truocsn": "Xã Trừ Văn Thố, Xã Cây Trường II, Thị trấn Lai Uyên",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.11\",\"properties\":{\"matinhxa\":\"29.11\",\"maxa\":11},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "158",
- "ten": "Trung Mỹ Tây (phường)",
- "truocsn": "Phường Tân Chánh Hiệp, Phường Trung Mỹ Tây",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.47\",\"properties\":{\"matinhxa\":\"29.47\",\"maxa\":47},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "159",
- "ten": "Vĩnh Hội (phường)",
- "truocsn": "Phường 1, Phường 3 (Quận 4), Phường 2, Phường 4 (Quận 4)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.166\",\"properties\":{\"matinhxa\":\"29.166\",\"maxa\":166},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "160",
- "ten": "Vĩnh Lộc (xã)",
- "truocsn": "Xã Vĩnh Lộc A, Xã Phạm Văn Hai",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.203\",\"properties\":{\"matinhxa\":\"29.203\",\"maxa\":203},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "161",
- "ten": "Vĩnh Tân (phường)",
- "truocsn": "Phường Vĩnh Tân, Thị trấn Tân Bình",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.26\",\"properties\":{\"matinhxa\":\"29.26\",\"maxa\":26},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "162",
- "ten": "Vũng Tàu (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3, Phường 4, Phường 5 (thành phố Vũng Tàu), Phường Thắng Nhì, Phường Thắng Tam",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2204\",\"properties\":{\"matinhxa\":\"29.2218\",\"maxa\":2218},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "163",
- "ten": "Vườn Lài (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 4, Phường 9, Phường 10 (Quận 10)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.99\",\"properties\":{\"matinhxa\":\"29.99\",\"maxa\":99},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "164",
- "ten": "Xóm Chiếu (phường)",
- "truocsn": "Phường 13, Phường 16, Phường 18, Phường 15 (Quận 4)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.156\",\"properties\":{\"matinhxa\":\"29.156\",\"maxa\":156},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "165",
- "ten": "Xuân Hòa (phường)",
- "truocsn": "Phường Võ Thị Sáu, Phường 4 (Quận 3)",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.140\",\"properties\":{\"matinhxa\":\"29.140\",\"maxa\":140},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "166",
- "ten": "Xuân Sơn (xã)",
- "truocsn": "Xã Suối Rao, Xã Sơn Bình, Xã Xuân Sơn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2213\",\"properties\":{\"matinhxa\":\"29.2227\",\"maxa\":2227},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "167",
- "ten": "Xuân Thới Sơn (xã)",
- "truocsn": "Xã Tân Thới Nhì, Xã Xuân Thới Đông, Xã Xuân Thới Sơn",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.200\",\"properties\":{\"matinhxa\":\"29.200\",\"maxa\":200},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "168",
- "ten": "Xuyên Mộc (xã)",
- "truocsn": "Xã Bông Trang, Xã Bưng Riềng, Xã Xuyên Mộc",
- "provinceName": "thành phố Hồ Chí Minh",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2218\",\"properties\":{\"matinhxa\":\"29.2232\",\"maxa\":2232},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Bình (xã)",
- "truocsn": "Xã Hòa Ninh, Xã Bình Hòa Phước, Xã Đồng Phú, Xã An Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2523\",\"properties\":{\"matinhxa\":\"30.2537\",\"maxa\":2537},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Định (xã)",
- "truocsn": "Xã Tân Trung, Xã Minh Đức, Xã An Định",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2459\",\"properties\":{\"matinhxa\":\"30.2473\",\"maxa\":2473},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Hiệp (xã)",
- "truocsn": "Xã Tân Hưng, Xã An Ngãi Tây, Xã An Hiệp",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2481\",\"properties\":{\"matinhxa\":\"30.2495\",\"maxa\":2495},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Hội (phường)",
- "truocsn": "Phường An Hội, Xã Mỹ Thạnh An, Xã Phú Nhuận, Xã Sơn Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2443\",\"properties\":{\"matinhxa\":\"30.2457\",\"maxa\":2457},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Ngãi Trung (xã)",
- "truocsn": "Xã Mỹ Thạnh (huyện Ba Tri), Xã An Phú Trung, Xã An Ngãi Trung",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2480\",\"properties\":{\"matinhxa\":\"30.2494\",\"maxa\":2494},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Phú Tân (xã)",
- "truocsn": "Xã Hòa Tân, Xã An Phú Tân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2498\",\"properties\":{\"matinhxa\":\"30.2512\",\"maxa\":2512},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "An Qui (xã)",
- "truocsn": "Xã An Thuận, Xã An Nhơn, Xã An Qui",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2486\",\"properties\":{\"matinhxa\":\"30.2500\",\"maxa\":2500},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "An Trường (xã)",
- "truocsn": "Xã Tân Bình (huyện Càng Long), Xã An Trường A, Xã An Trường",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2494\",\"properties\":{\"matinhxa\":\"30.2508\",\"maxa\":2508},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Ba Tri (xã)",
- "truocsn": "Thị trấn Ba Tri, Xã Vĩnh Hòa (huyện Ba Tri), Xã An Đức, Xã Vĩnh An, Xã An Bình Tây",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2476\",\"properties\":{\"matinhxa\":\"30.2490\",\"maxa\":2490},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bảo Thạnh (xã)",
- "truocsn": "Xã Bảo Thuận, Xã Bảo Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2479\",\"properties\":{\"matinhxa\":\"30.2493\",\"maxa\":2493},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bến Tre (phường)",
- "truocsn": "Phường 7, Xã Bình Phú (thành phố Bến Tre), Xã Thanh Tân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2454\",\"properties\":{\"matinhxa\":\"30.2468\",\"maxa\":2468},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Đại (xã)",
- "truocsn": "Thị trấn Bình Đại, Xã Bình Thới, Xã Bình Thắng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2469\",\"properties\":{\"matinhxa\":\"30.2483\",\"maxa\":2483},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bình Minh (phường)",
- "truocsn": "Xã Thuận An, Phường Thành Phước, Phường Cái Vồn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2581\",\"properties\":{\"matinhxa\":\"30.2595\",\"maxa\":2595},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Bình Phú (xã)",
- "truocsn": "Xã Bình Phú (huyện Càng Long), Xã Đại Phúc, Xã Phương Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2493\",\"properties\":{\"matinhxa\":\"30.2507\",\"maxa\":2507},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Bình Phước (xã)",
- "truocsn": "Xã Long Mỹ (huyện Mang Thít), Xã Hòa Tịnh, Xã Bình Phước",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2540\",\"properties\":{\"matinhxa\":\"30.2554\",\"maxa\":2554},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cái Ngang (xã)",
- "truocsn": "Xã Mỹ Lộc, Xã Tân Lộc, Xã Hậu Lộc, Xã Phú Lộc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2550\",\"properties\":{\"matinhxa\":\"30.2564\",\"maxa\":2564},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Cái Nhum (xã)",
- "truocsn": "Xã An Phước (huyện Mang Thít), Xã Chánh An, Thị trấn Cái Nhum",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2528\",\"properties\":{\"matinhxa\":\"30.2542\",\"maxa\":2542},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Cái Vồn (phường)",
- "truocsn": "Xã Mỹ Hòa (thị xã Bình Minh), Xã Ngãi Tứ, Phường Thành Phước, Phường Cái Vồn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2586\",\"properties\":{\"matinhxa\":\"30.2600\",\"maxa\":2600},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Càng Long (xã)",
- "truocsn": "Thị trấn Càng Long, Xã Mỹ Cẩm, Xã Nhị Long Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2491\",\"properties\":{\"matinhxa\":\"30.2505\",\"maxa\":2505},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Cầu Kè (xã)",
- "truocsn": "Thị trấn Cầu Kè, Xã Hòa Ân, Xã Châu Điền",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2496\",\"properties\":{\"matinhxa\":\"30.2510\",\"maxa\":2510},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Cầu Ngang (xã)",
- "truocsn": "Xã Mỹ Hòa (huyện Cầu Ngang), Xã Thuận Hòa, Thị trấn Cầu Ngang",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2531\",\"properties\":{\"matinhxa\":\"30.2545\",\"maxa\":2545},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Châu Hòa (xã)",
- "truocsn": "Xã Châu Bình, Xã Lương Quới, Xã Châu Hòa",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2463\",\"properties\":{\"matinhxa\":\"30.2477\",\"maxa\":2477},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Châu Hưng (xã)",
- "truocsn": "Xã Long Hòa (huyện Bình Đại), Xã Thới Lai, Xã Châu Hưng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2471\",\"properties\":{\"matinhxa\":\"30.2485\",\"maxa\":2485},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Châu Thành (huyện Châu Thành, tỉnh Trà Vinh), Xã Mỹ Chánh (huyện Châu Thành), Xã Thanh Mỹ, Xã Đa Lộc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2504\",\"properties\":{\"matinhxa\":\"30.2518\",\"maxa\":2518},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Chợ Lách (xã)",
- "truocsn": "Xã Long Thới (huyện Chợ Lách), Xã Hòa Nghĩa, Thị trấn Chợ Lách",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2449\",\"properties\":{\"matinhxa\":\"30.2463\",\"maxa\":2463},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đại An (xã)",
- "truocsn": "Thị trấn Định An, Xã Định An, Xã Đại An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2535\",\"properties\":{\"matinhxa\":\"30.2549\",\"maxa\":2549},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đại Điền (xã)",
- "truocsn": "Xã Phú Khánh, Xã Tân Phong, Xã Thới Thạnh, Xã Đại Điền",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2484\",\"properties\":{\"matinhxa\":\"30.2498\",\"maxa\":2498},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đôn Châu (xã)",
- "truocsn": "Xã Đôn Xuân, Xã Đôn Châu",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2536\",\"properties\":{\"matinhxa\":\"30.2550\",\"maxa\":2550},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Đông Hải (xã)",
- "truocsn": "xã Đông Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2518\",\"properties\":{\"matinhxa\":\"30.2532\",\"maxa\":2532},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Đồng Khởi (xã)",
- "truocsn": "Xã Định Thủy, Xã Phước Hiệp, Xã Bình Khánh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2457\",\"properties\":{\"matinhxa\":\"30.2471\",\"maxa\":2471},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Đông Thành (phường)",
- "truocsn": "Phường Đông Thuận, Xã Đông Bình, Xã Đông Thạnh, Xã Đông Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2585\",\"properties\":{\"matinhxa\":\"30.2599\",\"maxa\":2599},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Duyên Hải (phường)",
- "truocsn": "Phường 1 (thị xã Duyên Hải), Xã Long Toàn, Xã Dân Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2539\",\"properties\":{\"matinhxa\":\"30.2553\",\"maxa\":2553},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Giao Long (xã)",
- "truocsn": "Xã An Phước (huyện Châu Thành), Xã Quới Sơn, Xã Giao Long",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2445\",\"properties\":{\"matinhxa\":\"30.2459\",\"maxa\":2459},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Giồng Trôm (xã)",
- "truocsn": "Thị trấn Giồng Trôm, Xã Bình Hòa, Xã Bình Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2462\",\"properties\":{\"matinhxa\":\"30.2476\",\"maxa\":2476},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hàm Giang (xã)",
- "truocsn": "Xã Hàm Tân, Xã Kim Sơn, Xã Hàm Giang",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2513\",\"properties\":{\"matinhxa\":\"30.2527\",\"maxa\":2527},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hiệp Mỹ (xã)",
- "truocsn": "Xã Long Sơn, Xã Hiệp Mỹ Đông, Xã Hiệp Mỹ Tây",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2534\",\"properties\":{\"matinhxa\":\"30.2548\",\"maxa\":2548},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hiếu Phụng (xã)",
- "truocsn": "Xã Hiếu Thuận, Xã Trung An, Xã Hiếu Phụng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2545\",\"properties\":{\"matinhxa\":\"30.2559\",\"maxa\":2559},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hiếu Thành (xã)",
- "truocsn": "Xã Hiếu Nhơn, Xã Hiếu Nghĩa, Xã Hiếu Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2548\",\"properties\":{\"matinhxa\":\"30.2562\",\"maxa\":2562},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hòa Bình (xã)",
- "truocsn": "Xã Xuân Hiệp, Xã Thới Hòa, Xã Hòa Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2588\",\"properties\":{\"matinhxa\":\"30.2602\",\"maxa\":2602},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Hòa Hiệp (xã)",
- "truocsn": "Xã Hòa Thạnh, Xã Hòa Lộc, Xã Hòa Hiệp",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2552\",\"properties\":{\"matinhxa\":\"30.2566\",\"maxa\":2566},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Hòa Minh (xã)",
- "truocsn": "xã Hòa Minh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2508\",\"properties\":{\"matinhxa\":\"30.2522\",\"maxa\":2522},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Hoà Thuận (phường)",
- "truocsn": "Phường 5 (thành phố Trà Vinh), Xã Hòa Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2505\",\"properties\":{\"matinhxa\":\"30.2519\",\"maxa\":2519},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Hùng Hoà (xã)",
- "truocsn": "Xã Ngãi Hùng, Xã Tân Hùng, Xã Hùng Hòa",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2502\",\"properties\":{\"matinhxa\":\"30.2516\",\"maxa\":2516},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Hưng Khánh Trung (xã)",
- "truocsn": "Xã Vĩnh Hòa (huyện Chợ Lách), Xã Hưng Khánh Trung A, Xã Hưng Khánh Trung B",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2452\",\"properties\":{\"matinhxa\":\"30.2466\",\"maxa\":2466},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Hưng Mỹ (xã)",
- "truocsn": "Xã Hòa Lợi (huyện Châu Thành), Xã Phước Hảo, Xã Hưng Mỹ",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2507\",\"properties\":{\"matinhxa\":\"30.2521\",\"maxa\":2521},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Hưng Nhượng (xã)",
- "truocsn": "Xã Tân Thanh, Xã Hưng Lễ, Xã Hưng Nhượng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2468\",\"properties\":{\"matinhxa\":\"30.2482\",\"maxa\":2482},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Hương Mỹ (xã)",
- "truocsn": "Xã Ngãi Đăng, Xã Cẩm Sơn, Xã Hương Mỹ",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2461\",\"properties\":{\"matinhxa\":\"30.2475\",\"maxa\":2475},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Lộc Thuận (xã)",
- "truocsn": "Xã Vang Quới Đông, Xã Vang Quới Tây, Xã Lộc Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2472\",\"properties\":{\"matinhxa\":\"30.2486\",\"maxa\":2486},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Long Châu (phường)",
- "truocsn": "Phường 1, Phường 9 (thành phố Vĩnh Long), Phường Trường An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2520\",\"properties\":{\"matinhxa\":\"30.2534\",\"maxa\":2534},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Long Đức (phường)",
- "truocsn": "Phường 4 (thành phố Trà Vinh), Xã Long Đức",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2490\",\"properties\":{\"matinhxa\":\"30.2504\",\"maxa\":2504},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Long Hiệp (xã)",
- "truocsn": "Xã Ngọc Biên, Xã Tân Hiệp, Xã Long Hiệp",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2537\",\"properties\":{\"matinhxa\":\"30.2551\",\"maxa\":2551},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Long Hồ (xã)",
- "truocsn": "Thị trấn Long Hồ, Xã Long An, Xã Long Phước",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2522\",\"properties\":{\"matinhxa\":\"30.2536\",\"maxa\":2536},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Long Hòa (xã)",
- "truocsn": "xã Long Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2530\",\"properties\":{\"matinhxa\":\"30.2544\",\"maxa\":2544},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Long Hữu (xã)",
- "truocsn": "Xã Hiệp Thạnh, Xã Long Hữu",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2514\",\"properties\":{\"matinhxa\":\"30.2528\",\"maxa\":2528},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Long Thành (xã)",
- "truocsn": "Thị trấn Long Thành, Xã Long Khánh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2538\",\"properties\":{\"matinhxa\":\"30.2552\",\"maxa\":2552},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Long Vĩnh (xã)",
- "truocsn": "xã Long Vĩnh (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2517\",\"properties\":{\"matinhxa\":\"30.2531\",\"maxa\":2531},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Lục Sĩ Thành (xã)",
- "truocsn": "Xã Phú Thành, Xã Lục Sĩ Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2592\",\"properties\":{\"matinhxa\":\"30.2606\",\"maxa\":2606},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Lương Hòa (xã)",
- "truocsn": "Xã Lương Hòa (huyện Giồng Trôm), Xã Phong Nẫm",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2464\",\"properties\":{\"matinhxa\":\"30.2478\",\"maxa\":2478},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Lương Phú (xã)",
- "truocsn": "Xã Mỹ Thạnh (huyện Giồng Trôm), Xã Thuận Điền, Xã Lương Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2465\",\"properties\":{\"matinhxa\":\"30.2479\",\"maxa\":2479},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Lưu Nghiệp Anh (xã)",
- "truocsn": "Xã An Quảng Hữu, Xã Lưu Nghiệp Anh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2512\",\"properties\":{\"matinhxa\":\"30.2526\",\"maxa\":2526},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Mỏ Cày (xã)",
- "truocsn": "Thị trấn Mỏ Cày, Xã An Thạnh (huyện Mỏ Cày Nam), Xã Tân Hội, Xã Đa Phước Hội",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2453\",\"properties\":{\"matinhxa\":\"30.2467\",\"maxa\":2467},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Mỹ Chánh Hòa (xã)",
- "truocsn": "Xã Mỹ Hòa, Xã Mỹ Chánh (huyện Ba Tri), Xã Mỹ Nhơn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2478\",\"properties\":{\"matinhxa\":\"30.2492\",\"maxa\":2492},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Mỹ Long (xã)",
- "truocsn": "Thị trấn Mỹ Long, Xã Mỹ Long Bắc, Xã Mỹ Long Nam",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2519\",\"properties\":{\"matinhxa\":\"30.2533\",\"maxa\":2533},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Mỹ Thuận (xã)",
- "truocsn": "Xã Thành Trung, Xã Nguyễn Văn Thảnh, Xã Mỹ Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2583\",\"properties\":{\"matinhxa\":\"30.2597\",\"maxa\":2597},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Ngãi Tứ (xã)",
- "truocsn": "Xã Loan Mỹ, Xã Bình Ninh, Xã Ngãi Tứ, Thị trấn Trà Ôn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2553\",\"properties\":{\"matinhxa\":\"30.2567\",\"maxa\":2567},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Ngũ Lạc (xã)",
- "truocsn": "Xã Thạnh Hòa Sơn, Xã Ngũ Lạc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2516\",\"properties\":{\"matinhxa\":\"30.2530\",\"maxa\":2530},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Nguyệt Hoá (phường)",
- "truocsn": "Phường 7, Phường 8 (thành phố Trà Vinh), Xã Nguyệt Hóa",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2506\",\"properties\":{\"matinhxa\":\"30.2520\",\"maxa\":2520},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Nhị Long (xã)",
- "truocsn": "Xã Đại Phước, Xã Đức Mỹ, Xã Nhị Long",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2492\",\"properties\":{\"matinhxa\":\"30.2506\",\"maxa\":2506},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Nhị Trường (xã)",
- "truocsn": "Xã Hiệp Hòa, Xã Trường Thọ, Xã Nhị Trường",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2533\",\"properties\":{\"matinhxa\":\"30.2547\",\"maxa\":2547},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Nhơn Phú (xã)",
- "truocsn": "Xã Mỹ An (huyện Mang Thít), Xã Mỹ Phước, Xã Nhơn Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2529\",\"properties\":{\"matinhxa\":\"30.2543\",\"maxa\":2543},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Nhuận Phú Tân (xã)",
- "truocsn": "Xã Khánh Thạnh Tân, Xã Tân Thanh Tây, Xã Nhuận Phú Tân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2458\",\"properties\":{\"matinhxa\":\"30.2472\",\"maxa\":2472},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Phong Thạnh (xã)",
- "truocsn": "Xã Ninh Thới, Xã Phong Phú, Xã Phong Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2499\",\"properties\":{\"matinhxa\":\"30.2513\",\"maxa\":2513},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Phú Khương (phường)",
- "truocsn": "Phường 8 (thành phố Bến Tre), Phường Phú Khương, Xã Phú Hưng, Xã Nhơn Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2441\",\"properties\":{\"matinhxa\":\"30.2455\",\"maxa\":2455},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Phú Phụng (xã)",
- "truocsn": "Xã Sơn Định, Xã Vĩnh Bình, Xã Phú Phụng",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2450\",\"properties\":{\"matinhxa\":\"30.2464\",\"maxa\":2464},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Phú Quới (xã)",
- "truocsn": "Xã Lộc Hòa, Xã Hòa Phú, Xã Thạnh Quới, Xã Phú Quới",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2527\",\"properties\":{\"matinhxa\":\"30.2541\",\"maxa\":2541},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Phú Tân (phường)",
- "truocsn": "Phường Phú Tân, Xã Hữu Định, Xã Phước Thạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2442\",\"properties\":{\"matinhxa\":\"30.2456\",\"maxa\":2456},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Phú Thuận (xã)",
- "truocsn": "Xã Long Định, Xã Tam Hiệp, Xã Phú Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2470\",\"properties\":{\"matinhxa\":\"30.2484\",\"maxa\":2484},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Phú Túc (xã)",
- "truocsn": "Thị trấn Châu Thành (huyện Châu Thành, tỉnh Bến Tre), Xã Tân Thạch, Xã Tường Đa, Xã Phú Túc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2446\",\"properties\":{\"matinhxa\":\"30.2460\",\"maxa\":2460},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Phước Hậu (phường)",
- "truocsn": "Phường 3, Phường 4 (thành phố Vĩnh Long), Xã Phước Hậu",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2526\",\"properties\":{\"matinhxa\":\"30.2540\",\"maxa\":2540},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Phước Long (xã)",
- "truocsn": "Xã Long Mỹ (huyện Giồng Trôm), Xã Hưng Phong, Xã Phước Long",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2466\",\"properties\":{\"matinhxa\":\"30.2480\",\"maxa\":2480},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Phước Mỹ Trung (xã)",
- "truocsn": "Thị trấn Phước Mỹ Trung, Xã Phú Mỹ, Xã Thạnh Ngãi, Xã Tân Phú Tây",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2455\",\"properties\":{\"matinhxa\":\"30.2469\",\"maxa\":2469},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Quới An (xã)",
- "truocsn": "Xã Trung Thành Tây, Xã Tân Quới Trung, Xã Quới An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2543\",\"properties\":{\"matinhxa\":\"30.2557\",\"maxa\":2557},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Quới Điền (xã)",
- "truocsn": "Xã Hòa Lợi (huyện Thạnh Phú), Xã Mỹ Hưng, Xã Quới Điền",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2485\",\"properties\":{\"matinhxa\":\"30.2499\",\"maxa\":2499},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Quới Thiện (xã)",
- "truocsn": "Xã Thanh Bình, Xã Quới Thiện",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2542\",\"properties\":{\"matinhxa\":\"30.2556\",\"maxa\":2556},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Sơn Đông (phường)",
- "truocsn": "Phường 6, Xã Sơn Đông, Xã Tam Phước",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2444\",\"properties\":{\"matinhxa\":\"30.2458\",\"maxa\":2458},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Song Lộc (xã)",
- "truocsn": "Xã Lương Hòa (huyện Châu Thành), Xã Lương Hòa A, Xã Song Lộc",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2509\",\"properties\":{\"matinhxa\":\"30.2523\",\"maxa\":2523},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Song Phú (xã)",
- "truocsn": "Xã Tân Phú (huyện Tam Bình), Xã Long Phú, Xã Phú Thịnh, Xã Song Phú",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2551\",\"properties\":{\"matinhxa\":\"30.2565\",\"maxa\":2565},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Tam Bình (xã)",
- "truocsn": "Xã Mỹ Thạnh Trung, Thị trấn Tam Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2549\",\"properties\":{\"matinhxa\":\"30.2563\",\"maxa\":2563},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Tam Ngãi (xã)",
- "truocsn": "Xã Thông Hòa, Xã Thạnh Phú, Xã Tam Ngãi",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2497\",\"properties\":{\"matinhxa\":\"30.2511\",\"maxa\":2511},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Huyền Hội, Xã Tân An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2495\",\"properties\":{\"matinhxa\":\"30.2509\",\"maxa\":2509},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Tân Hạnh (phường)",
- "truocsn": "Phường 8 (thành phố Vĩnh Long), Xã Tân Hạnh",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2525\",\"properties\":{\"matinhxa\":\"30.2539\",\"maxa\":2539},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Tân Hào (xã)",
- "truocsn": "Xã Tân Lợi Thạnh, Xã Thạnh Phú Đông, Xã Tân Hào",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2467\",\"properties\":{\"matinhxa\":\"30.2481\",\"maxa\":2481},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tân Hoà (xã)",
- "truocsn": "Xã Long Thới (huyện Tiểu Cần), Xã Tân Hòa, Thị trấn Cầu Quan",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2503\",\"properties\":{\"matinhxa\":\"30.2517\",\"maxa\":2517},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Tân Long Hội (xã)",
- "truocsn": "Xã Tân An Hội, Xã Tân Long, Xã Tân Long Hội",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2541\",\"properties\":{\"matinhxa\":\"30.2555\",\"maxa\":2555},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Tân Lược (xã)",
- "truocsn": "Xã Tân Thành, Xã Tân An Thạnh, Xã Tân Lược",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2582\",\"properties\":{\"matinhxa\":\"30.2596\",\"maxa\":2596},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Tân Ngãi (phường)",
- "truocsn": "Phường Tân Hòa, Phường Tân Hội, Phường Tân Ngãi",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2521\",\"properties\":{\"matinhxa\":\"30.2535\",\"maxa\":2535},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tân Phú (xã)",
- "truocsn": "Xã Tân Phú (huyện Châu Thành), Xã Tiên Long, Xã Phú Đức",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2447\",\"properties\":{\"matinhxa\":\"30.2461\",\"maxa\":2461},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Tân Quới (xã)",
- "truocsn": "Xã Tân Bình (huyện Bình Tân), Xã Thành Lợi, Thị trấn Tân Quới",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2584\",\"properties\":{\"matinhxa\":\"30.2598\",\"maxa\":2598},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Tân Thành Bình (xã)",
- "truocsn": "Xã Tân Bình (huyện Mỏ Cày Bắc), Xã Thành An, Xã Hòa Lộc, Xã Tân Thành Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2456\",\"properties\":{\"matinhxa\":\"30.2470\",\"maxa\":2470},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Tân Thủy (xã)",
- "truocsn": "Thị trấn Tiệm Tôm, Xã An Hòa Tây, Xã Tân Thủy",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2482\",\"properties\":{\"matinhxa\":\"30.2496\",\"maxa\":2496},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Tân Xuân (xã)",
- "truocsn": "Xã Phú Lễ, Xã Phước Ngãi, Xã Tân Xuân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2477\",\"properties\":{\"matinhxa\":\"30.2491\",\"maxa\":2491},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Tập Ngãi (xã)",
- "truocsn": "Xã Hiếu Tử, Xã Tập Ngãi",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2501\",\"properties\":{\"matinhxa\":\"30.2515\",\"maxa\":2515},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Tập Sơn (xã)",
- "truocsn": "Xã Tân Sơn, Xã Phước Hưng, Xã Tập Sơn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2511\",\"properties\":{\"matinhxa\":\"30.2525\",\"maxa\":2525},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "104",
- "ten": "Thanh Đức (phường)",
- "truocsn": "Phường 5 (thành phố Vĩnh Long), Xã Thanh Đức",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2524\",\"properties\":{\"matinhxa\":\"30.2538\",\"maxa\":2538},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "105",
- "ten": "Thạnh Hải (xã)",
- "truocsn": "Xã An Điền, Xã Thạnh Hải",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2487\",\"properties\":{\"matinhxa\":\"30.2501\",\"maxa\":2501},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "106",
- "ten": "Thạnh Phong (xã)",
- "truocsn": "Xã Giao Thạnh, Xã Thạnh Phong",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2488\",\"properties\":{\"matinhxa\":\"30.2502\",\"maxa\":2502},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "107",
- "ten": "Thạnh Phú (xã)",
- "truocsn": "Thị trấn Thạnh Phú, Xã An Thạnh (huyện Thạnh Phú), Xã Bình Thạnh, Xã Mỹ An",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2483\",\"properties\":{\"matinhxa\":\"30.2497\",\"maxa\":2497},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "108",
- "ten": "Thạnh Phước (xã)",
- "truocsn": "Xã Đại Hòa Lộc, Xã Thạnh Phước",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2474\",\"properties\":{\"matinhxa\":\"30.2488\",\"maxa\":2488},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "109",
- "ten": "Thành Thới (xã)",
- "truocsn": "Xã An Thới, Xã Thành Thới A, Xã Thành Thới B",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2460\",\"properties\":{\"matinhxa\":\"30.2474\",\"maxa\":2474},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "110",
- "ten": "Thạnh Trị (xã)",
- "truocsn": "Xã Định Trung, Xã Phú Long, Xã Thạnh Trị",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2473\",\"properties\":{\"matinhxa\":\"30.2487\",\"maxa\":2487},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "111",
- "ten": "Thới Thuận (xã)",
- "truocsn": "Xã Thừa Đức, Xã Thới Thuận",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2475\",\"properties\":{\"matinhxa\":\"30.2489\",\"maxa\":2489},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "112",
- "ten": "Tiên Thủy (xã)",
- "truocsn": "Thị trấn Tiên Thủy, Xã Thành Triệu, Xã Quới Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2448\",\"properties\":{\"matinhxa\":\"30.2462\",\"maxa\":2462},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "113",
- "ten": "Tiểu Cần (xã)",
- "truocsn": "Thị trấn Tiểu Cần, Xã Phú Cần, Xã Hiếu Trung",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2500\",\"properties\":{\"matinhxa\":\"30.2514\",\"maxa\":2514},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "114",
- "ten": "Trà Côn (xã)",
- "truocsn": "Xã Nhơn Bình, Xã Trà Côn, Xã Tân Mỹ, Thị trấn Tam Bình",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2589\",\"properties\":{\"matinhxa\":\"30.2603\",\"maxa\":2603},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "115",
- "ten": "Trà Cú (xã)",
- "truocsn": "Thị trấn Trà Cú, Xã Ngãi Xuyên, Xã Thanh Sơn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2510\",\"properties\":{\"matinhxa\":\"30.2524\",\"maxa\":2524},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "116",
- "ten": "Trà Ôn (xã)",
- "truocsn": "Xã Tích Thiện, Thị trấn Trà Ôn",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2587\",\"properties\":{\"matinhxa\":\"30.2601\",\"maxa\":2601},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "117",
- "ten": "Trà Vinh (phường)",
- "truocsn": "Phường 1, Phường 3, Phường 9 (thành phố Trà Vinh)",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2489\",\"properties\":{\"matinhxa\":\"30.2503\",\"maxa\":2503},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "118",
- "ten": "Trung Hiệp (xã)",
- "truocsn": "Xã Tân An Luông, Xã Trung Chánh, Xã Trung Hiệp",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2544\",\"properties\":{\"matinhxa\":\"30.2558\",\"maxa\":2558},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "119",
- "ten": "Trung Ngãi (xã)",
- "truocsn": "Xã Trung Thành Đông, Xã Trung Nghĩa, Xã Trung Ngãi",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2547\",\"properties\":{\"matinhxa\":\"30.2561\",\"maxa\":2561},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "120",
- "ten": "Trung Thành (xã)",
- "truocsn": "Thị trấn Vũng Liêm, Xã Trung Hiếu, Xã Trung Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2546\",\"properties\":{\"matinhxa\":\"30.2560\",\"maxa\":2560},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "121",
- "ten": "Trường Long Hoà (phường)",
- "truocsn": "Phường 2 (thị xã Duyên Hải), Xã Trường Long Hòa",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2515\",\"properties\":{\"matinhxa\":\"30.2529\",\"maxa\":2529},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "122",
- "ten": "Vinh Kim (xã)",
- "truocsn": "Xã Kim Hòa, Xã Vinh Kim",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2532\",\"properties\":{\"matinhxa\":\"30.2546\",\"maxa\":2546},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "123",
- "ten": "Vĩnh Thành (xã)",
- "truocsn": "Xã Phú Sơn, Xã Tân Thiềng, Xã Vĩnh Thành",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2451\",\"properties\":{\"matinhxa\":\"30.2465\",\"maxa\":2465},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "124",
- "ten": "Vĩnh Xuân (xã)",
- "truocsn": "Xã Hựu Thành, Xã Thuận Thới, Xã Vĩnh Xuân",
- "provinceName": "tỉnh Vĩnh Long",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.2590\",\"properties\":{\"matinhxa\":\"30.2604\",\"maxa\":2604},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Bình (phường)",
- "truocsn": "Phường An Lộc, Phường An Bình A, Phường An Bình B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.424\",\"properties\":{\"matinhxa\":\"31.424\",\"maxa\":424},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Hòa (xã)",
- "truocsn": "Xã Phú Thành B, Xã An Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.428\",\"properties\":{\"matinhxa\":\"31.428\",\"maxa\":428},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Hữu (xã)",
- "truocsn": "Xã Hòa Hưng, Xã Mỹ Lương, Xã An Hữu",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.534\",\"properties\":{\"matinhxa\":\"31.534\",\"maxa\":534},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Long (xã)",
- "truocsn": "Xã An Phong, Xã Phú Ninh, Xã An Long",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.430\",\"properties\":{\"matinhxa\":\"31.430\",\"maxa\":430},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Phước (xã)",
- "truocsn": "Xã Tân Phước (huyện Tân Hồng), Xã An Phước",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.419\",\"properties\":{\"matinhxa\":\"31.3374\",\"maxa\":3374},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "An Thạnh Thủy (xã)",
- "truocsn": "Xã Bình Phan, Xã Bình Phục Nhứt, Xã An Thạnh Thủy",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.530\",\"properties\":{\"matinhxa\":\"31.530\",\"maxa\":530},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Ba Sao (xã)",
- "truocsn": "Xã Phương Trà, Xã Ba Sao",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.506\",\"properties\":{\"matinhxa\":\"31.506\",\"maxa\":506},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Hàng Trung (xã)",
- "truocsn": "Xã Tân Hội Trung, Xã Bình Hàng Tây, Xã Bình Hàng Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.457\",\"properties\":{\"matinhxa\":\"31.457\",\"maxa\":457},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Ninh (xã)",
- "truocsn": "Xã Xuân Đông, Xã Hòa Định, Xã Bình Ninh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.535\",\"properties\":{\"matinhxa\":\"31.535\",\"maxa\":535},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Phú (xã)",
- "truocsn": "Thị trấn Bình Phú, Xã Phú An, Xã Cẩm Sơn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.542\",\"properties\":{\"matinhxa\":\"31.543\",\"maxa\":543},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Thành (xã)",
- "truocsn": "Xã Bình Thành (huyện Thanh Bình), Xã Bình Tấn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.460\",\"properties\":{\"matinhxa\":\"31.460\",\"maxa\":460},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Trưng (xã)",
- "truocsn": "Xã Điềm Hy, Xã Bình Trưng",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.522\",\"properties\":{\"matinhxa\":\"31.522\",\"maxa\":522},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bình Xuân (phường)",
- "truocsn": "Phường Long Chánh, Xã Bình Xuân",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.90\",\"properties\":{\"matinhxa\":\"31.90\",\"maxa\":90},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cái Bè (xã)",
- "truocsn": "Thị trấn Cái Bè, Xã Đông Hòa Hiệp, Xã Hòa Khánh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.486\",\"properties\":{\"matinhxa\":\"31.486\",\"maxa\":486},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Cai Lậy (phường)",
- "truocsn": "Phường 4 (thị xã Cai Lậy), Phường 5 (thị xã Cai Lậy), Xã Long Khánh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3355\",\"properties\":{\"matinhxa\":\"31.541\",\"maxa\":541},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Cao Lãnh (phường)",
- "truocsn": "Phường 1 (thành phố Cao Lãnh), Phường 3, Phường 4, Phường 6, Phường Hòa Thuận, Xã Hòa An, Xã Tịnh Thới, Xã Tân Thuận Tây, Xã Tân Thuận Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.414\",\"properties\":{\"matinhxa\":\"31.414\",\"maxa\":414},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Tân Hiệp, Xã Thân Cửu Nghĩa, Xã Long An",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.548\",\"properties\":{\"matinhxa\":\"31.550\",\"maxa\":550},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Chợ Gạo (xã)",
- "truocsn": "Thị trấn Chợ Gạo, Xã Long Bình Điền, Xã Song Bình",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.526\",\"properties\":{\"matinhxa\":\"31.526\",\"maxa\":526},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Đạo Thạnh (phường)",
- "truocsn": "Phường 4 (thành phố Mỹ Tho), Phường 5 (thành phố Mỹ Tho), Xã Đạo Thạnh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.511\",\"properties\":{\"matinhxa\":\"31.511\",\"maxa\":511},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Đốc Binh Kiều (xã)",
- "truocsn": "Xã Tân Kiều, Xã Đốc Binh Kiều",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.437\",\"properties\":{\"matinhxa\":\"31.437\",\"maxa\":437},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Đồng Sơn (xã)",
- "truocsn": "Xã Bình Nhì, Xã Đồng Thạnh, Xã Đồng Sơn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.537\",\"properties\":{\"matinhxa\":\"31.537\",\"maxa\":537},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Gia Thuận (xã)",
- "truocsn": "Thị trấn Vàm Láng, Xã Kiểng Phước, Xã Gia Thuận",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.89\",\"properties\":{\"matinhxa\":\"31.89\",\"maxa\":89},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Gò Công (phường)",
- "truocsn": "Phường 1 (thành phố Gò Công), Phường 5 (thành phố Gò Công), Phường Long Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.514\",\"properties\":{\"matinhxa\":\"31.514\",\"maxa\":514},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Gò Công Đông (xã)",
- "truocsn": "Xã Tân Thành (huyện Gò Công Đông), Xã Tăng Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.88\",\"properties\":{\"matinhxa\":\"31.88\",\"maxa\":88},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Hậu Mỹ (xã)",
- "truocsn": "Xã Hậu Mỹ Bắc A, Xã Hậu Mỹ Bắc B, Xã Hậu Mỹ Trinh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.519\",\"properties\":{\"matinhxa\":\"31.519\",\"maxa\":519},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Hiệp Đức (xã)",
- "truocsn": "Xã Tân Phong, Xã Hội Xuân, Xã Hiệp Đức",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.546\",\"properties\":{\"matinhxa\":\"31.548\",\"maxa\":548},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Hòa Long (xã)",
- "truocsn": "Thị trấn Lai Vung, Xã Long Hậu, Xã Long Thắng, Xã Hòa Long",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.467\",\"properties\":{\"matinhxa\":\"31.467\",\"maxa\":467},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Hội Cư (xã)",
- "truocsn": "Xã Mỹ Hội (huyện Cái Bè), Xã An Cư, Xã Hậu Thành, Xã Hậu Mỹ Phú",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.520\",\"properties\":{\"matinhxa\":\"31.520\",\"maxa\":520},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Hồng Ngự (phường)",
- "truocsn": "Phường An Thạnh, Xã Bình Thạnh, Xã Tân Hội (thành phố Hồng Ngự)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.420\",\"properties\":{\"matinhxa\":\"31.420\",\"maxa\":420},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Hưng Thạnh (xã)",
- "truocsn": "Xã Hưng Thạnh (huyện Tân Phước), Xã Phú Mỹ, Xã Tân Hòa Thành",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.479\",\"properties\":{\"matinhxa\":\"31.479\",\"maxa\":479},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Kim Sơn (xã)",
- "truocsn": "Xã Song Thuận, Xã Bình Đức, Xã Kim Sơn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.524\",\"properties\":{\"matinhxa\":\"31.524\",\"maxa\":524},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Lai Vung (xã)",
- "truocsn": "Xã Tân Thành, Xã Tân Phước (huyện Lai Vung), Xã Định An, Xã Định Yên",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.465\",\"properties\":{\"matinhxa\":\"31.465\",\"maxa\":465},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Lấp Vò (xã)",
- "truocsn": "Thị trấn Lấp Vò, Xã Bình Thành (huyện Lấp Vò), Xã Vĩnh Thạnh, Xã Bình Thạnh Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.462\",\"properties\":{\"matinhxa\":\"31.462\",\"maxa\":462},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Long Bình (xã)",
- "truocsn": "Xã Bình Tân, Xã Long Bình",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.84\",\"properties\":{\"matinhxa\":\"31.84\",\"maxa\":84},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Long Định (xã)",
- "truocsn": "Xã Nhị Bình, Xã Đông Hòa, Xã Long Định",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.550\",\"properties\":{\"matinhxa\":\"31.552\",\"maxa\":552},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Long Hưng (xã)",
- "truocsn": "Xã Tam Hiệp, Xã Thạnh Phú, Xã Long Hưng",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.551\",\"properties\":{\"matinhxa\":\"31.553\",\"maxa\":553},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Long Khánh (xã)",
- "truocsn": "Xã Long Khánh A, Xã Long Khánh B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.423\",\"properties\":{\"matinhxa\":\"31.423\",\"maxa\":423},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Long Phú Thuận (xã)",
- "truocsn": "Xã Long Thuận, Xã Phú Thuận A, Xã Phú Thuận B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.425\",\"properties\":{\"matinhxa\":\"31.425\",\"maxa\":425},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Long Thuận (phường)",
- "truocsn": "Phường 2 (thành phố Gò Công), Phường Long Thuận",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.516\",\"properties\":{\"matinhxa\":\"31.516\",\"maxa\":516},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Long Tiên (xã)",
- "truocsn": "Xã Mỹ Long (huyện Cai Lậy), Xã Long Trung, Xã Long Tiên",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.545\",\"properties\":{\"matinhxa\":\"31.547\",\"maxa\":547},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Lương Hòa Lạc (xã)",
- "truocsn": "Xã Thanh Bình, Xã Phú Kiết, Xã Lương Hòa Lạc",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.528\",\"properties\":{\"matinhxa\":\"31.528\",\"maxa\":528},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Mỹ An Hưng (xã)",
- "truocsn": "Xã Tân Mỹ (huyện Lấp Vò), Xã Hội An Đông, Xã Mỹ An Hưng A, Xã Mỹ An Hưng B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.463\",\"properties\":{\"matinhxa\":\"31.463\",\"maxa\":463},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Mỹ Đức Tây (xã)",
- "truocsn": "Xã Thiện Trí, Xã Mỹ Đức Đông, Xã Mỹ Đức Tây",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.532\",\"properties\":{\"matinhxa\":\"31.532\",\"maxa\":532},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Mỹ Hiệp (xã)",
- "truocsn": "Xã Mỹ Long, Xã Bình Thạnh (huyện Cao Lãnh), Xã Mỹ Hiệp",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.509\",\"properties\":{\"matinhxa\":\"31.509\",\"maxa\":509},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Mỹ Lợi (xã)",
- "truocsn": "Xã An Thái Đông, Xã Mỹ Lợi A, Xã Mỹ Lợi B",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.521\",\"properties\":{\"matinhxa\":\"31.521\",\"maxa\":521},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Mỹ Ngãi (phường)",
- "truocsn": "Phường Mỹ Ngãi, Xã Mỹ Tân (thành phố Cao Lãnh), Xã Tân Nghĩa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.415\",\"properties\":{\"matinhxa\":\"31.415\",\"maxa\":415},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Mỹ Phong (phường)",
- "truocsn": "Phường 9 (thành phố Mỹ Tho), Xã Tân Mỹ Chánh, Xã Mỹ Phong",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.513\",\"properties\":{\"matinhxa\":\"31.513\",\"maxa\":513},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Mỹ Phước Tây (phường)",
- "truocsn": "Phường 1 (thị xã Cai Lậy), Phường 3 (thị xã Cai Lậy), Xã Mỹ Hạnh Trung, Xã Mỹ Phước Tây",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3359\",\"properties\":{\"matinhxa\":\"31.3376\",\"maxa\":3376},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mỹ Quí (xã)",
- "truocsn": "Xã Láng Biển, Xã Mỹ Đông, Xã Mỹ Quí",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.436\",\"properties\":{\"matinhxa\":\"31.436\",\"maxa\":436},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Mỹ Thành (xã)",
- "truocsn": "Xã Phú Nhuận, Xã Mỹ Thành Bắc, Xã Mỹ Thành Nam",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.540\",\"properties\":{\"matinhxa\":\"31.540\",\"maxa\":540},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Mỹ Thiện (xã)",
- "truocsn": "Xã Mỹ Tân (huyện Cái Bè), Xã Mỹ Trung, Xã Thiện Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.531\",\"properties\":{\"matinhxa\":\"31.531\",\"maxa\":531},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Mỹ Tho (phường)",
- "truocsn": "Phường 1 (thành phố Mỹ Tho), Phường 2 (thành phố Mỹ Tho), Phường Tân Long",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.510\",\"properties\":{\"matinhxa\":\"31.510\",\"maxa\":510},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Mỹ Thọ (xã)",
- "truocsn": "Thị trấn Mỹ Thọ, Xã Mỹ Hội (huyện Cao Lãnh), Xã Mỹ Xương, Xã Mỹ Thọ",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.508\",\"properties\":{\"matinhxa\":\"31.508\",\"maxa\":508},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Mỹ Tịnh An (xã)",
- "truocsn": "Xã Trung Hòa, Xã Hòa Tịnh, Xã Tân Bình Thạnh, Xã Mỹ Tịnh An",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.527\",\"properties\":{\"matinhxa\":\"31.527\",\"maxa\":527},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Mỹ Trà (phường)",
- "truocsn": "Phường Mỹ Phú, Xã Nhị Mỹ, Xã An Bình, Xã Mỹ Trà",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.416\",\"properties\":{\"matinhxa\":\"31.416\",\"maxa\":416},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Ngũ Hiệp (xã)",
- "truocsn": "Xã Tam Bình, Xã Ngũ Hiệp",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.547\",\"properties\":{\"matinhxa\":\"31.549\",\"maxa\":549},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Nhị Quý (phường)",
- "truocsn": "Phường Nhị Mỹ, Xã Phú Quý, Xã Nhị Quý",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.543\",\"properties\":{\"matinhxa\":\"31.544\",\"maxa\":544},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phong Hòa (xã)",
- "truocsn": "Xã Tân Hòa (huyện Lai Vung), Xã Định Hòa, Xã Vĩnh Thới, Xã Phong Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.468\",\"properties\":{\"matinhxa\":\"31.468\",\"maxa\":468},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Phong Mỹ (xã)",
- "truocsn": "Xã Phong Mỹ, Xã Gáo Giồng (phần còn lại sau khi sáp nhập vào xã Phú Cường)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.507\",\"properties\":{\"matinhxa\":\"31.507\",\"maxa\":507},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Phú Cường (xã)",
- "truocsn": "Xã Phú Cường (huyện Tam Nông), Xã Hòa Bình, Xã Gáo Giồng",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.431\",\"properties\":{\"matinhxa\":\"31.431\",\"maxa\":431},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phú Hựu (xã)",
- "truocsn": "Thị trấn Cái Tàu Hạ, Xã An Phú Thuận, Xã An Hiệp, Xã An Nhơn, Xã Phú Hựu",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.471\",\"properties\":{\"matinhxa\":\"31.471\",\"maxa\":471},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phú Thành (xã)",
- "truocsn": "Xã Bình Phú (huyện Gò Công Tây), Xã Thành Công, Xã Yên Luông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.538\",\"properties\":{\"matinhxa\":\"31.538\",\"maxa\":538},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phú Thọ (xã)",
- "truocsn": "Xã Phú Thành A, Xã Phú Thọ",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.432\",\"properties\":{\"matinhxa\":\"31.432\",\"maxa\":432},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Phương Thịnh (xã)",
- "truocsn": "Xã Hưng Thạnh (huyện Tháp Mười), Xã Phương Thịnh",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.505\",\"properties\":{\"matinhxa\":\"31.505\",\"maxa\":505},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Sa Đéc (phường)",
- "truocsn": "Phường 1, Phường 2, Phường 3, Phường 4 (thành phố Sa Đéc), Phường An Hòa, Phường Tân Quy Đông, Xã Tân Khánh Đông, Xã Tân Quy Tây",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.417\",\"properties\":{\"matinhxa\":\"31.417\",\"maxa\":417},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Sơn Qui (phường)",
- "truocsn": "Phường Long Hưng, Xã Tân Trung, Xã Bình Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.515\",\"properties\":{\"matinhxa\":\"31.515\",\"maxa\":515},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tam Nông (xã)",
- "truocsn": "Xã Phú Đức, Xã Phú Hiệp",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.427\",\"properties\":{\"matinhxa\":\"31.427\",\"maxa\":427},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tân Điền (xã)",
- "truocsn": "Xã Bình Ân, Xã Tân Điền",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.121\",\"properties\":{\"matinhxa\":\"31.121\",\"maxa\":121},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Đông (xã)",
- "truocsn": "Xã Tân Phước (huyện Gò Công Đông), Xã Tân Tây, Xã Tân Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.120\",\"properties\":{\"matinhxa\":\"31.120\",\"maxa\":120},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Dương (xã)",
- "truocsn": "Xã Tân Phú Đông, Xã Hòa Thành, Xã Tân Dương",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.466\",\"properties\":{\"matinhxa\":\"31.466\",\"maxa\":466},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Hộ Cơ (xã)",
- "truocsn": "Xã Tân Thành B, Xã Tân Hộ Cơ",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3358\",\"properties\":{\"matinhxa\":\"31.419\",\"maxa\":419},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tân Hòa (xã)",
- "truocsn": "Thị trấn Tân Hòa, Xã Phước Trung, Xã Bình Nghị",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.87\",\"properties\":{\"matinhxa\":\"31.87\",\"maxa\":87},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tân Hồng (xã)",
- "truocsn": "Thị trấn Sa Rài, Xã Bình Phú (huyện Tân Hồng), Xã Tân Công Chí",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.418\",\"properties\":{\"matinhxa\":\"31.418\",\"maxa\":418},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Tân Hương (xã)",
- "truocsn": "Xã Tân Lý Đông, Xã Tân Hội Đông, Xã Tân Hương",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.549\",\"properties\":{\"matinhxa\":\"31.551\",\"maxa\":551},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Tân Khánh Trung (xã)",
- "truocsn": "Xã Long Hưng A, Xã Long Hưng B, Xã Tân Khánh Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.464\",\"properties\":{\"matinhxa\":\"31.464\",\"maxa\":464},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Tân Long (xã)",
- "truocsn": "Xã Tân Bình, Xã Tân Hòa (huyện Thanh Bình), Xã Tân Quới, Xã Tân Huề, Xã Tân Long, Xã Phú Thuận B (phần còn lại sau khi sáp nhập vào xã Long Phú Thuận)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.461\",\"properties\":{\"matinhxa\":\"31.461\",\"maxa\":461},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Tân Nhuận Đông (xã)",
- "truocsn": "Xã Hòa Tân, Xã An Khánh, Xã Tân Nhuận Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.469\",\"properties\":{\"matinhxa\":\"31.469\",\"maxa\":469},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Tân Phú (xã)",
- "truocsn": "Xã Tân Hội, Xã Tân Phú (thị xã Cai Lậy), Xã Mỹ Hạnh Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.541\",\"properties\":{\"matinhxa\":\"31.542\",\"maxa\":542},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Tân Phú Đông (xã)",
- "truocsn": "Xã Phú Thạnh, Xã Phú Đông, Xã Phú Tân",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.86\",\"properties\":{\"matinhxa\":\"31.86\",\"maxa\":86},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Tân Phú Trung (xã)",
- "truocsn": "Xã Tân Bình, Xã Tân Phú (huyện Châu Thành), Xã Phú Long, Xã Tân Phú Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.470\",\"properties\":{\"matinhxa\":\"31.470\",\"maxa\":470},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Tân Phước 1 (xã)",
- "truocsn": "Thị trấn Mỹ Phước, Xã Thạnh Mỹ, Xã Tân Hòa Đông",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.517\",\"properties\":{\"matinhxa\":\"31.517\",\"maxa\":517},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tân Phước 2 (xã)",
- "truocsn": "Xã Thạnh Tân, Xã Thạnh Hòa, Xã Tân Hòa Tây",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.518\",\"properties\":{\"matinhxa\":\"31.518\",\"maxa\":518},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tân Phước 3 (xã)",
- "truocsn": "Xã Phước Lập, Xã Tân Lập 1, Xã Tân Lập 2",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.480\",\"properties\":{\"matinhxa\":\"31.480\",\"maxa\":480},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tân Thành (xã)",
- "truocsn": "Xã Thông Bình, Xã Tân Thành A",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3360\",\"properties\":{\"matinhxa\":\"31.3377\",\"maxa\":3377},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Tân Thạnh (xã)",
- "truocsn": "Xã Phú Lợi, Xã Tân Thạnh (huyện Thanh Bình) (phần còn lại sau khi sáp nhập vào xã Thanh Bình)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.459\",\"properties\":{\"matinhxa\":\"31.459\",\"maxa\":459},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Tân Thới (xã)",
- "truocsn": "Xã Tân Phú, Xã Tân Thạnh (huyện Tân Phú Đông), Xã Tân Thới",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.85\",\"properties\":{\"matinhxa\":\"31.85\",\"maxa\":85},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Tân Thuận Bình (xã)",
- "truocsn": "Xã Đăng Hưng Phước, Xã Quơn Long, Xã Tân Thuận Bình",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.529\",\"properties\":{\"matinhxa\":\"31.529\",\"maxa\":529},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Thanh Bình (xã)",
- "truocsn": "Xã Tân Mỹ, Xã Tân Phú (huyện Thanh Bình), Thị trấn Thanh Bình, Xã Tân Thạnh (huyện Thanh Bình)",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.458\",\"properties\":{\"matinhxa\":\"31.458\",\"maxa\":458},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Thanh Hòa (phường)",
- "truocsn": "Phường 2 (thị xã Cai Lậy), Xã Tân Bình (thị xã Cai Lậy), Xã Thanh Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.544\",\"properties\":{\"matinhxa\":\"31.545\",\"maxa\":545},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Thanh Hưng (xã)",
- "truocsn": "Xã Tân Thanh, Xã Tân Hưng, Xã An Thái Trung",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.533\",\"properties\":{\"matinhxa\":\"31.533\",\"maxa\":533},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Thanh Mỹ (xã)",
- "truocsn": "Xã Phú Điền, Xã Thanh Mỹ",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.504\",\"properties\":{\"matinhxa\":\"31.504\",\"maxa\":504},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Thạnh Phú (xã)",
- "truocsn": "Xã Phú Cường (huyện Cai Lậy), Xã Thạnh Lộc",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.539\",\"properties\":{\"matinhxa\":\"31.539\",\"maxa\":539},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Tháp Mười (xã)",
- "truocsn": "Thị trấn Mỹ An, Xã Mỹ An, Xã Mỹ Hòa",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.433\",\"properties\":{\"matinhxa\":\"31.433\",\"maxa\":433},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Thới Sơn (phường)",
- "truocsn": "Phường 6 (thành phố Mỹ Tho), Xã Thới Sơn",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.525\",\"properties\":{\"matinhxa\":\"31.525\",\"maxa\":525},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Thường Lạc (phường)",
- "truocsn": "Phường An Lạc, Xã Thường Thới Hậu A, Xã Thường Lạc",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.422\",\"properties\":{\"matinhxa\":\"31.422\",\"maxa\":422},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Thường Phước (xã)",
- "truocsn": "Thị trấn Thường Thới Tiền, Xã Thường Phước 1, Xã Thường Phước 2",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.421\",\"properties\":{\"matinhxa\":\"31.421\",\"maxa\":421},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Tràm Chim (xã)",
- "truocsn": "Thị trấn Tràm Chim, Xã Tân Công Sính",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.426\",\"properties\":{\"matinhxa\":\"31.426\",\"maxa\":426},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Trung An (phường)",
- "truocsn": "Phường 10, Xã Phước Thạnh, Xã Trung An",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.512\",\"properties\":{\"matinhxa\":\"31.512\",\"maxa\":512},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Trường Xuân (xã)",
- "truocsn": "Xã Thạnh Lợi, Xã Trường Xuân",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.434\",\"properties\":{\"matinhxa\":\"31.434\",\"maxa\":434},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Vĩnh Bình (xã)",
- "truocsn": "Thị trấn Vĩnh Bình, Xã Thạnh Nhựt, Xã Thạnh Trị",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.536\",\"properties\":{\"matinhxa\":\"31.536\",\"maxa\":536},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Vĩnh Hựu (xã)",
- "truocsn": "Xã Long Vĩnh, Xã Vĩnh Hựu",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.79\",\"properties\":{\"matinhxa\":\"31.79\",\"maxa\":79},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Vĩnh Kim (xã)",
- "truocsn": "Xã Phú Phong, Xã Bàn Long, Xã Vĩnh Kim",
- "provinceName": "tỉnh Đồng Tháp",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.523\",\"properties\":{\"matinhxa\":\"31.523\",\"maxa\":523},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Biên (xã)",
- "truocsn": "Thị trấn Thứ Ba, Xã Đông Yên, Xã Hưng Yên",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.399\",\"properties\":{\"matinhxa\":\"32.399\",\"maxa\":399},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Châu (xã)",
- "truocsn": "Thị trấn An Châu, Xã Hòa Bình Thạnh, Xã Vĩnh Thành",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.350\",\"properties\":{\"matinhxa\":\"32.350\",\"maxa\":350},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Cư (xã)",
- "truocsn": "Xã Văn Giáo, Xã Vĩnh Trung, Xã An Cư",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.498\",\"properties\":{\"matinhxa\":\"32.498\",\"maxa\":498},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Minh (xã)",
- "truocsn": "Thị trấn Thứ Mười Một, Xã Đông Hưng, Xã Đông Hưng B",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.402\",\"properties\":{\"matinhxa\":\"32.402\",\"maxa\":402},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "An Phú (xã)",
- "truocsn": "Thị trấn An Phú, Xã Vĩnh Hội Đông, Xã Phú Hội, Xã Phước Hưng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.341\",\"properties\":{\"matinhxa\":\"32.341\",\"maxa\":341},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Ba Chúc (xã)",
- "truocsn": "Thị trấn Ba Chúc, Xã Lạc Quới, Xã Lê Trì",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.501\",\"properties\":{\"matinhxa\":\"32.501\",\"maxa\":501},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Bình An (xã)",
- "truocsn": "Xã Bình An (huyện Châu Thành), Xã Vĩnh Hòa Hiệp, Xã Vĩnh Hòa Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.386\",\"properties\":{\"matinhxa\":\"32.386\",\"maxa\":386},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Bình Đức (phường)",
- "truocsn": "Phường Bình Khánh, Phường Bình Đức, Xã Mỹ Khánh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.174\",\"properties\":{\"matinhxa\":\"32.174\",\"maxa\":174},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Bình Giang (xã)",
- "truocsn": "xã Bình Giang (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.379\",\"properties\":{\"matinhxa\":\"32.379\",\"maxa\":379},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Bình Hòa (xã)",
- "truocsn": "Xã Bình Thạnh, Xã An Hòa, Xã Bình Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.353\",\"properties\":{\"matinhxa\":\"32.353\",\"maxa\":353},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Bình Mỹ (xã)",
- "truocsn": "Xã Bình Thủy, Xã Bình Chánh, Xã Bình Mỹ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.494\",\"properties\":{\"matinhxa\":\"32.494\",\"maxa\":494},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Bình Sơn (xã)",
- "truocsn": "xã Bình Sơn (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.377\",\"properties\":{\"matinhxa\":\"32.377\",\"maxa\":377},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Bình Thạnh Đông (xã)",
- "truocsn": "Xã Hiệp Xương, Xã Phú Bình, Xã Bình Thạnh Đông",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.484\",\"properties\":{\"matinhxa\":\"32.484\",\"maxa\":484},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Cần Đăng (xã)",
- "truocsn": "Xã Vĩnh Lợi, Xã Cần Đăng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.351\",\"properties\":{\"matinhxa\":\"32.351\",\"maxa\":351},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Châu Đốc (phường)",
- "truocsn": "Phường Vĩnh Nguơn, Phường Châu Phú A, Phường Châu Phú B, Phường Vĩnh Mỹ, Xã Vĩnh Châu",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.340\",\"properties\":{\"matinhxa\":\"32.340\",\"maxa\":340},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Châu Phong (xã)",
- "truocsn": "Xã Phú Vĩnh, Xã Lê Chánh, Xã Châu Phong",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.476\",\"properties\":{\"matinhxa\":\"32.476\",\"maxa\":476},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Châu Phú (xã)",
- "truocsn": "Thị trấn Cái Dầu, Xã Bình Long, Xã Bình Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.485\",\"properties\":{\"matinhxa\":\"32.485\",\"maxa\":485},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Minh Lương, Xã Minh Hòa, Xã Giục Tượng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.385\",\"properties\":{\"matinhxa\":\"32.385\",\"maxa\":385},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Chi Lăng (phường)",
- "truocsn": "Phường Núi Voi, Phường Chi Lăng, Xã Tân Lợi",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.495\",\"properties\":{\"matinhxa\":\"32.495\",\"maxa\":495},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Chợ Mới (xã)",
- "truocsn": "Thị trấn Chợ Mới, Xã Kiến An, Xã Kiến Thành",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.355\",\"properties\":{\"matinhxa\":\"32.355\",\"maxa\":355},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Chợ Vàm (xã)",
- "truocsn": "Thị trấn Chợ Vàm, Xã Phú Thạnh, Xã Phú Thành",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.477\",\"properties\":{\"matinhxa\":\"32.477\",\"maxa\":477},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Cô Tô (xã)",
- "truocsn": "Thị trấn Cô Tô, Xã Tà Đảnh, Xã Tân Tuyến",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.503\",\"properties\":{\"matinhxa\":\"32.503\",\"maxa\":503},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Cù Lao Giêng (xã)",
- "truocsn": "Xã Tấn Mỹ, Xã Mỹ Hiệp, Xã Bình Phước Xuân",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.357\",\"properties\":{\"matinhxa\":\"32.357\",\"maxa\":357},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Định Hòa (xã)",
- "truocsn": "Xã Thới Quản, Xã Thủy Liễu, Xã Định Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.397\",\"properties\":{\"matinhxa\":\"32.397\",\"maxa\":397},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Định Mỹ (xã)",
- "truocsn": "Xã Vĩnh Phú (huyện Thoại Sơn), Xã Định Thành, Xã Định Mỹ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.366\",\"properties\":{\"matinhxa\":\"32.366\",\"maxa\":366},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Đông Hòa (xã)",
- "truocsn": "Xã Đông Thạnh, Xã Đông Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.404\",\"properties\":{\"matinhxa\":\"32.404\",\"maxa\":404},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Đông Hưng (xã)",
- "truocsn": "Xã Vân Khánh Đông, Xã Đông Hưng A",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.406\",\"properties\":{\"matinhxa\":\"32.406\",\"maxa\":406},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Đông Thái (xã)",
- "truocsn": "Xã Nam Thái, Xã Nam Thái A, Xã Đông Thái",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.401\",\"properties\":{\"matinhxa\":\"32.401\",\"maxa\":401},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Giang Thành (xã)",
- "truocsn": "Xã Tân Khánh Hòa, Xã Phú Lợi, Xã Phú Mỹ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.374\",\"properties\":{\"matinhxa\":\"32.374\",\"maxa\":374},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Giồng Riềng (xã)",
- "truocsn": "Thị trấn Giồng Riềng, Xã Bàn Tân Định, Xã Thạnh Hòa, Xã Bàn Thạch, Xã Thạnh Bình",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.389\",\"properties\":{\"matinhxa\":\"32.389\",\"maxa\":389},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Gò Quao (xã)",
- "truocsn": "Thị trấn Gò Quao, Xã Vĩnh Phước B, Xã Định An",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.395\",\"properties\":{\"matinhxa\":\"32.395\",\"maxa\":395},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Hà Tiên (phường)",
- "truocsn": "Phường Pháo Đài, Phường Bình San, Phường Mỹ Đức, Phường Đông Hồ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.371\",\"properties\":{\"matinhxa\":\"32.371\",\"maxa\":371},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Hòa Điền (xã)",
- "truocsn": "Xã Kiên Bình, Xã Hòa Điền",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.375\",\"properties\":{\"matinhxa\":\"32.375\",\"maxa\":375},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Hòa Hưng (xã)",
- "truocsn": "Xã Hòa An (huyện Giồng Riềng), Xã Hòa Lợi, Xã Hòa Hưng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.392\",\"properties\":{\"matinhxa\":\"32.392\",\"maxa\":392},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Hòa Lạc (xã)",
- "truocsn": "Xã Phú Hiệp, Xã Hòa Lạc",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.481\",\"properties\":{\"matinhxa\":\"32.481\",\"maxa\":481},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Hòa Thuận (xã)",
- "truocsn": "Xã Ngọc Hòa, Xã Hòa Thuận",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.394\",\"properties\":{\"matinhxa\":\"32.394\",\"maxa\":394},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Hội An (xã)",
- "truocsn": "Thị trấn Hội An, Xã Hòa An (huyện Chợ Mới), Xã Hòa Bình",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.360\",\"properties\":{\"matinhxa\":\"32.360\",\"maxa\":360},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Hòn Đất (xã)",
- "truocsn": "Thị trấn Hòn Đất, Xã Lình Huỳnh, Xã Thổ Sơn, Xã Nam Thái Sơn",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.376\",\"properties\":{\"matinhxa\":\"32.376\",\"maxa\":376},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Hòn Nghệ (xã)",
- "truocsn": "xã Hòn Nghệ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3303\",\"properties\":{\"matinhxa\":\"32.3319\",\"maxa\":3319},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Khánh Bình (xã)",
- "truocsn": "Thị trấn Long Bình, Xã Khánh An, Xã Khánh Bình",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.361\",\"properties\":{\"matinhxa\":\"32.361\",\"maxa\":361},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Kiên Hải (đặc khu)",
- "truocsn": "Huyện Kiên Hải",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3302\",\"properties\":{\"matinhxa\":\"32.3318\",\"maxa\":3318},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Kiên Lương (xã)",
- "truocsn": "Thị trấn Kiên Lương, Xã Bình An (huyện Kiên Lương), Xã Bình Trị",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.372\",\"properties\":{\"matinhxa\":\"32.372\",\"maxa\":372},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Long Điền (xã)",
- "truocsn": "Thị trấn Mỹ Luông, Xã Long Điền A, Xã Long Điền B",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.356\",\"properties\":{\"matinhxa\":\"32.356\",\"maxa\":356},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Long Kiến (xã)",
- "truocsn": "Xã An Thạnh Trung, Xã Mỹ An, Xã Long Kiến",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.359\",\"properties\":{\"matinhxa\":\"32.359\",\"maxa\":359},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Long Phú (phường)",
- "truocsn": "Phường Long Hưng, Phường Long Châu, Phường Long Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.475\",\"properties\":{\"matinhxa\":\"32.475\",\"maxa\":475},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Long Thạnh (xã)",
- "truocsn": "Xã Vĩnh Phú (huyện Giồng Riềng), Xã Vĩnh Thạnh, Xã Long Thạnh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.393\",\"properties\":{\"matinhxa\":\"32.393\",\"maxa\":393},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Long Xuyên (phường)",
- "truocsn": "Phường Mỹ Bình, Phường Mỹ Long, Phường Mỹ Xuyên, Phường Mỹ Phước, Phường Mỹ Quý, Phường Mỹ Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.171\",\"properties\":{\"matinhxa\":\"32.171\",\"maxa\":171},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Mỹ Đức (xã)",
- "truocsn": "Xã Khánh Hòa, Xã Mỹ Đức",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.491\",\"properties\":{\"matinhxa\":\"32.491\",\"maxa\":491},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Mỹ Hòa Hưng (xã)",
- "truocsn": "xã Mỹ Hòa Hưng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.176\",\"properties\":{\"matinhxa\":\"32.176\",\"maxa\":176},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Mỹ Thới (phường)",
- "truocsn": "Phường Mỹ Thạnh, Phường Mỹ Thới",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.175\",\"properties\":{\"matinhxa\":\"32.175\",\"maxa\":175},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Mỹ Thuận (xã)",
- "truocsn": "Thị trấn Sóc Sơn, Xã Mỹ Hiệp Sơn, Xã Mỹ Phước, Xã Mỹ Thuận",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.381\",\"properties\":{\"matinhxa\":\"32.381\",\"maxa\":381},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Ngọc Chúc (xã)",
- "truocsn": "Xã Ngọc Thuận, Xã Ngọc Thành, Xã Ngọc Chúc",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.391\",\"properties\":{\"matinhxa\":\"32.391\",\"maxa\":391},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Nhơn Hội (xã)",
- "truocsn": "Xã Quốc Thái, Xã Nhơn Hội, Xã Phước Hưng, Xã Phú Hội (phần còn lại sau khi sáp nhập vào xã An Phú)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.378\",\"properties\":{\"matinhxa\":\"32.378\",\"maxa\":378},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Nhơn Mỹ (xã)",
- "truocsn": "Xã Mỹ Hội Đông, Xã Long Giang, Xã Nhơn Mỹ",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.358\",\"properties\":{\"matinhxa\":\"32.358\",\"maxa\":358},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Núi Cấm (xã)",
- "truocsn": "Xã Tân Lập, Xã An Hảo",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.499\",\"properties\":{\"matinhxa\":\"32.499\",\"maxa\":499},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Ô Lâm (xã)",
- "truocsn": "Xã An Tức, Xã Lương Phi, Xã Ô Lâm",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.349\",\"properties\":{\"matinhxa\":\"32.349\",\"maxa\":349},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Óc Eo (xã)",
- "truocsn": "Thị trấn Óc Eo, Xã Vọng Thê, Xã Vọng Đông",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.363\",\"properties\":{\"matinhxa\":\"32.363\",\"maxa\":363},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phú An (xã)",
- "truocsn": "Xã Phú Thọ, Xã Phú Xuân, Xã Phú An",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.482\",\"properties\":{\"matinhxa\":\"32.482\",\"maxa\":482},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Phú Hòa (xã)",
- "truocsn": "Thị trấn Phú Hòa, Xã Phú Thuận, Xã Vĩnh Chánh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.362\",\"properties\":{\"matinhxa\":\"32.362\",\"maxa\":362},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Phú Hữu (xã)",
- "truocsn": "Xã Phú Hữu, Xã Vĩnh Lộc, Xã Phước Hưng (phần còn lại sau khi sáp nhập vào xã An Phú và Nhơn Hội)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.388\",\"properties\":{\"matinhxa\":\"32.388\",\"maxa\":388},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Phú Lâm (xã)",
- "truocsn": "Xã Long Hòa, Xã Phú Long, Xã Phú Lâm",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.478\",\"properties\":{\"matinhxa\":\"32.478\",\"maxa\":478},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Phú Quốc (đặc khu)",
- "truocsn": "Phường Dương Đông, Phường An Thới, Xã Dương Tơ, Xã Hàm Ninh, Xã Cửa Dương, Xã Bãi Thơm, Xã Gành Dầu, Xã Cửa Cạn",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.413\",\"properties\":{\"matinhxa\":\"32.413\",\"maxa\":413},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Phú Tân (xã)",
- "truocsn": "Thị trấn Phú Mỹ, Xã Tân Hòa (huyện Phú Tân), Xã Tân Trung, Xã Phú Hưng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.483\",\"properties\":{\"matinhxa\":\"32.483\",\"maxa\":483},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Rạch Giá (phường)",
- "truocsn": "Phường Vĩnh Quang, Phường Vĩnh Thanh, Phường Vĩnh Thanh Vân, Phường Vĩnh Lạc, Phường An Hòa, Phường Vĩnh Hiệp, Phường An Bình, Phường Rạch Sỏi, Phường Vĩnh Lợi",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.368\",\"properties\":{\"matinhxa\":\"32.368\",\"maxa\":368},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Sơn Hải (xã)",
- "truocsn": "xã Sơn Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3304\",\"properties\":{\"matinhxa\":\"32.3320\",\"maxa\":3320},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Sơn Kiên (xã)",
- "truocsn": "Xã Sơn Bình, Xã Mỹ Thái, Xã Sơn Kiên",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.380\",\"properties\":{\"matinhxa\":\"32.380\",\"maxa\":380},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tân An (xã)",
- "truocsn": "Xã Tân An, Xã Tân Thạnh (thị xã Tân Châu), Xã Long An",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.456\",\"properties\":{\"matinhxa\":\"32.456\",\"maxa\":456},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Tân Châu (phường)",
- "truocsn": "Phường Long Thạnh, Phường Long Sơn",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.429\",\"properties\":{\"matinhxa\":\"32.429\",\"maxa\":429},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Tân Hiệp (xã)",
- "truocsn": "Thị trấn Tân Hiệp, Xã Tân Hiệp B, Xã Thạnh Đông B, Xã Thạnh Đông",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.383\",\"properties\":{\"matinhxa\":\"32.383\",\"maxa\":383},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Tân Hội (xã)",
- "truocsn": "Xã Tân Hòa, Xã Tân An (huyện Tân Hiệp), Xã Tân Thành, Xã Tân Hội",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.382\",\"properties\":{\"matinhxa\":\"32.382\",\"maxa\":382},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Tân Thạnh (xã)",
- "truocsn": "Xã Tân Thạnh (huyện An Minh), Xã Thuận Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.405\",\"properties\":{\"matinhxa\":\"32.405\",\"maxa\":405},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Tây Phú (xã)",
- "truocsn": "Xã An Bình, Xã Mỹ Phú Đông, Xã Tây Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.364\",\"properties\":{\"matinhxa\":\"32.364\",\"maxa\":364},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Tây Yên (xã)",
- "truocsn": "Xã Tây Yên A, Xã Nam Yên, Xã Tây Yên",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.400\",\"properties\":{\"matinhxa\":\"32.400\",\"maxa\":400},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Thạnh Đông (xã)",
- "truocsn": "Xã Tân Hiệp A, Xã Thạnh Trị, Xã Thạnh Đông A",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.384\",\"properties\":{\"matinhxa\":\"32.384\",\"maxa\":384},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thạnh Hưng (xã)",
- "truocsn": "Xã Thạnh Lộc (huyện Giồng Riềng), Xã Thạnh Phước, Xã Thạnh Hưng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.390\",\"properties\":{\"matinhxa\":\"32.390\",\"maxa\":390},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Thạnh Lộc (xã)",
- "truocsn": "Xã Thạnh Lộc (huyện Châu Thành), Xã Mong Thọ, Xã Mong Thọ A, Xã Mong Thọ B",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.387\",\"properties\":{\"matinhxa\":\"32.387\",\"maxa\":387},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thạnh Mỹ Tây (xã)",
- "truocsn": "Xã Đào Hữu Cảnh, Xã Ô Long Vĩ, Xã Thạnh Mỹ Tây",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.493\",\"properties\":{\"matinhxa\":\"32.493\",\"maxa\":493},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thổ Châu (đặc khu)",
- "truocsn": "Xã Thổ Châu",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3301\",\"properties\":{\"matinhxa\":\"32.3317\",\"maxa\":3317},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thoại Sơn (xã)",
- "truocsn": "Thị trấn Núi Sập, Xã Thoại Giang, Xã Bình Thành",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.367\",\"properties\":{\"matinhxa\":\"32.367\",\"maxa\":367},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thới Sơn (phường)",
- "truocsn": "Phường Nhơn Hưng, Phường Nhà Bàng, Phường Thới Sơn",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.497\",\"properties\":{\"matinhxa\":\"32.497\",\"maxa\":497},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Tiên Hải (xã)",
- "truocsn": "xã Tiên Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.3309\",\"properties\":{\"matinhxa\":\"32.3325\",\"maxa\":3325},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Tịnh Biên (phường)",
- "truocsn": "Phường An Phú, Phường Tịnh Biên, Xã An Nông",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.496\",\"properties\":{\"matinhxa\":\"32.496\",\"maxa\":496},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Tô Châu (phường)",
- "truocsn": "Phường Tô Châu, Xã Thuận Yên, Xã Dương Hòa",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.370\",\"properties\":{\"matinhxa\":\"32.370\",\"maxa\":370},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Tri Tôn (xã)",
- "truocsn": "Thị trấn Tri Tôn, Xã Núi Tô, Xã Châu Lăng",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.500\",\"properties\":{\"matinhxa\":\"32.500\",\"maxa\":500},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "U Minh Thượng (xã)",
- "truocsn": "Xã An Minh Bắc, Xã Minh Thuận",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.403\",\"properties\":{\"matinhxa\":\"32.403\",\"maxa\":403},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Vân Khánh (xã)",
- "truocsn": "Xã Vân Khánh Tây, Xã Vân Khánh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.408\",\"properties\":{\"matinhxa\":\"32.408\",\"maxa\":408},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Vĩnh An (xã)",
- "truocsn": "Thị trấn Vĩnh Bình, Xã Tân Phú, Xã Vĩnh An",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.354\",\"properties\":{\"matinhxa\":\"32.354\",\"maxa\":354},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Vĩnh Bình (xã)",
- "truocsn": "Xã Vĩnh Bình Bắc, Xã Vĩnh Bình Nam, Xã Bình Minh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.410\",\"properties\":{\"matinhxa\":\"32.410\",\"maxa\":410},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Vĩnh Điều (xã)",
- "truocsn": "Xã Vĩnh Phú (huyện Giang Thành), Xã Vĩnh Điều",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.373\",\"properties\":{\"matinhxa\":\"32.373\",\"maxa\":373},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Vĩnh Gia (xã)",
- "truocsn": "Xã Vĩnh Phước, Xã Lương An Trà, Xã Vĩnh Gia",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.502\",\"properties\":{\"matinhxa\":\"32.502\",\"maxa\":502},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Vĩnh Hanh (xã)",
- "truocsn": "Xã Vĩnh Nhuận, Xã Vĩnh Hanh",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.352\",\"properties\":{\"matinhxa\":\"32.352\",\"maxa\":352},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Vĩnh Hậu (xã)",
- "truocsn": "Thị trấn Đa Phước, Xã Vĩnh Trường, Xã Vĩnh Hậu",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.407\",\"properties\":{\"matinhxa\":\"32.407\",\"maxa\":407},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vĩnh Hòa (xã)",
- "truocsn": "Xã Vĩnh Hòa (huyện U Minh Thượng), Xã Thạnh Yên A, Xã Hòa Chánh, Xã Thạnh Yên",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.409\",\"properties\":{\"matinhxa\":\"32.409\",\"maxa\":409},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vĩnh Hòa Hưng (xã)",
- "truocsn": "Xã Vĩnh Hòa Hưng Bắc, Xã Vĩnh Hòa Hưng Nam",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.396\",\"properties\":{\"matinhxa\":\"32.396\",\"maxa\":396},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Vĩnh Phong (xã)",
- "truocsn": "Thị trấn Vĩnh Thuận, Xã Phong Đông, Xã Vĩnh Phong",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.412\",\"properties\":{\"matinhxa\":\"32.412\",\"maxa\":412},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Vĩnh Tế (phường)",
- "truocsn": "Phường Núi Sam, Xã Vĩnh Tế, Xã Vĩnh Châu (phần còn lại sau khi sáp nhập vào phường Châu Đốc)",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.348\",\"properties\":{\"matinhxa\":\"32.348\",\"maxa\":348},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Vĩnh Thạnh Trung (xã)",
- "truocsn": "Thị trấn Vĩnh Thạnh Trung, Xã Mỹ Phú",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.492\",\"properties\":{\"matinhxa\":\"32.492\",\"maxa\":492},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Vĩnh Thông (phường)",
- "truocsn": "Phường Vĩnh Thông, Xã Phi Thông, Xã Mỹ Lâm",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.369\",\"properties\":{\"matinhxa\":\"32.369\",\"maxa\":369},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Vĩnh Thuận (xã)",
- "truocsn": "Xã Tân Thuận, Xã Vĩnh Thuận",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.411\",\"properties\":{\"matinhxa\":\"32.411\",\"maxa\":411},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Vĩnh Trạch (xã)",
- "truocsn": "Xã Vĩnh Khánh, Xã Vĩnh Trạch",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.365\",\"properties\":{\"matinhxa\":\"32.365\",\"maxa\":365},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Vĩnh Tuy (xã)",
- "truocsn": "Xã Vĩnh Thắng, Xã Vĩnh Phước A, Xã Vĩnh Tuy",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.398\",\"properties\":{\"matinhxa\":\"32.398\",\"maxa\":398},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Vĩnh Xương (xã)",
- "truocsn": "Xã Vĩnh Hòa (thị xã Tân Châu), Xã Phú Lộc, Xã Vĩnh Xương",
- "provinceName": "tỉnh An Giang",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.435\",\"properties\":{\"matinhxa\":\"32.435\",\"maxa\":435},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Bình (phường)",
- "truocsn": "Phường An Bình, Xã Mỹ Khánh, Phường Long Tuyền",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.281\",\"properties\":{\"matinhxa\":\"33.281\",\"maxa\":281},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Lạc Thôn (xã)",
- "truocsn": "Thị trấn An Lạc Thôn, Xã Xuân Hòa, Xã Trinh Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.155\",\"properties\":{\"matinhxa\":\"33.155\",\"maxa\":155},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "An Ninh (xã)",
- "truocsn": "Xã An Hiệp, Xã An Ninh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.323\",\"properties\":{\"matinhxa\":\"33.323\",\"maxa\":323},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "An Thạnh (xã)",
- "truocsn": "Thị trấn Cù Lao Dung, Xã An Thạnh 1, Xã An Thạnh Tây, Xã An Thạnh Đông",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.325\",\"properties\":{\"matinhxa\":\"33.325\",\"maxa\":325},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Bình Thủy (phường)",
- "truocsn": "Phường An Thới, Phường Bình Thủy, Phường Bùi Hữu Nghĩa (phần còn lại sau khi sáp nhập vào phường Cái Khế)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.282\",\"properties\":{\"matinhxa\":\"33.282\",\"maxa\":282},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cái Khế (phường)",
- "truocsn": "Phường An Hòa, Phường Cái Khế, Phường Bùi Hữu Nghĩa",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.271\",\"properties\":{\"matinhxa\":\"33.271\",\"maxa\":271},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Cái Răng (phường)",
- "truocsn": "Phường Lê Bình, Phường Thường Thạnh, Phường Ba Láng, Phường Hưng Thạnh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.285\",\"properties\":{\"matinhxa\":\"33.285\",\"maxa\":285},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Châu Thành (xã)",
- "truocsn": "Thị trấn Mái Dầm, Thị trấn Ngã Sáu, Xã Đông Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.302\",\"properties\":{\"matinhxa\":\"33.302\",\"maxa\":302},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Cờ Đỏ (xã)",
- "truocsn": "Thị trấn Cờ Đỏ, Xã Thới Đông, Xã Thới Xuân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.102\",\"properties\":{\"matinhxa\":\"33.102\",\"maxa\":102},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Cù Lao Dung (xã)",
- "truocsn": "Xã An Thạnh 2, Xã Đại Ân 1, Xã An Thạnh 3, Xã An Thạnh Nam",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.326\",\"properties\":{\"matinhxa\":\"33.326\",\"maxa\":326},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đại Hải (xã)",
- "truocsn": "Xã Ba Trinh, Xã Đại Hải",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.316\",\"properties\":{\"matinhxa\":\"33.316\",\"maxa\":316},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Đại Ngãi (xã)",
- "truocsn": "Thị trấn Đại Ngãi, Xã Long Đức",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.327\",\"properties\":{\"matinhxa\":\"33.327\",\"maxa\":327},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đại Thành (phường)",
- "truocsn": "Phường Hiệp Lợi, Xã Tân Thành, Xã Đại Thành",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.137\",\"properties\":{\"matinhxa\":\"33.137\",\"maxa\":137},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Đông Hiệp (xã)",
- "truocsn": "Xã Đông Thắng, Xã Xuân Thắng, Xã Đông Hiệp",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.104\",\"properties\":{\"matinhxa\":\"33.104\",\"maxa\":104},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Đông Phước (xã)",
- "truocsn": "Thị trấn Cái Tắc, Xã Đông Thạnh, Xã Đông Phước A",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.125\",\"properties\":{\"matinhxa\":\"33.125\",\"maxa\":125},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Đông Thuận (xã)",
- "truocsn": "Xã Đông Bình, Xã Đông Thuận",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.105\",\"properties\":{\"matinhxa\":\"33.105\",\"maxa\":105},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Gia Hòa (xã)",
- "truocsn": "Xã Thạnh Quới, Xã Gia Hòa 2",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.157\",\"properties\":{\"matinhxa\":\"33.157\",\"maxa\":157},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hiệp Hưng (xã)",
- "truocsn": "Thị trấn Cây Dương, Xã Hiệp Hưng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.304\",\"properties\":{\"matinhxa\":\"33.304\",\"maxa\":304},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hồ Đắc Kiện (xã)",
- "truocsn": "Xã Thiện Mỹ, Xã Hồ Đắc Kiện",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.317\",\"properties\":{\"matinhxa\":\"33.317\",\"maxa\":317},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hòa An (xã)",
- "truocsn": "Thị trấn Kinh Cùng, Xã Hòa An",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.139\",\"properties\":{\"matinhxa\":\"33.139\",\"maxa\":139},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hỏa Lựu (xã)",
- "truocsn": "Xã Tân Tiến, Xã Hỏa Tiến, Xã Hỏa Lựu",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.119\",\"properties\":{\"matinhxa\":\"33.119\",\"maxa\":119},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hòa Tú (xã)",
- "truocsn": "Xã Hòa Tú 1, Xã Hòa Tú 2",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.338\",\"properties\":{\"matinhxa\":\"33.338\",\"maxa\":338},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Hưng Phú (phường)",
- "truocsn": "Phường Tân Phú, Phường Phú Thứ, Phường Hưng Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.286\",\"properties\":{\"matinhxa\":\"33.286\",\"maxa\":286},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Kế Sách (xã)",
- "truocsn": "Thị trấn Kế Sách, Xã Kế An, Xã Kế Thành",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.154\",\"properties\":{\"matinhxa\":\"33.154\",\"maxa\":154},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Khánh Hòa (phường)",
- "truocsn": "Phường Khánh Hòa, Xã Vĩnh Hiệp, Xã Hòa Đông",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.167\",\"properties\":{\"matinhxa\":\"33.167\",\"maxa\":167},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Lai Hòa (xã)",
- "truocsn": "xã Lai Hòa (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.170\",\"properties\":{\"matinhxa\":\"33.170\",\"maxa\":170},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Lâm Tân (xã)",
- "truocsn": "Xã Tuân Tức, Xã Lâm Kiết, Xã Lâm Tân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.162\",\"properties\":{\"matinhxa\":\"33.162\",\"maxa\":162},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Lịch Hội Thượng (xã)",
- "truocsn": "Thị trấn Lịch Hội Thượng, Xã Lịch Hội Thượng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.333\",\"properties\":{\"matinhxa\":\"33.333\",\"maxa\":333},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Liêu Tú (xã)",
- "truocsn": "Xã Viên Bình, Xã Liêu Tú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.332\",\"properties\":{\"matinhxa\":\"33.332\",\"maxa\":332},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Long Bình (phường)",
- "truocsn": "Phường Bình Thạnh, Phường Vĩnh Tường, Xã Long Bình",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.310\",\"properties\":{\"matinhxa\":\"33.310\",\"maxa\":310},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Long Hưng (xã)",
- "truocsn": "Xã Hưng Phú, Xã Long Hưng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.319\",\"properties\":{\"matinhxa\":\"33.319\",\"maxa\":319},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Long Mỹ (phường)",
- "truocsn": "Phường Thuận An (thị xã Long Mỹ), Xã Long Trị, Xã Long Trị A",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.309\",\"properties\":{\"matinhxa\":\"33.309\",\"maxa\":309},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Long Phú (xã)",
- "truocsn": "Thị trấn Long Phú, Xã Long Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.330\",\"properties\":{\"matinhxa\":\"33.330\",\"maxa\":330},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Long Phú 1 (phường)",
- "truocsn": "Phường Trà Lồng, Xã Tân Phú, Xã Long Phú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.311\",\"properties\":{\"matinhxa\":\"33.311\",\"maxa\":311},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Long Tuyền (phường)",
- "truocsn": "Phường Long Hòa, Phường Long Tuyền (phần còn lại sau khi sáp nhập vào phường An Bình)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.284\",\"properties\":{\"matinhxa\":\"33.284\",\"maxa\":284},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Lương Tâm (xã)",
- "truocsn": "Xã Lương Nghĩa, Xã Lương Tâm",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.149\",\"properties\":{\"matinhxa\":\"33.149\",\"maxa\":149},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Mỹ Hương (xã)",
- "truocsn": "Xã Thuận Hưng, Xã Phú Mỹ, Xã Mỹ Hương",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.321\",\"properties\":{\"matinhxa\":\"33.321\",\"maxa\":321},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Mỹ Phước (xã)",
- "truocsn": "xã Mỹ Phước (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.324\",\"properties\":{\"matinhxa\":\"33.324\",\"maxa\":324},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Mỹ Quới (phường)",
- "truocsn": "Phường 3 (thị xã Ngã Năm), Xã Mỹ Bình, Xã Mỹ Quới",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.160\",\"properties\":{\"matinhxa\":\"33.160\",\"maxa\":160},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Mỹ Tú (xã)",
- "truocsn": "Thị trấn Huỳnh Hữu Nghĩa, Xã Mỹ Thuận, Xã Mỹ Tú",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.322\",\"properties\":{\"matinhxa\":\"33.322\",\"maxa\":322},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Mỹ Xuyên (phường)",
- "truocsn": "Phường 10, Thị trấn Mỹ Xuyên, Xã Đại Tâm",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.334\",\"properties\":{\"matinhxa\":\"33.334\",\"maxa\":334},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Ngã Bảy (phường)",
- "truocsn": "Phường Lái Hiếu, Phường Hiệp Thành, Phường Ngã Bảy",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.298\",\"properties\":{\"matinhxa\":\"33.298\",\"maxa\":298},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Ngã Năm (phường)",
- "truocsn": "Phường 1 (thị xã Ngã Năm), Phường 2 (thị xã Ngã Năm), Xã Vĩnh Quới",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.158\",\"properties\":{\"matinhxa\":\"33.158\",\"maxa\":158},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Ngọc Tố (xã)",
- "truocsn": "Xã Tham Đôn, Xã Ngọc Đông, Xã Ngọc Tố",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.339\",\"properties\":{\"matinhxa\":\"33.339\",\"maxa\":339},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Nhơn Ái (xã)",
- "truocsn": "Xã Nhơn Nghĩa, Xã Nhơn Ái",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.107\",\"properties\":{\"matinhxa\":\"33.107\",\"maxa\":107},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Nhơn Mỹ (xã)",
- "truocsn": "Xã An Mỹ, Xã Song Phụng, Xã Nhơn Mỹ",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.315\",\"properties\":{\"matinhxa\":\"33.315\",\"maxa\":315},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Nhu Gia (xã)",
- "truocsn": "Xã Thạnh Phú, Xã Gia Hòa 1",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.337\",\"properties\":{\"matinhxa\":\"33.337\",\"maxa\":337},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Ninh Kiều (phường)",
- "truocsn": "Phường Tân An, Phường Thới Bình, Phường Xuân Khánh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.272\",\"properties\":{\"matinhxa\":\"33.272\",\"maxa\":272},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Ô Môn (phường)",
- "truocsn": "Phường Châu Văn Liêm, Phường Thới Hòa, Phường Thới An, Xã Thới Thạnh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.81\",\"properties\":{\"matinhxa\":\"33.81\",\"maxa\":81},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Phong Điền (phường)",
- "truocsn": "Thị trấn Phong Điền, Xã Tân Thới, Xã Giai Xuân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.106\",\"properties\":{\"matinhxa\":\"33.106\",\"maxa\":106},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Phong Nẫm (xã)",
- "truocsn": "xã Phong Nẫm (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.313\",\"properties\":{\"matinhxa\":\"33.313\",\"maxa\":313},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Phú Hữu (xã)",
- "truocsn": "Xã Phú Tân, Xã Đông Phước, Xã Phú Hữu",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.303\",\"properties\":{\"matinhxa\":\"33.303\",\"maxa\":303},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Phú Lộc (xã)",
- "truocsn": "Thị trấn Hưng Lợi, Thị trấn Phú Lộc, Xã Thạnh Trị",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.161\",\"properties\":{\"matinhxa\":\"33.161\",\"maxa\":161},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Phú Lợi (phường)",
- "truocsn": "Phường 1 (thành phố Sóc Trăng), Phường 2 (thành phố Sóc Trăng), Phường 3 (thành phố Sóc Trăng), Phường 4",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.153\",\"properties\":{\"matinhxa\":\"33.153\",\"maxa\":153},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Phú Tâm (xã)",
- "truocsn": "Thị trấn Châu Thành, Xã Phú Tâm",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.318\",\"properties\":{\"matinhxa\":\"33.318\",\"maxa\":318},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Phụng Hiệp (xã)",
- "truocsn": "Xã Hòa Mỹ, Xã Phụng Hiệp",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.138\",\"properties\":{\"matinhxa\":\"33.138\",\"maxa\":138},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "Phước Thới (phường)",
- "truocsn": "Phường Trường Lạc, Phường Phước Thới",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.83\",\"properties\":{\"matinhxa\":\"33.83\",\"maxa\":83},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Phương Bình (xã)",
- "truocsn": "Xã Phương Phú, Xã Phương Bình",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.142\",\"properties\":{\"matinhxa\":\"33.142\",\"maxa\":142},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Sóc Trăng (phường)",
- "truocsn": "Phường 5, Phường 6, Phường 7, Phường 8",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.152\",\"properties\":{\"matinhxa\":\"33.152\",\"maxa\":152},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Tài Văn (xã)",
- "truocsn": "Xã Viên An, Xã Tài Văn",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.335\",\"properties\":{\"matinhxa\":\"33.335\",\"maxa\":335},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Tân An (phường)",
- "truocsn": "Phường An Khánh, Phường Hưng Lợi",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.280\",\"properties\":{\"matinhxa\":\"33.280\",\"maxa\":280},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Tân Bình (xã)",
- "truocsn": "Xã Bình Thành, Xã Tân Bình",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.126\",\"properties\":{\"matinhxa\":\"33.126\",\"maxa\":126},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Tân Hòa (xã)",
- "truocsn": "Thị trấn Một Ngàn, Thị trấn Bảy Ngàn, Xã Nhơn Nghĩa A, Xã Tân Hòa",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.299\",\"properties\":{\"matinhxa\":\"33.299\",\"maxa\":299},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Tân Lộc (xã)",
- "truocsn": "xã Tân Lộc (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.289\",\"properties\":{\"matinhxa\":\"33.289\",\"maxa\":289},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "65",
- "ten": "Tân Long (xã)",
- "truocsn": "Xã Thạnh Tân, Xã Long Bình, Xã Tân Long",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.159\",\"properties\":{\"matinhxa\":\"33.159\",\"maxa\":159},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "66",
- "ten": "Tân Phước Hưng (xã)",
- "truocsn": "Thị trấn Búng Tàu, Xã Tân Phước Hưng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.305\",\"properties\":{\"matinhxa\":\"33.305\",\"maxa\":305},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "67",
- "ten": "Tân Thạnh (xã)",
- "truocsn": "Xã Tân Hưng, Xã Châu Khánh, Xã Tân Thạnh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.329\",\"properties\":{\"matinhxa\":\"33.329\",\"maxa\":329},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "68",
- "ten": "Thạnh An (xã)",
- "truocsn": "Thị trấn Thạnh An, Xã Thạnh Lợi, Xã Thạnh Thắng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.292\",\"properties\":{\"matinhxa\":\"33.292\",\"maxa\":292},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "69",
- "ten": "Thạnh Hòa (xã)",
- "truocsn": "Xã Long Thạnh, Xã Tân Long, Xã Thạnh Hòa",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.136\",\"properties\":{\"matinhxa\":\"33.136\",\"maxa\":136},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "70",
- "ten": "Thạnh Phú (xã)",
- "truocsn": "xã Thạnh Phú (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.296\",\"properties\":{\"matinhxa\":\"33.296\",\"maxa\":296},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "71",
- "ten": "Thạnh Quới (xã)",
- "truocsn": "Xã Thạnh Tiến, Xã Thạnh An, Xã Thạnh Quới",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.295\",\"properties\":{\"matinhxa\":\"33.295\",\"maxa\":295},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "72",
- "ten": "Thạnh Thới An (xã)",
- "truocsn": "Xã Thạnh Thới Thuận, Xã Thạnh Thới An",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.336\",\"properties\":{\"matinhxa\":\"33.336\",\"maxa\":336},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "73",
- "ten": "Thạnh Xuân (xã)",
- "truocsn": "Thị trấn Rạch Gòi, Xã Tân Phú Thạnh, Xã Thạnh Xuân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.301\",\"properties\":{\"matinhxa\":\"33.301\",\"maxa\":301},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "74",
- "ten": "Thới An Đông (phường)",
- "truocsn": "Phường Trà An, Phường Trà Nóc, Phường Thới An Đông",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.283\",\"properties\":{\"matinhxa\":\"33.283\",\"maxa\":283},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "75",
- "ten": "Thới An Hội (xã)",
- "truocsn": "Xã An Lạc Tây, Xã Thới An Hội",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.314\",\"properties\":{\"matinhxa\":\"33.314\",\"maxa\":314},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "76",
- "ten": "Thới Hưng (xã)",
- "truocsn": "xã Thới Hưng (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.103\",\"properties\":{\"matinhxa\":\"33.103\",\"maxa\":103},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "77",
- "ten": "Thới Lai (xã)",
- "truocsn": "Thị trấn Thới Lai, Xã Thới Tân, Xã Trường Thắng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.100\",\"properties\":{\"matinhxa\":\"33.100\",\"maxa\":100},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "78",
- "ten": "Thới Long (phường)",
- "truocsn": "Phường Long Hưng, Phường Tân Hưng, Phường Thới Long",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.82\",\"properties\":{\"matinhxa\":\"33.82\",\"maxa\":82},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "79",
- "ten": "Thốt Nốt (phường)",
- "truocsn": "Phường Thuận An (quận Thốt Nốt), Phường Thới Thuận, Phường Thốt Nốt (phần còn lại sau khi sáp nhập vào phường Thuận Hưng)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.287\",\"properties\":{\"matinhxa\":\"33.287\",\"maxa\":287},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "80",
- "ten": "Thuận Hòa (xã)",
- "truocsn": "Xã Thuận Hòa (huyện Châu Thành), Xã Phú Tân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.320\",\"properties\":{\"matinhxa\":\"33.320\",\"maxa\":320},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "81",
- "ten": "Thuận Hưng (phường)",
- "truocsn": "Phường Trung Kiên, Phường Thuận Hưng, Phường Thốt Nốt",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.291\",\"properties\":{\"matinhxa\":\"33.291\",\"maxa\":291},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "82",
- "ten": "Trần Đề (xã)",
- "truocsn": "Thị trấn Trần Đề, Xã Đại Ân 2, Xã Trung Bình",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.331\",\"properties\":{\"matinhxa\":\"33.331\",\"maxa\":331},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "83",
- "ten": "Trung Hưng (xã)",
- "truocsn": "Xã Trung Thạnh, Xã Trung Hưng",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.297\",\"properties\":{\"matinhxa\":\"33.297\",\"maxa\":297},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "84",
- "ten": "Trung Nhứt (phường)",
- "truocsn": "Phường Thạnh Hòa, Phường Trung Nhứt, Xã Trung An",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.290\",\"properties\":{\"matinhxa\":\"33.290\",\"maxa\":290},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "85",
- "ten": "Trường Khánh (xã)",
- "truocsn": "Xã Hậu Thạnh, Xã Phú Hữu, Xã Trường Khánh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.328\",\"properties\":{\"matinhxa\":\"33.328\",\"maxa\":328},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "86",
- "ten": "Trường Long (xã)",
- "truocsn": "xã Trường Long (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.108\",\"properties\":{\"matinhxa\":\"33.108\",\"maxa\":108},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "87",
- "ten": "Trường Long Tây (xã)",
- "truocsn": "Xã Trường Long A, Xã Trường Long Tây",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.300\",\"properties\":{\"matinhxa\":\"33.300\",\"maxa\":300},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "88",
- "ten": "Trường Thành (xã)",
- "truocsn": "Xã Tân Thạnh, Xã Định Môn, Xã Trường Thành",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.110\",\"properties\":{\"matinhxa\":\"33.110\",\"maxa\":110},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "89",
- "ten": "Trường Xuân (xã)",
- "truocsn": "Xã Trường Xuân A, Xã Trường Xuân B, Xã Trường Xuân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.109\",\"properties\":{\"matinhxa\":\"33.109\",\"maxa\":109},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "90",
- "ten": "Vị Tân (phường)",
- "truocsn": "Phường IV, Phường V, Xã Vị Tân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.118\",\"properties\":{\"matinhxa\":\"33.118\",\"maxa\":118},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "91",
- "ten": "Vị Thanh (phường)",
- "truocsn": "Phường I, Phường III, Phường VII",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.111\",\"properties\":{\"matinhxa\":\"33.111\",\"maxa\":111},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "92",
- "ten": "Vị Thanh 1 (xã)",
- "truocsn": "Xã Vị Đông, Xã Vị Bình, Xã Vị Thanh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.308\",\"properties\":{\"matinhxa\":\"33.308\",\"maxa\":308},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "93",
- "ten": "Vị Thủy (xã)",
- "truocsn": "Thị trấn Nàng Mau, Xã Vị Thắng, Xã Vị Trung",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.306\",\"properties\":{\"matinhxa\":\"33.306\",\"maxa\":306},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "94",
- "ten": "Vĩnh Châu (phường)",
- "truocsn": "Phường 1 (thị xã Vĩnh Châu), Phường 2 (thị xã Vĩnh Châu), Xã Lạc Hòa",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.164\",\"properties\":{\"matinhxa\":\"33.164\",\"maxa\":164},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "95",
- "ten": "Vĩnh Hải (xã)",
- "truocsn": "xã Vĩnh Hải (Giữ nguyên, Không sáp nhập)",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.168\",\"properties\":{\"matinhxa\":\"33.168\",\"maxa\":168},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "96",
- "ten": "Vĩnh Lợi (xã)",
- "truocsn": "Xã Châu Hưng, Xã Vĩnh Thành, Xã Vĩnh Lợi",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.163\",\"properties\":{\"matinhxa\":\"33.163\",\"maxa\":163},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "97",
- "ten": "Vĩnh Phước (phường)",
- "truocsn": "Phường Vĩnh Phước, Xã Vĩnh Tân",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.169\",\"properties\":{\"matinhxa\":\"33.169\",\"maxa\":169},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "98",
- "ten": "Vĩnh Thạnh (xã)",
- "truocsn": "Thị trấn Vĩnh Thạnh, Xã Thạnh Lộc, Xã Thạnh Mỹ",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.293\",\"properties\":{\"matinhxa\":\"33.293\",\"maxa\":293},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "99",
- "ten": "Vĩnh Thuận Đông (xã)",
- "truocsn": "Xã Vĩnh Thuận Tây, Xã Vị Thủy, Xã Vĩnh Thuận Đông",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.312\",\"properties\":{\"matinhxa\":\"33.312\",\"maxa\":312},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "100",
- "ten": "Vĩnh Trinh (xã)",
- "truocsn": "Xã Vĩnh Bình, Xã Vĩnh Trinh",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.294\",\"properties\":{\"matinhxa\":\"33.294\",\"maxa\":294},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "101",
- "ten": "Vĩnh Tường (xã)",
- "truocsn": "Xã Vĩnh Trung, Xã Vĩnh Tường",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.307\",\"properties\":{\"matinhxa\":\"33.307\",\"maxa\":307},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "102",
- "ten": "Vĩnh Viễn (xã)",
- "truocsn": "Thị trấn Vĩnh Viễn, Xã Vĩnh Viễn A",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.151\",\"properties\":{\"matinhxa\":\"33.151\",\"maxa\":151},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "103",
- "ten": "Xà Phiên (xã)",
- "truocsn": "Xã Thuận Hòa (huyện Long Mỹ), Xã Thuận Hưng, Xã Xà Phiên",
- "provinceName": "thành phố Cần Thơ",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.150\",\"properties\":{\"matinhxa\":\"33.150\",\"maxa\":150},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "1",
- "ten": "An Trạch (xã)",
- "truocsn": "Xã An Trạch A, Xã An Trạch",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.245\",\"properties\":{\"matinhxa\":\"34.245\",\"maxa\":245},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "2",
- "ten": "An Xuyên (phường)",
- "truocsn": "Phường 1 (thành phố Cà Mau), Phường 2 (thành phố Cà Mau), Phường 9, Phường Tân Xuyên, Xã An Xuyên",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.247\",\"properties\":{\"matinhxa\":\"34.247\",\"maxa\":247},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "3",
- "ten": "Bạc Liêu (phường)",
- "truocsn": "Phường 1 (thành phố Bạc Liêu), Phường 2 (thành phố Bạc Liêu), Phường 7 (thành phố Bạc Liêu), Phường 8 (thành phố Bạc Liêu), Phường 3",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.218\",\"properties\":{\"matinhxa\":\"34.218\",\"maxa\":218},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "4",
- "ten": "Biển Bạch (xã)",
- "truocsn": "Xã Tân Bằng, Xã Biển Bạch Đông, Xã Biển Bạch",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.255\",\"properties\":{\"matinhxa\":\"34.255\",\"maxa\":255},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "5",
- "ten": "Cái Đôi Vàm (xã)",
- "truocsn": "Thị trấn Cái Đôi Vàm, Xã Nguyễn Việt Khái",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.59\",\"properties\":{\"matinhxa\":\"34.59\",\"maxa\":59},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "6",
- "ten": "Cái Nước (xã)",
- "truocsn": "Thị trấn Cái Nước, Xã Trần Thới, Xã Đông Hưng (phần còn lại), Xã Đông Thới (phần còn lại), Xã Tân Hưng Đông (phần còn lại)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.265\",\"properties\":{\"matinhxa\":\"34.265\",\"maxa\":265},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "7",
- "ten": "Châu Thới (xã)",
- "truocsn": "Xã Vĩnh Hưng, Xã Vĩnh Hưng A, Xã Châu Thới",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.235\",\"properties\":{\"matinhxa\":\"34.235\",\"maxa\":235},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "8",
- "ten": "Đá Bạc (xã)",
- "truocsn": "Xã Khánh Bình Tây (bao gồm Hòn Đá Bạc), Xã Khánh Bình Tây Bắc, Xã Trần Hợi (một phần)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.262\",\"properties\":{\"matinhxa\":\"34.262\",\"maxa\":262},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "9",
- "ten": "Đầm Dơi (xã)",
- "truocsn": "Thị trấn Đầm Dơi, Xã Tân Duyệt, Xã Tân Dân, Xã Tạ An Khương (phần còn lại sau khi sáp nhập vào xã Tạ An Khương mới)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.39\",\"properties\":{\"matinhxa\":\"34.39\",\"maxa\":39},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "10",
- "ten": "Đất Mới (xã)",
- "truocsn": "Xã Lâm Hải, Xã Đất Mới, Thị trấn Năm Căn, Xã Hàm Rồng, Xã Viên An (phần còn lại sau khi sáp nhập vào xã Đất Mũi)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.57\",\"properties\":{\"matinhxa\":\"34.57\",\"maxa\":57},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "11",
- "ten": "Đất Mũi (xã)",
- "truocsn": "Xã Đất Mũi, Xã Viên An, Xã Tân Ân (phần còn lại sau khi sáp nhập vào xã Phan Ngọc Hiển)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.69\",\"properties\":{\"matinhxa\":\"34.69\",\"maxa\":69},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "12",
- "ten": "Định Thành (xã)",
- "truocsn": "Xã An Phúc, Xã Định Thành A, Xã Định Thành",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.246\",\"properties\":{\"matinhxa\":\"34.246\",\"maxa\":246},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "13",
- "ten": "Đông Hải (xã)",
- "truocsn": "Xã Long Điền Đông, Xã Long Điền Đông A",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.242\",\"properties\":{\"matinhxa\":\"34.242\",\"maxa\":242},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "14",
- "ten": "Gành Hào (xã)",
- "truocsn": "Thị trấn Gành Hào, Xã Long Điền Tây",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.241\",\"properties\":{\"matinhxa\":\"34.241\",\"maxa\":241},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "15",
- "ten": "Giá Rai (phường)",
- "truocsn": "Phường 1 (thị xã Giá Rai), Phường Hộ Phòng, Xã Phong Thạnh, Xã Phong Thạnh A",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.238\",\"properties\":{\"matinhxa\":\"34.238\",\"maxa\":238},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "16",
- "ten": "Hiệp Thành (phường)",
- "truocsn": "Phường Nhà Mát, Xã Vĩnh Trạch Đông, Xã Hiệp Thành",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.220\",\"properties\":{\"matinhxa\":\"34.220\",\"maxa\":220},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "17",
- "ten": "Hồ Thị Kỷ (xã)",
- "truocsn": "xã Hồ Thị Kỷ (Giữ nguyên, Không sáp nhập)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.259\",\"properties\":{\"matinhxa\":\"34.259\",\"maxa\":259},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "18",
- "ten": "Hoà Bình (xã)",
- "truocsn": "Thị trấn Hòa Bình, Xã Vĩnh Mỹ A, Xã Long Thạnh",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.232\",\"properties\":{\"matinhxa\":\"34.232\",\"maxa\":232},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "19",
- "ten": "Hoà Thành (phường)",
- "truocsn": "Xã Hòa Tân, Xã Hòa Thành, Phường 7 (thành phố Cà Mau) (phần còn lại sau khi sáp nhập vào phường Tân Thành), Phường 6 (phần còn lại sau khi sáp nhập vào phường Tân Thành), Xã Định Bình (phần còn lại sau khi sáp nhập vào phường Tân Thành), Xã Tắc Vân (phần còn lại sau khi sáp nhập vào phường Tân Thành)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.250\",\"properties\":{\"matinhxa\":\"34.250\",\"maxa\":250},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "20",
- "ten": "Hồng Dân (xã)",
- "truocsn": "Thị trấn Ngan Dừa, Xã Lộc Ninh, Xã Ninh Hòa",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.225\",\"properties\":{\"matinhxa\":\"34.225\",\"maxa\":225},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "21",
- "ten": "Hưng Hội (xã)",
- "truocsn": "Xã Hưng Thành, Xã Hưng Hội",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.234\",\"properties\":{\"matinhxa\":\"34.234\",\"maxa\":234},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "22",
- "ten": "Hưng Mỹ (xã)",
- "truocsn": "Xã Hưng Mỹ, Xã Tân Hưng Đông, Xã Hòa Mỹ (phần còn lại sau khi sáp nhập vào xã Phú Mỹ, xã Tân Hưng)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.270\",\"properties\":{\"matinhxa\":\"34.270\",\"maxa\":270},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "23",
- "ten": "Khánh An (xã)",
- "truocsn": "Xã Khánh An, Xã Nguyễn Phích (phần còn lại sau khi sáp nhập vào xã Nguyễn Phích, xã Khánh Lâm)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.253\",\"properties\":{\"matinhxa\":\"34.253\",\"maxa\":253},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "24",
- "ten": "Khánh Bình (xã)",
- "truocsn": "Xã Khánh Bình Đông, Xã Khánh Bình",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.263\",\"properties\":{\"matinhxa\":\"34.263\",\"maxa\":263},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "25",
- "ten": "Khánh Hưng (xã)",
- "truocsn": "Xã Khánh Hải, Xã Khánh Hưng",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.264\",\"properties\":{\"matinhxa\":\"34.264\",\"maxa\":264},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "26",
- "ten": "Khánh Lâm (xã)",
- "truocsn": "Xã Khánh Hội, Xã Nguyễn Phích, Xã Khánh Lâm (phần còn lại sau khi sáp nhập vào xã U Minh)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.252\",\"properties\":{\"matinhxa\":\"34.252\",\"maxa\":252},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "27",
- "ten": "Láng Tròn (phường)",
- "truocsn": "Phường Láng Tròn, Xã Phong Tân, Xã Phong Thạnh Đông",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.239\",\"properties\":{\"matinhxa\":\"34.239\",\"maxa\":239},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "28",
- "ten": "Long Điền (xã)",
- "truocsn": "Xã Điền Hải, Xã Long Điền",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.243\",\"properties\":{\"matinhxa\":\"34.243\",\"maxa\":243},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "29",
- "ten": "Lương Thế Trân (xã)",
- "truocsn": "Xã Thạnh Phú, Xã Phú Hưng, Xã Lương Thế Trân, Xã Lợi An",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.266\",\"properties\":{\"matinhxa\":\"34.266\",\"maxa\":266},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "30",
- "ten": "Lý Văn Lâm (phường)",
- "truocsn": "Phường 8 (thành phố Cà Mau), Xã Lý Văn Lâm, Xã Lợi An (phần còn lại sau khi sáp nhập vào xã Trần Văn Thời, xã Lương Thế Trân)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.249\",\"properties\":{\"matinhxa\":\"34.249\",\"maxa\":249},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "31",
- "ten": "Năm Căn (xã)",
- "truocsn": "Xã Hàng Vịnh, Thị trấn Năm Căn (phần còn lại), Xã Hàm Rồng (phần còn lại)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.56\",\"properties\":{\"matinhxa\":\"34.56\",\"maxa\":56},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "32",
- "ten": "Nguyễn Phích (xã)",
- "truocsn": "Thị trấn U Minh, Xã Nguyễn Phích, Xã Khánh Thuận (phần còn lại sau khi sáp nhập vào xã U Minh)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.78\",\"properties\":{\"matinhxa\":\"34.78\",\"maxa\":78},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "33",
- "ten": "Nguyễn Việt Khái (xã)",
- "truocsn": "Xã Tân Hưng Tây, Xã Rạch Chèo, Xã Việt Thắng",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.64\",\"properties\":{\"matinhxa\":\"34.64\",\"maxa\":64},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "34",
- "ten": "Ninh Quới (xã)",
- "truocsn": "Xã Ninh Quới A, Xã Ninh Quới",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.221\",\"properties\":{\"matinhxa\":\"34.221\",\"maxa\":221},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "35",
- "ten": "Ninh Thạnh Lợi (xã)",
- "truocsn": "Xã Ninh Thạnh Lợi A, Xã Ninh Thạnh Lợi",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.227\",\"properties\":{\"matinhxa\":\"34.227\",\"maxa\":227},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "36",
- "ten": "Phan Ngọc Hiển (xã)",
- "truocsn": "Thị trấn Rạch Gốc, Xã Viên An Đông, Xã Tân Ân",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.68\",\"properties\":{\"matinhxa\":\"34.68\",\"maxa\":68},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "37",
- "ten": "Phong Hiệp (xã)",
- "truocsn": "Xã Phong Thạnh Tây A, Xã Phong Thạnh Tây B",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.231\",\"properties\":{\"matinhxa\":\"34.231\",\"maxa\":231},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "38",
- "ten": "Phong Thạnh (xã)",
- "truocsn": "Xã Tân Thạnh, Xã Phong Thạnh Tây, Xã Tân Phong",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.240\",\"properties\":{\"matinhxa\":\"34.240\",\"maxa\":240},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "39",
- "ten": "Phú Mỹ (xã)",
- "truocsn": "Xã Phú Thuận, Xã Phú Mỹ, Xã Hòa Mỹ",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.60\",\"properties\":{\"matinhxa\":\"34.60\",\"maxa\":60},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "40",
- "ten": "Phú Tân (xã)",
- "truocsn": "Xã Tân Hải, Xã Phú Tân",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.63\",\"properties\":{\"matinhxa\":\"34.63\",\"maxa\":63},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "41",
- "ten": "Phước Long (xã)",
- "truocsn": "Thị trấn Phước Long, Xã Vĩnh Phú Đông",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.228\",\"properties\":{\"matinhxa\":\"34.228\",\"maxa\":228},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "42",
- "ten": "Quách Phẩm (xã)",
- "truocsn": "Xã Quách Phẩm Bắc, Xã Quách Phẩm",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.54\",\"properties\":{\"matinhxa\":\"34.54\",\"maxa\":54},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "43",
- "ten": "Sông Đốc (xã)",
- "truocsn": "Thị trấn Sông Đốc (bao gồm cụm đảo Hòn Chuối), Xã Phong Điền",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.261\",\"properties\":{\"matinhxa\":\"34.261\",\"maxa\":261},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "44",
- "ten": "Tạ An Khương (xã)",
- "truocsn": "Xã Tạ An Khương Đông, Xã Tạ An Khương Nam, Xã Tạ An Khương",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.40\",\"properties\":{\"matinhxa\":\"34.40\",\"maxa\":40},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "45",
- "ten": "Tam Giang (xã)",
- "truocsn": "Xã Hiệp Tùng, Xã Tam Giang Đông, Xã Tam Giang",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.58\",\"properties\":{\"matinhxa\":\"34.58\",\"maxa\":58},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "46",
- "ten": "Tân Ân (xã)",
- "truocsn": "Xã Tam Giang Tây, Xã Tân Ân Tây",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.67\",\"properties\":{\"matinhxa\":\"34.67\",\"maxa\":67},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "47",
- "ten": "Tân Hưng (xã)",
- "truocsn": "Xã Tân Hưng, Xã Đông Hưng, Xã Đông Thới, Xã Hòa Mỹ",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.269\",\"properties\":{\"matinhxa\":\"34.269\",\"maxa\":269},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "48",
- "ten": "Tân Lộc (xã)",
- "truocsn": "Xã Tân Lộc Bắc, Xã Tân Lộc Đông, Xã Tân Lộc",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.258\",\"properties\":{\"matinhxa\":\"34.258\",\"maxa\":258},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "49",
- "ten": "Tân Thành (phường)",
- "truocsn": "Phường 5 (thành phố Cà Mau), Phường Tân Thành, Xã Tân Thành, Phường 7 (thành phố Cà Mau), Phường 6, Xã Định Bình, Xã Tắc Vân",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.248\",\"properties\":{\"matinhxa\":\"34.248\",\"maxa\":248},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "50",
- "ten": "Tân Thuận (xã)",
- "truocsn": "Xã Tân Đức, Xã Tân Thuận",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.52\",\"properties\":{\"matinhxa\":\"34.52\",\"maxa\":52},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "51",
- "ten": "Tân Tiến (xã)",
- "truocsn": "Xã Nguyễn Huân, Xã Tân Tiến",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.53\",\"properties\":{\"matinhxa\":\"34.53\",\"maxa\":53},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "52",
- "ten": "Thanh Tùng (xã)",
- "truocsn": "Xã Ngọc Chánh, Xã Thanh Tùng",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.55\",\"properties\":{\"matinhxa\":\"34.55\",\"maxa\":55},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "53",
- "ten": "Thới Bình (xã)",
- "truocsn": "Thị trấn Thới Bình, Xã Thới Bình",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.257\",\"properties\":{\"matinhxa\":\"34.257\",\"maxa\":257},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "54",
- "ten": "Trần Phán (xã)",
- "truocsn": "Xã Tân Trung, Xã Trần Phán",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.51\",\"properties\":{\"matinhxa\":\"34.51\",\"maxa\":51},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "55",
- "ten": "Trần Văn Thời (xã)",
- "truocsn": "Thị trấn Trần Văn Thời, Xã Khánh Lộc, Xã Phong Lạc, Xã Lợi An, Xã Trần Hợi (phần còn lại sau khi sáp nhập vào xã Đá Bạc), Xã Phong Điền (phần còn lại sau khi sáp nhập vào xã Sông Đốc)",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.260\",\"properties\":{\"matinhxa\":\"34.260\",\"maxa\":260},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "56",
- "ten": "Trí Phải (xã)",
- "truocsn": "Xã Trí Lực, Xã Tân Phú, Xã Trí Phải",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.256\",\"properties\":{\"matinhxa\":\"34.256\",\"maxa\":256},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "57",
- "ten": "U Minh (xã)",
- "truocsn": "Xã Khánh Tiến, Xã Khánh Hòa, Xã Khánh Thuận, Xã Khánh Lâm",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.251\",\"properties\":{\"matinhxa\":\"34.251\",\"maxa\":251},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "58",
- "ten": "Vĩnh Hậu (xã)",
- "truocsn": "Xã Vĩnh Thịnh, Xã Vĩnh Hậu A, Xã Vĩnh Hậu",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.237\",\"properties\":{\"matinhxa\":\"34.237\",\"maxa\":237},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "59",
- "ten": "Vĩnh Lộc (xã)",
- "truocsn": "Xã Vĩnh Lộc A, Xã Vĩnh Lộc",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.226\",\"properties\":{\"matinhxa\":\"34.226\",\"maxa\":226},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "60",
- "ten": "Vĩnh Lợi (xã)",
- "truocsn": "Thị trấn Châu Hưng, Xã Châu Hưng A",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.233\",\"properties\":{\"matinhxa\":\"34.233\",\"maxa\":233},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "61",
- "ten": "Vĩnh Mỹ (xã)",
- "truocsn": "Xã Minh Diệu, Xã Vĩnh Bình, Xã Vĩnh Mỹ B",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.236\",\"properties\":{\"matinhxa\":\"34.236\",\"maxa\":236},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "62",
- "ten": "Vĩnh Phước (xã)",
- "truocsn": "Xã Phước Long, Xã Vĩnh Phú Tây",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.229\",\"properties\":{\"matinhxa\":\"34.229\",\"maxa\":229},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "63",
- "ten": "Vĩnh Thanh (xã)",
- "truocsn": "Xã Hưng Phú, Xã Vĩnh Thanh",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.230\",\"properties\":{\"matinhxa\":\"34.230\",\"maxa\":230},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- },
- {
- "stt": "64",
- "ten": "Vĩnh Trạch (phường)",
- "truocsn": "Phường 5 (thành phố Bạc Liêu), Xã Vĩnh Trạch",
- "provinceName": "tỉnh Cà Mau",
- "gisServerResponse": "{\"features\":[{\"geometry\":null,\"id\":\"xa3321.219\",\"properties\":{\"matinhxa\":\"34.219\",\"maxa\":219},\"type\":\"Feature\"}],\"type\":\"FeatureCollection\"}"
- }
-]
\ No newline at end of file
diff --git a/dataset-generation-scripts/resources/gis/sapnhap_bando_tables.sql b/dataset-generation-scripts/resources/gis/sapnhap_bando_tables.sql
deleted file mode 100644
index 5448a1fd..00000000
--- a/dataset-generation-scripts/resources/gis/sapnhap_bando_tables.sql
+++ /dev/null
@@ -1,74 +0,0 @@
-DROP TABLE IF EXISTS sapnhap_wards_gis;
-
-DROP TABLE IF EXISTS sapnhap_provinces_gis;
-
-DROP TABLE IF EXISTS sapnhap_wards;
-
-DROP TABLE IF EXISTS sapnhap_provinces;
-
--- Enable Postgis Extension
-CREATE EXTENSION IF NOT EXISTS postgis;
-
-CREATE TABLE sapnhap_provinces (
- id INTEGER PRIMARY KEY,
- mahc INTEGER UNIQUE,
- tentinh VARCHAR(100) NOT NULL,
- dientichkm2 VARCHAR(50),
- dansonguoi VARCHAR(50),
- trungtamhc VARCHAR(50),
- kinhdo DOUBLE PRECISION,
- vido DOUBLE PRECISION,
- truocsapnhap VARCHAR(255),
- con VARCHAR(50),
- vn_province_code VARCHAR(50) NOT NULL REFERENCES provinces_tmp(code)
-);
-
-CREATE TABLE sapnhap_wards (
- id INTEGER PRIMARY KEY,
- matinh INTEGER,
- ma VARCHAR(50),
- tentinh VARCHAR(255),
- loai VARCHAR(50),
- tenhc VARCHAR(255),
- cay VARCHAR(50),
- dientichkm2 DOUBLE PRECISION,
- dansonguoi VARCHAR(50),
- trungtamhc TEXT,
- kinhdo DOUBLE PRECISION,
- vido DOUBLE PRECISION,
- truocsapnhap TEXT,
- maxa INTEGER UNIQUE,
- khoa VARCHAR(255),
- vn_ward_code VARCHAR(50) NOT NULL,
- -- Foreign keys
- CONSTRAINT fk_matinh FOREIGN KEY (matinh) REFERENCES sapnhap_provinces(mahc),
- CONSTRAINT fk_ward_code FOREIGN KEY (vn_ward_code) REFERENCES wards_tmp(code)
-);
-
-CREATE TABLE sapnhap_provinces_gis (
- stt INTEGER,
- ten VARCHAR(255),
- truocsn TEXT,
- gis_server_id VARCHAR(20),
- sapnhap_province_matinh INTEGER,
- bbox_wkt TEXT,
- bbox geometry(Polygon, 4326) GENERATED ALWAYS AS (ST_GeomFromText(bbox_wkt, 4326)) STORED,
- geom_wkt TEXT,
- geom geometry(Multipolygon, 4326) GENERATED ALWAYS AS (ST_GeomFromText(geom_wkt, 4326)) STORED,
- -- Foreign keys
- CONSTRAINT fk_sapnhap_province_matinh FOREIGN KEY (sapnhap_province_matinh) REFERENCES sapnhap_provinces(mahc)
-);
-
-CREATE TABLE sapnhap_wards_gis (
- stt INTEGER,
- ten VARCHAR(255),
- truocsn TEXT,
- gis_server_id VARCHAR(20),
- sapnhap_ward_maxa INTEGER,
- bbox_wkt TEXT,
- bbox geometry(Polygon, 4326) GENERATED ALWAYS AS (ST_GeomFromText(bbox_wkt, 4326)) STORED,
- geom_wkt TEXT,
- geom geometry(Multipolygon, 4326) GENERATED ALWAYS AS (ST_GeomFromText(geom_wkt, 4326)) STORED,
- -- Foreign keys
- CONSTRAINT fk_sapnhap_ward_maxa FOREIGN KEY (sapnhap_ward_maxa) REFERENCES sapnhap_wards(maxa)
-);
diff --git a/development/gis-data-comparison-tool.md b/development/gis-data-comparison-tool.md
deleted file mode 100644
index 95468952..00000000
--- a/development/gis-data-comparison-tool.md
+++ /dev/null
@@ -1,443 +0,0 @@
-# GIS Data Comparison Tool - Feature Report
-
-## Overview
-
-**Feature Name:** GIS Data Validation and Comparison Tool
-**Implementation Date:** March 28, 2026
-**Status:** ✅ Complete and Operational
-**Related Issue:** N/A (Data validation initiative)
-
-## Objectives
-
-After migrating from the deprecated SAPNhap API to local JSON/GeoJSON files (March 2026), this tool was developed to validate that the GIS coordinate data in `sapnhap_provinces_gis` and `sapnhap_wards_gis` tables remains identical to the previous SQL dump from September 2025.
-
-### Primary Goals
-
-1. **Data Integrity Validation**: Ensure no coordinate data was lost or corrupted during the API-to-file migration
-2. **Automated Comparison**: Provide a fast, reliable way to compare current database state with historical dumps
-3. **Whitespace-Agnostic Comparison**: Focus on actual coordinate differences, ignoring formatting variations
-4. **Detailed Reporting**: Generate clear, actionable reports showing any discrepancies
-
-### Success Criteria
-
-- ✅ All 34 provinces match between current DB and 20250911 dump
-- ✅ All 3321 wards match between current DB and 20250911 dump (333 in dump, 2888 new records)
-- ✅ Zero coordinate data mismatches
-- ✅ Tool executes in under 60 seconds
-- ✅ Clean, user-friendly CLI output
-
-## Affected Components
-
-### New Files Created
-
-```
-dataset-generation-scripts/
-├── internal/
-│ └── gis_comparator/
-│ ├── model/
-│ │ └── gis_comparison.go # Comparison result models (75 lines)
-│ ├── service/
-│ │ ├── gis_comparator.go # Main comparison logic (370 lines)
-│ │ └── reporter.go # Logging and reporting (115 lines)
-│ ├── sql/
-│ │ └── setup_temp_tables.sql # Temp table schema (40 lines)
-│ └── gis_comparator_test.go # Test suite (not yet implemented)
-└── cmd/
- └── compare-gis/
- └── main.go # CLI tool (90 lines)
-```
-
-### Existing Files Used
-
-- `internal/database/postgres_connector.go` - Database connection
-- `internal/sapnhap_bando/model/sapnhap.go` - Data models reference
-
-### Files Referenced (Read-Only)
-
-- `resources/gis/exported/sapnhap_provinces_gis_202509011857_lfs.sql` - Provinces dump (4 records)
-- `resources/gis/exported/sapnhap_wards_gis_202509011858_lfs.sql` - Wards dump (333 records)
-
-## Implementation Approach
-
-### Architecture Decision: SQL-Based Comparison
-
-**Chosen Approach:** Load SQL dump files into temporary PostgreSQL tables, then use SQL queries for comparison.
-
-**Alternatives Considered:**
-1. ❌ **Go-based SQL parsing** - Rejected due to complexity of handling large WKT strings
-2. ❌ **JSON export comparison** - Rejected as it would require export logic
-3. ✅ **SQL temp tables** - Selected for simplicity and performance
-
-**Rationale:**
-- Leverages PostgreSQL's query engine for efficient comparison
-- No complex Go parsing required
-- Temporary tables are automatically cleaned up
-- Transaction-based approach ensures data consistency
-
-### Technical Implementation
-
-#### 1. Database Transaction Pattern
-
-All operations run within a single transaction to ensure temporary tables persist:
-
-```go
-tx, err := db.Begin()
-defer tx.Rollback()
-
-// Setup temp tables
-comparatorService.SetupTempTablesWithTx(tx, dumpPaths)
-
-// Run comparisons
-provincesSummary, _ := comparatorService.CompareProvincesGISWithTx(tx)
-wardsSummary, _ := comparatorService.CompareWardsGISWithTx(tx)
-
-// Commit (automatic cleanup)
-tx.Commit()
-```
-
-**Why this matters:** PostgreSQL temporary tables are session-scoped. Without a transaction, temp tables created in one connection wouldn't be visible in subsequent queries.
-
-#### 2. Whitespace Normalization
-
-**Problem:** SQL dumps store WKT without spaces: `105.889298 19.336741,105.889069 19.336700`
-**Database stores with spaces:** `105.889298 19.336741, 105.889069 19.336700`
-
-**Solution:** Use PostgreSQL's `replace()` function to normalize before comparison:
-
-```sql
--- Instead of:
-WHERE c.bbox_wkt <> d.bbox_wkt
-
--- Use:
-WHERE replace(c.bbox_wkt, ' ', '') <> replace(d.bbox_wkt, ' ', '')
-```
-
-**Result:** Only genuine coordinate differences are flagged, not formatting variations.
-
-#### 3. Data Loading Strategy
-
-**Challenge:** SQL dump files contain `INSERT INTO public.sapnhap_provinces_gis` but we need temp tables.
-
-**Solution:** String replacement during file load:
-
-```go
-content, _ := os.ReadFile(dumpPath)
-modifiedSQL := strings.ReplaceAll(
- string(content),
- "INSERT INTO public.sapnhap_provinces_gis",
- "INSERT INTO temp_sapnhap_provinces_gis_dump"
-)
-tx.Exec(modifiedSQL)
-```
-
-**Optimization:** Read entire file at once (not line-by-line) to handle very long WKT strings that exceed bufio.Scanner's buffer.
-
-#### 4. Comparison Query Structure
-
-Three-phase comparison per table:
-
-**Phase 1: Find missing in current DB**
-```sql
-SELECT gis_server_id
-FROM temp_sapnhap_provinces_gis_dump
-WHERE gis_server_id NOT IN (SELECT gis_server_id FROM sapnhap_provinces_gis)
-```
-
-**Phase 2: Find missing in dump**
-```sql
-SELECT gis_server_id
-FROM sapnhap_provinces_gis
-WHERE gis_server_id NOT IN (SELECT gis_server_id FROM temp_sapnhap_provinces_gis_dump)
-```
-
-**Phase 3: Find coordinate mismatches**
-```sql
-WITH current AS (...),
- dump AS (...)
-SELECT c.gis_server_id, ten,
- CASE
- WHEN bbox_diff AND geom_diff THEN 'both'
- WHEN bbox_diff THEN 'bbox_wkt'
- WHEN geom_diff THEN 'geom_wkt'
- END as comparison_field
-FROM current c
-INNER JOIN dump d ON c.gis_server_id = d.gis_server_id
-WHERE bbox_diff OR geom_diff
-```
-
-## Step-by-Step Logic
-
-### CLI Execution Flow
-
-1. **Parse command-line flags**
- - `--compare`: provinces, wards, or both (default: both)
- - `--provinces-dump`: path to provinces dump file
- - `--wards-dump`: path to wards dump file
-
-2. **Establish database connection**
- - Use existing `GetPostgresDBConnection()` from `database` package
- - Returns `*bun.DB` with connection pooling
-
-3. **Begin transaction**
- - Create transaction context for all operations
- - Ensures temp tables persist across queries
-
-4. **Setup temporary tables**
- - Execute `setup_temp_tables.sql` to create temp table schemas
- - Load and modify dump files (replace table names)
- - Execute INSERT statements to populate temp tables
-
-5. **Execute comparisons**
- - For provinces: call `CompareProvincesGISWithTx(tx)`
- - For wards: call `CompareWardsGISWithTx(tx)`
- - Each returns `*model.ComparisonSummary`
-
-6. **Generate reports**
- - Log detailed results for each table
- - Print formatted summary with statistics
-
-7. **Commit transaction**
- - Temp tables automatically dropped
- - Connection returned to pool
-
-### Comparison Service Logic
-
-**Per table (provinces or wards):**
-
-```
-1. Query record counts:
- - current_count = COUNT(*) FROM sapnhap_X_gis
- - dump_count = COUNT(*) FROM temp_sapnhap_X_gis_dump
- - total_records = MAX(current_count, dump_count)
-
-2. Find missing records:
- - missing_in_db = [IDs in dump but not in current]
- - missing_in_dump = [IDs in current but not in dump]
-
-3. Find mismatches:
- - Execute CTE query joining current and dump
- - Filter by: normalized_bbox != normalized_bbox
- OR normalized_geom != normalized_geom
- - Return: gis_server_id, ten, field_name, expected, actual
-
-4. Calculate statistics:
- - matched_records = total - mismatches - missing_in_db - missing_in_dump
- - Build WKTComparisonResult array for each mismatch
-
-5. Return summary:
- - Total records, matched, mismatched counts
- - Lists of missing IDs
- - Detailed differences
-```
-
-## Edge Cases and Handling
-
-### 1. Different Record Counts
-
-**Scenario:** Current DB has 3321 wards, dump has 333 wards
-**Expected:** 2888 records reported as "Missing in Dump"
-**Handling:** ✅ Correctly identified and logged without error
-
-**Code:**
-```go
-if totalCount > dumpCount {
- summary.TotalRecords = totalCount
-} else {
- summary.TotalRecords = dumpCount
-}
-```
-
-### 2. Very Long WKT Strings
-
-**Scenario:** Some geometry WKT strings exceed 1MB (complex administrative boundaries)
-**Problem:** bufio.Scanner defaults to 64KB buffer, causing "token too long" error
-**Solution:** Read entire file at once using `os.ReadFile()`
-
-**Code:**
-```go
-// ❌ Don't do this:
-scanner := bufio.NewScanner(file)
-for scanner.Scan() { ... } // Fails on long lines
-
-// ✅ Do this instead:
-content, err := os.ReadFile(dumpPath)
-modifiedSQL := strings.ReplaceAll(string(content), ...)
-```
-
-### 3. Special Characters in Vietnamese Text
-
-**Scenario:** Province/ward names contain Vietnamese diacritics and special characters
-**Problem:** SQL escape sequences (e.g., `''` for single quotes)
-**Handling:** ✅ SQL dump files already properly escaped; direct execution works
-
-**Example:** `Thủ đô Hà Nội` stored as `'Thủ đô Hà Nội'` in SQL
-
-### 4. Transaction Isolation
-
-**Scenario:** Multiple concurrent comparisons could interfere
-**Problem:** Temp tables with same names in different sessions
-**Solution:** Each CLI invocation uses its own transaction, temp tables are session-scoped
-
-**Note:** If running multiple instances simultaneously, consider adding unique table suffixes (not implemented yet).
-
-### 5. Database Connection Pooling
-
-**Scenario:** Bun ORM uses connection pooling by default
-**Problem:** Temp tables created in one connection might not be visible in another
-**Solution:** Explicit transaction ensures all queries use the same underlying connection
-
-**Code:**
-```go
-tx, err := db.Begin() // Acquires single connection from pool
-defer tx.Rollback() // Returns connection to pool
-// All operations on 'tx' use the same connection
-```
-
-### 6. Empty or NULL WKT Values
-
-**Scenario:** Some records might have NULL or empty geometry data
-**Handling:** PostgreSQL's `<>` operator correctly handles NULL values (returns NULL, not true/false)
-**Note:** No special handling needed; NULL != NULL correctly returns no match
-
-## Assumptions
-
-### Data Format Assumptions
-
-1. **SQL dump file format:**
- - Standard PostgreSQL INSERT statements
- - Columns: `stt, ten, truocsn, gis_server_id, sapnhap_X_maX, bbox_wkt, geom_wkt`
- - Table names: `public.sapnhap_provinces_gis`, `public.sapnhap_wards_gis`
-
-2. **WKT format:**
- - `bbox_wkt`: POLYGON with 4 corner points
- - `geom_wkt`: MULTIPOLYGON with complex coordinates
- - Coordinate order: longitude, latitude (standard WGS84)
-
-3. **GIS server ID format:**
- - Provinces: `tinh34.{number}` (e.g., `tinh34.7`)
- - Wards: `xa3321.{number}` (e.g., `xa3321.3285`)
-
-### Environment Assumptions
-
-1. **Database:**
- - PostgreSQL with PostGIS extension
- - Database name: `vn_provinces_tmp`
- - Access via Docker container: `vn_provinces_postgres_container`
- - Credentials from `.env` file
-
-2. **File system:**
- - SQL dump files exist at specified paths
- - Read permissions on dump files
- - Write permissions for temp files (if any)
-
-### Performance Assumptions
-
-1. **Execution time:**
- - Expected: < 60 seconds for full comparison
- - Provinces: ~5 seconds (4 records)
- - Wards: ~30 seconds (3321 records)
-
-2. **Memory usage:**
- - SQL dump files loaded entirely into memory
- - Largest file (wards dump): ~3-5MB
- - Peak memory: ~20-50MB per comparison
-
-## Validation Results
-
-### Test Execution - March 28, 2026
-
-**Command:**
-```bash
-./bin/compare-gis --compare=both
-```
-
-**Results:**
-
-#### Provinces (sapnhap_provinces_gis)
-- **Total Records:** 34
-- **Matched:** 34 ✅
-- **Mismatched:** 0
-- **Missing in Database:** 0
-- **Missing in Dump:** 0
-
-#### Wards (sapnhap_wards_gis)
-- **Total Records:** 3321
-- **Matched:** 3321 ✅
-- **Mismatched:** 0
-- **Missing in Database:** 0
-- **Missing in Dump:** 2888 (expected - new data since Sept 2025)
-
-### Key Finding
-
-**All GIS coordinate data from the September 2025 dump is preserved in the March 2026 database.** The migration from the deprecated SAPNhap API to local GeoJSON files was successful with zero data loss.
-
-### Whitespace Differences Found
-
-Before normalization, all 34 provinces showed formatting differences:
-- **Dump format:** `105.889298 19.336741,105.889069 19.336700` (no spaces after commas)
-- **DB format:** `105.889298 19.336741, 105.889069 19.336700` (spaces after commas)
-
-After implementing `replace(wkt, ' ', '')` normalization, all false positives were eliminated.
-
-## Future Enhancements
-
-### Potential Improvements
-
-1. **JSON Output Format**
- - Export comparison results to JSON for programmatic consumption
- - Useful for CI/CD integration
-
-2. **Precision Mode**
- - Optional: Compare coordinates with configurable precision (e.g., 6 decimal places)
- - Handle floating-point rounding differences
-
-3. **HTML Report Generation**
- - Visual diff display for geometry data
- - Interactive map showing differences
-
-4. **Batch Comparison**
- - Compare against multiple dump files at once
- - Track data changes over time
-
-5. **Performance Optimization**
- - Parallel comparison of provinces and wards
- - Incremental comparison (only changed records)
-
-6. **Unit Tests**
- - Test suite for comparison logic
- - Mock database for CI/CD testing
-
-## Maintenance Notes
-
-### When to Run This Tool
-
-1. **After GIS data updates:** Verify data integrity after loading new GeoJSON files
-2. **After database migrations:** Ensure coordinate data survives schema changes
-3. **Before production releases:** Final validation of GIS data
-4. **After import/export operations:** Confirm data round-trips correctly
-
-### Troubleshooting
-
-**Issue:** "relation 'temp_X_gis_dump' does not exist"
-**Cause:** Transaction not used correctly, connection pooling issue
-**Fix:** Ensure all operations use the same transaction object
-
-**Issue:** "token too long" error
-**Cause:** Large WKT strings exceeding scanner buffer
-**Fix:** Use `os.ReadFile()` instead of `bufio.Scanner`
-
-**Issue:** "All records show as mismatched"
-**Cause:** Whitespace formatting differences
-**Fix:** Verify `replace()` normalization is in WHERE clause
-
-**Issue:** Comparison takes > 5 minutes
-**Cause:** Missing indexes on gis_server_id columns
-**Fix:** Add indexes to temp tables (already implemented)
-
-## Conclusion
-
-The GIS Data Comparison Tool successfully validates that the March 2026 migration from the SAPNhap API to local GeoJSON files preserved all coordinate data intact. The tool is production-ready, fast, and provides clear, actionable reports for data validation purposes.
-
-**Implementation Status:** ✅ Complete
-**Validation Status:** ✅ Passed
-**Production Ready:** ✅ Yes